From 6b13c407aa1811cdf47049acbd7975048f01075d Mon Sep 17 00:00:00 2001 From: Carlos Valle Date: Wed, 28 Mar 2018 11:25:33 -0400 Subject: [PATCH 1/2] UI improvements --- src/_docs/doc.template.html | 48 +- .../experimental/heading/component-example.ts | 12 +- .../experimental/list/component-example.ts | 12 +- src/app/app.routes.ts | 4 + src/app/home.template.html | 72 +- .../footer/footer.component.ts | 7 + .../footer/footer.template.html | 21 + .../header/header.component.ts | 7 + .../header/header.template.html | 80 + .../site-components/sitecomponents.module.ts | 13 +- src/assets/docs.json | 203242 ++++----------- src/environments/environment.ts | 2 +- .../{ => home}/patterns-home.component.ts | 4 +- src/patterns/home/patterns-home.template.html | 46 + .../pages/page-a/page-doc.component.ts | 58 - .../pages/page-a/page-doc.template.html | 14 - .../pages/page-a/page-settings.component.ts | 28 - .../pages/page-a/page-settings.template.html | 11 - src/patterns/pages/page-a/page.component.ts | 14 +- src/patterns/pages/page-a/page.template.html | 208 +- .../pages/page-b/page-doc.component.ts | 58 - .../pages/page-b/page-doc.template.html | 14 - src/patterns/pages/page-b/page.component.ts | 17 +- src/patterns/pages/page-b/page.template.html | 261 +- src/patterns/pages/pages.component.ts | 31 +- src/patterns/pages/pages.module.ts | 32 +- src/patterns/pages/pages.routes.ts | 33 +- src/patterns/pages/pages.service.ts | 188 - src/patterns/patterns-home.template.html | 95 - src/patterns/patterns.module.ts | 2 +- src/patterns/patterns.routes.ts | 4 +- .../future/box/box.component.ts | 15 - .../sam-ui-elements/future/box/index.ts | 1 - .../future/container/container.component.ts | 7 - .../sam-ui-elements/future/container/index.ts | 1 - .../future/heading/heading.component.ts | 49 - .../sam-ui-elements/future/heading/index.ts | 1 - .../future/icon/icon.component.ts | 11 - .../future/icon/icon.template.html | 48 - .../sam-ui-elements/future/icon/index.ts | 1 - src/patterns/sam-ui-elements/future/index.ts | 48 - .../sam-ui-elements/future/list/index.ts | 1 - .../future/list/list.component.ts | 44 - .../future/master-page/index.ts | 2 - .../master-page/master-page.component.ts | 50 - .../future/master-page/master-page.service.ts | 22 - .../master-page/master-page.template.html | 20 - .../sam-ui-elements/future/page/index.ts | 2 - .../future/page/page.component.ts | 21 - .../future/page/page.service.ts | 12 - .../future/page/page.template.html | 18 - .../sam-ui-elements/future/sidebar/index.ts | 1 - .../future/sidebar/sidebar.component.ts | 15 - .../sam-ui-elements/future/youtube/index.ts | 1 - .../future/youtube/youtube.component.ts | 31 - .../components/main-nav/component.ts | 7 + .../components/main-nav/template.html | 36 + src/prototypes/components/picker/component.ts | 32 + .../components/picker/template-2.html | 103 + .../components/picker/template-3.html | 103 + .../components/picker/template-4.html | 105 + .../components/picker/template-5.html | 61 + .../components/picker/template-6.html | 106 + .../components/picker/template.html | 109 + .../prototypes-components.component.ts | 68 + .../prototypes-components.module.ts | 38 + .../prototypes-components.routes.ts | 60 + .../home/prototypes-home.component.ts | 6 + .../home/prototypes-home.template.html | 67 + .../pages/homepage/home.component.ts | 6 + .../pages/homepage/home.template.html | 13 + .../pages/prototypes-pages.component.ts | 37 + .../pages/prototypes-pages.module.ts | 29 + .../pages/prototypes-pages.routes.ts | 38 + .../pages/search-mobile/search.component.ts | 54 + .../pages/search-mobile/search.template.html | 234 + .../pages/search/search.component.ts | 212 + .../pages/search/search.template.html | 235 + src/prototypes/prototypes.module.ts | 24 + src/prototypes/prototypes.routes.ts | 29 + src/sam-ui-elements | 2 +- src/styles/docs.scss | 1296 +- .../sam-design-system/prototypes/_base.scss | 5 + .../sam-design-system/prototypes/_index.scss | 5 + .../prototypes/_main-nav.scss | 24 + .../sam-design-system/prototypes/_picker.scss | 159 + src/styles/sam-styles/_box.scss | 37 + src/styles/sam-styles/_breadcrumbs.scss | 14 + src/styles/sam-styles/_button.scss | 34 + src/styles/sam-styles/_container.scss | 27 + src/styles/sam-styles/_icon.scss | 6 + src/styles/sam-styles/_image.scss | 38 + src/styles/sam-styles/_input.scss | 3 + src/styles/sam-styles/_label.scss | 9 + src/styles/sam-styles/_layout.scss | 139 + src/styles/sam-styles/_list.scss | 73 + src/styles/sam-styles/_master.scss | 165 + src/styles/sam-styles/_page.scss | 28 + src/styles/sam-styles/_reset.scss | 341 + src/styles/sam-styles/_search.scss | 125 + src/styles/sam-styles/_settings.scss | 17 + src/styles/sam-styles/_title.scss | 60 + src/styles/sam-styles/_video.scss | 24 + .../sam-styles/components/_bread-crumbs.scss | 15 + src/styles/sam-styles/index.scss | 34 + 105 files changed, 58316 insertions(+), 151236 deletions(-) create mode 100644 src/app/site-components/footer/footer.component.ts create mode 100644 src/app/site-components/footer/footer.template.html create mode 100644 src/app/site-components/header/header.component.ts create mode 100644 src/app/site-components/header/header.template.html rename src/patterns/{ => home}/patterns-home.component.ts (71%) create mode 100644 src/patterns/home/patterns-home.template.html delete mode 100644 src/patterns/pages/page-a/page-doc.component.ts delete mode 100644 src/patterns/pages/page-a/page-doc.template.html delete mode 100644 src/patterns/pages/page-a/page-settings.component.ts delete mode 100644 src/patterns/pages/page-a/page-settings.template.html mode change 100644 => 100755 src/patterns/pages/page-a/page.component.ts mode change 100644 => 100755 src/patterns/pages/page-a/page.template.html delete mode 100644 src/patterns/pages/page-b/page-doc.component.ts delete mode 100644 src/patterns/pages/page-b/page-doc.template.html mode change 100644 => 100755 src/patterns/pages/page-b/page.component.ts mode change 100644 => 100755 src/patterns/pages/page-b/page.template.html mode change 100644 => 100755 src/patterns/pages/pages.component.ts mode change 100644 => 100755 src/patterns/pages/pages.module.ts mode change 100644 => 100755 src/patterns/pages/pages.routes.ts delete mode 100644 src/patterns/pages/pages.service.ts delete mode 100644 src/patterns/patterns-home.template.html delete mode 100644 src/patterns/sam-ui-elements/future/box/box.component.ts delete mode 100644 src/patterns/sam-ui-elements/future/box/index.ts delete mode 100644 src/patterns/sam-ui-elements/future/container/container.component.ts delete mode 100644 src/patterns/sam-ui-elements/future/container/index.ts delete mode 100644 src/patterns/sam-ui-elements/future/heading/heading.component.ts delete mode 100644 src/patterns/sam-ui-elements/future/heading/index.ts delete mode 100644 src/patterns/sam-ui-elements/future/icon/icon.component.ts delete mode 100644 src/patterns/sam-ui-elements/future/icon/icon.template.html delete mode 100644 src/patterns/sam-ui-elements/future/icon/index.ts delete mode 100644 src/patterns/sam-ui-elements/future/index.ts delete mode 100644 src/patterns/sam-ui-elements/future/list/index.ts delete mode 100644 src/patterns/sam-ui-elements/future/list/list.component.ts delete mode 100644 src/patterns/sam-ui-elements/future/master-page/index.ts delete mode 100644 src/patterns/sam-ui-elements/future/master-page/master-page.component.ts delete mode 100644 src/patterns/sam-ui-elements/future/master-page/master-page.service.ts delete mode 100644 src/patterns/sam-ui-elements/future/master-page/master-page.template.html delete mode 100644 src/patterns/sam-ui-elements/future/page/index.ts delete mode 100644 src/patterns/sam-ui-elements/future/page/page.component.ts delete mode 100644 src/patterns/sam-ui-elements/future/page/page.service.ts delete mode 100644 src/patterns/sam-ui-elements/future/page/page.template.html delete mode 100644 src/patterns/sam-ui-elements/future/sidebar/index.ts delete mode 100644 src/patterns/sam-ui-elements/future/sidebar/sidebar.component.ts delete mode 100644 src/patterns/sam-ui-elements/future/youtube/index.ts delete mode 100644 src/patterns/sam-ui-elements/future/youtube/youtube.component.ts create mode 100644 src/prototypes/components/main-nav/component.ts create mode 100644 src/prototypes/components/main-nav/template.html create mode 100644 src/prototypes/components/picker/component.ts create mode 100644 src/prototypes/components/picker/template-2.html create mode 100644 src/prototypes/components/picker/template-3.html create mode 100644 src/prototypes/components/picker/template-4.html create mode 100644 src/prototypes/components/picker/template-5.html create mode 100644 src/prototypes/components/picker/template-6.html create mode 100644 src/prototypes/components/picker/template.html create mode 100644 src/prototypes/components/prototypes-components.component.ts create mode 100644 src/prototypes/components/prototypes-components.module.ts create mode 100644 src/prototypes/components/prototypes-components.routes.ts create mode 100644 src/prototypes/home/prototypes-home.component.ts create mode 100644 src/prototypes/home/prototypes-home.template.html create mode 100644 src/prototypes/pages/homepage/home.component.ts create mode 100644 src/prototypes/pages/homepage/home.template.html create mode 100644 src/prototypes/pages/prototypes-pages.component.ts create mode 100755 src/prototypes/pages/prototypes-pages.module.ts create mode 100644 src/prototypes/pages/prototypes-pages.routes.ts create mode 100644 src/prototypes/pages/search-mobile/search.component.ts create mode 100644 src/prototypes/pages/search-mobile/search.template.html create mode 100644 src/prototypes/pages/search/search.component.ts create mode 100644 src/prototypes/pages/search/search.template.html create mode 100644 src/prototypes/prototypes.module.ts create mode 100644 src/prototypes/prototypes.routes.ts create mode 100644 src/styles/sam-design-system/prototypes/_base.scss create mode 100644 src/styles/sam-design-system/prototypes/_index.scss create mode 100644 src/styles/sam-design-system/prototypes/_main-nav.scss create mode 100644 src/styles/sam-design-system/prototypes/_picker.scss create mode 100755 src/styles/sam-styles/_box.scss create mode 100755 src/styles/sam-styles/_breadcrumbs.scss create mode 100755 src/styles/sam-styles/_button.scss create mode 100755 src/styles/sam-styles/_container.scss create mode 100755 src/styles/sam-styles/_icon.scss create mode 100755 src/styles/sam-styles/_image.scss create mode 100755 src/styles/sam-styles/_input.scss create mode 100755 src/styles/sam-styles/_label.scss create mode 100755 src/styles/sam-styles/_layout.scss create mode 100755 src/styles/sam-styles/_list.scss create mode 100755 src/styles/sam-styles/_master.scss create mode 100755 src/styles/sam-styles/_page.scss create mode 100644 src/styles/sam-styles/_reset.scss create mode 100755 src/styles/sam-styles/_search.scss create mode 100755 src/styles/sam-styles/_settings.scss create mode 100755 src/styles/sam-styles/_title.scss create mode 100755 src/styles/sam-styles/_video.scss create mode 100644 src/styles/sam-styles/components/_bread-crumbs.scss create mode 100755 src/styles/sam-styles/index.scss diff --git a/src/_docs/doc.template.html b/src/_docs/doc.template.html index bc6ab076f..3d2768e64 100644 --- a/src/_docs/doc.template.html +++ b/src/_docs/doc.template.html @@ -1,23 +1,4 @@ - +
@@ -64,29 +45,4 @@
- \ No newline at end of file + \ No newline at end of file diff --git a/src/_docs/experimental/heading/component-example.ts b/src/_docs/experimental/heading/component-example.ts index 2b427ea20..48d671a32 100644 --- a/src/_docs/experimental/heading/component-example.ts +++ b/src/_docs/experimental/heading/component-example.ts @@ -16,27 +16,27 @@ import { MarkdownService } from '../../../app/services/markdown/markdown.service import { DocumentationService } from '../../../app/services/documentation.service'; var code_example_1 = ` - + `; var code_example_2 = ` - + `; var code_example_3 = ` - + `; var code_example_4 = ` - + `; var code_example_5 = ` - + `; var code_example_6 = ` - + `; @Component({ diff --git a/src/_docs/experimental/list/component-example.ts b/src/_docs/experimental/list/component-example.ts index efbd33b10..3dfd07893 100644 --- a/src/_docs/experimental/list/component-example.ts +++ b/src/_docs/experimental/list/component-example.ts @@ -15,17 +15,11 @@ import { Http } from '@angular/http'; import { MarkdownService } from '../../../app/services/markdown/markdown.service'; import { DocumentationService } from '../../../app/services/documentation.service'; -var code_example_1 = ` - -`; +var code_example_1 = ``; -var code_example_2 = ` - -`; +var code_example_2 = ``; -var code_example_3 = ` - -`; +var code_example_3 = ``; @Component({ selector: 'doc-sam-list', diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index 5178e4c6a..a00e85bd0 100755 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -9,5 +9,9 @@ export const ROUTES: Routes = [ { path: 'patterns', loadChildren: "../patterns/patterns.module#ExamplesModule" + }, + { + path: 'prototypes', + loadChildren: "../prototypes/prototypes.module#PrototypesModule" } ]; \ No newline at end of file diff --git a/src/app/home.template.html b/src/app/home.template.html index 48ea6e0d4..1c83431dd 100644 --- a/src/app/home.template.html +++ b/src/app/home.template.html @@ -1,23 +1,4 @@ - +
@@ -67,21 +48,21 @@ -
-

SAM UI Elements

+
+

SAM UI Elements

This site showcases a set of design standards and angular-based frontend development components for building the upcoming SAM.gov website.

- - GET STARTED - +
-
-

+
+

Installation

Read installation docs -

- Pattern Examples +

+ Patterns

- Components and layout examples to help you quickly get started with + Page and component patterns to help you quickly get started with SAM-UI Elements and demonstrate best practices for implementing it in SAM.gov.

- + View patterns

- \ No newline at end of file + \ No newline at end of file diff --git a/src/app/site-components/footer/footer.component.ts b/src/app/site-components/footer/footer.component.ts new file mode 100644 index 000000000..4325afacb --- /dev/null +++ b/src/app/site-components/footer/footer.component.ts @@ -0,0 +1,7 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'site-footer', + templateUrl: 'footer.template.html', +}) +export class SiteFooterComponent{} \ No newline at end of file diff --git a/src/app/site-components/footer/footer.template.html b/src/app/site-components/footer/footer.template.html new file mode 100644 index 000000000..48fe2ce57 --- /dev/null +++ b/src/app/site-components/footer/footer.template.html @@ -0,0 +1,21 @@ + \ No newline at end of file diff --git a/src/app/site-components/header/header.component.ts b/src/app/site-components/header/header.component.ts new file mode 100644 index 000000000..f33be0900 --- /dev/null +++ b/src/app/site-components/header/header.component.ts @@ -0,0 +1,7 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'site-header', + templateUrl: 'header.template.html', +}) +export class SiteHeaderComponent{} \ No newline at end of file diff --git a/src/app/site-components/header/header.template.html b/src/app/site-components/header/header.template.html new file mode 100644 index 000000000..debea3e17 --- /dev/null +++ b/src/app/site-components/header/header.template.html @@ -0,0 +1,80 @@ + diff --git a/src/app/site-components/sitecomponents.module.ts b/src/app/site-components/sitecomponents.module.ts index fa221cf76..b3fb0ec63 100644 --- a/src/app/site-components/sitecomponents.module.ts +++ b/src/app/site-components/sitecomponents.module.ts @@ -1,18 +1,25 @@ import { NgModule } from '@angular/core'; - +import { RouterModule } from '@angular/router'; import { ExampleComponent } from "./example/example.component"; import { CodeExampleComponent } from "./example/code.component"; +import { SiteHeaderComponent } from "./header/header.component"; +import { SiteFooterComponent } from "./footer/footer.component"; @NgModule({ declarations: [ ExampleComponent, - CodeExampleComponent + CodeExampleComponent, + SiteHeaderComponent, + SiteFooterComponent ], imports: [ + RouterModule ], exports: [ ExampleComponent, - CodeExampleComponent + CodeExampleComponent, + SiteHeaderComponent, + SiteFooterComponent ], }) export class SiteComponentsModule { } diff --git a/src/assets/docs.json b/src/assets/docs.json index f11a77b93..46c1b7fc8 100644 --- a/src/assets/docs.json +++ b/src/assets/docs.json @@ -12,7 +12,7 @@ "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/e2e/app.e2e-spec.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/e2e/app.e2e-spec.ts", "sources": [ { "fileName": "e2e/app.e2e-spec.ts", @@ -29,7 +29,7 @@ "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/e2e/app.po.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/e2e/app.po.ts", "children": [ { "id": 2, @@ -148,22 +148,24 @@ ] }, { - "id": 1820, - "name": "\"sam-ui-elements/src/ui-kit/components/accordion/accordion.component\"", + "id": 561, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "children": [ { - "id": 1840, + "id": 581, "name": "SamAccordionComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component can generate accordions component with provided\ndata" @@ -182,17 +184,18 @@ ], "children": [ { - "id": 1844, + "id": 585, "name": "accordionClass", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 106, "character": 23 } @@ -204,12 +207,13 @@ "defaultValue": "\"usa-accordion\"" }, { - "id": 1841, + "id": 582, "name": "bordered", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Control whether the accordion component has a border" @@ -226,7 +230,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 95, "character": 19 } @@ -238,12 +242,13 @@ "defaultValue": "false" }, { - "id": 1842, + "id": 583, "name": "expandIndex", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Index of an accordion item that should be expanded on load" @@ -260,7 +265,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 99, "character": 22 } @@ -272,17 +277,18 @@ "defaultValue": " -1" }, { - "id": 1845, + "id": 586, "name": "sections", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 107, "character": 17 } @@ -291,17 +297,18 @@ "type": "reference", "isArray": true, "name": "SamAccordionSection", - "id": 1821 + "id": 562 }, "defaultValue": " []" }, { - "id": 1843, + "id": 584, "name": "selectedIndexChange", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The index of the accordion item that has been opened/closed" @@ -318,7 +325,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 103, "character": 31 } @@ -336,23 +343,24 @@ "defaultValue": "\n new EventEmitter()" }, { - "id": 1848, + "id": 589, "name": "addSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1849, + "id": 590, "name": "addSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1850, + "id": 591, "name": "section", "kind": 32768, "kindString": "Parameter", @@ -360,7 +368,7 @@ "type": { "type": "reference", "name": "SamAccordionSection", - "id": 1821 + "id": 562 } } ], @@ -372,23 +380,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 116, "character": 12 } ] }, { - "id": 1857, + "id": 598, "name": "collapseAll", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1858, + "id": 599, "name": "collapseAll", "kind": 4096, "kindString": "Call signature", @@ -401,30 +410,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 137, "character": 13 } ] }, { - "id": 1854, + "id": 595, "name": "collapseOthers", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1855, + "id": 596, "name": "collapseOthers", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1856, + "id": 597, "name": "section", "kind": 32768, "kindString": "Parameter", @@ -432,7 +442,7 @@ "type": { "type": "reference", "name": "SamAccordionSection", - "id": 1821 + "id": 562 } } ], @@ -444,30 +454,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 129, "character": 16 } ] }, { - "id": 1851, + "id": 592, "name": "expandedChanged", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1852, + "id": 593, "name": "expandedChanged", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1853, + "id": 594, "name": "section", "kind": 32768, "kindString": "Parameter", @@ -475,7 +486,7 @@ "type": { "type": "reference", "name": "SamAccordionSection", - "id": 1821 + "id": 562 } } ], @@ -487,23 +498,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 123, "character": 17 } ] }, { - "id": 1846, + "id": 587, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1847, + "id": 588, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -516,30 +528,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 109, "character": 10 } ] }, { - "id": 1859, + "id": 600, "name": "setExpandIndex", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1860, + "id": 601, "name": "setExpandIndex", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1861, + "id": 602, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -558,7 +571,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 143, "character": 16 } @@ -570,29 +583,29 @@ "title": "Properties", "kind": 1024, "children": [ - 1844, - 1841, - 1842, - 1845, - 1843 + 585, + 582, + 583, + 586, + 584 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1848, - 1857, - 1854, - 1851, - 1846, - 1859 + 589, + 598, + 595, + 592, + 587, + 600 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 91, "character": 34 } @@ -605,12 +618,13 @@ ] }, { - "id": 1821, + "id": 562, "name": "SamAccordionSection", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component can generates content for a single\naccordion item" @@ -629,23 +643,24 @@ ], "children": [ { - "id": 1826, + "id": 567, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1828, + "id": 569, "name": "new SamAccordionSection", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1829, + "id": 570, "name": "parent", "kind": 32768, "kindString": "Parameter", @@ -665,32 +680,33 @@ "type": { "type": "reference", "name": "SamAccordionComponent", - "id": 1840 + "id": 581 } } ], "type": { "type": "reference", "name": "SamAccordionSection", - "id": 1821 + "id": 562 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 37, "character": 44 } ] }, { - "id": 1822, + "id": 563, "name": "headerText", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Accordion header text" @@ -707,7 +723,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 24, "character": 21 } @@ -718,12 +734,13 @@ } }, { - "id": 1823, + "id": 564, "name": "isExpanded", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Defines whether accordion item should be expanded when loaded" @@ -740,7 +757,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 28, "character": 21 } @@ -751,12 +768,13 @@ } }, { - "id": 1825, + "id": 566, "name": "isExpandedChange", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The accordion section that has changed is emitted back to parent" @@ -773,7 +791,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 36, "character": 28 } @@ -785,19 +803,20 @@ { "type": "reference", "name": "SamAccordionSection", - "id": 1821 + "id": 562 } ] }, "defaultValue": "\n new EventEmitter()" }, { - "id": 1824, + "id": 565, "name": "name", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Populates the 'name' attribute for the accordion item for 508 compliance" @@ -814,7 +833,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 32, "character": 15 } @@ -825,14 +844,15 @@ } }, { - "id": 1827, + "id": 568, "name": "parent", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -848,7 +868,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 41, "character": 18 } @@ -856,21 +876,22 @@ "type": { "type": "reference", "name": "SamAccordionComponent", - "id": 1840 + "id": 581 } }, { - "id": 1834, + "id": 575, "name": "collapse", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1835, + "id": 576, "name": "collapse", "kind": 4096, "kindString": "Call signature", @@ -883,24 +904,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 59, "character": 17 } ] }, { - "id": 1836, + "id": 577, "name": "expand", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1837, + "id": 578, "name": "expand", "kind": 4096, "kindString": "Call signature", @@ -913,24 +935,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 63, "character": 15 } ] }, { - "id": 1838, + "id": 579, "name": "index", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1839, + "id": 580, "name": "index", "kind": 4096, "kindString": "Call signature", @@ -943,23 +966,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 67, "character": 14 } ] }, { - "id": 1830, + "id": 571, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1831, + "id": 572, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -972,24 +996,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 46, "character": 10 } ] }, { - "id": 1832, + "id": 573, "name": "toggle", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1833, + "id": 574, "name": "toggle", "kind": 4096, "kindString": "Call signature", @@ -1002,7 +1027,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 54, "character": 15 } @@ -1014,35 +1039,35 @@ "title": "Constructors", "kind": 512, "children": [ - 1826 + 567 ] }, { "title": "Properties", "kind": 1024, "children": [ - 1822, - 1823, - 1825, - 1824, - 1827 + 563, + 564, + 566, + 565, + 568 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1834, - 1836, - 1838, - 1830, - 1832 + 575, + 577, + 579, + 571, + 573 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 20, "character": 32 } @@ -1060,36 +1085,38 @@ "title": "Classes", "kind": 128, "children": [ - 1840, - 1821 + 581, + 562 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1862, - "name": "\"sam-ui-elements/src/ui-kit/components/accordion/index\"", + "id": 603, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/accordion/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/accordion/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/accordion/index.ts", "children": [ { - "id": 1863, + "id": 604, "name": "AccordionsModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -1105,7 +1132,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/index.ts", "line": 13, "character": 29 } @@ -1117,35 +1144,37 @@ "title": "Classes", "kind": 128, "children": [ - 1863 + 604 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/accordion/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/accordion/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2617, - "name": "\"sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component\"", + "id": 4731, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", "children": [ { - "id": 2618, + "id": 4732, "name": "SamActionButton", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -1161,12 +1190,13 @@ ], "children": [ { - "id": 2619, + "id": 4733, "name": "action", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Provide the action object for the action button" @@ -1183,7 +1213,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", "line": 14, "character": 17 } @@ -1191,16 +1221,17 @@ "type": { "type": "reference", "name": "SamActionInterface", - "id": 2652 + "id": 4766 } }, { - "id": 2620, + "id": 4734, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Disables the button" @@ -1217,7 +1248,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", "line": 18, "character": 19 } @@ -1229,12 +1260,13 @@ "defaultValue": "false" }, { - "id": 2621, + "id": 4735, "name": "emitAction", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "EventEmitter that emits action name when button is clicked" @@ -1251,7 +1283,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", "line": 22, "character": 22 } @@ -1269,12 +1301,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2622, + "id": 4736, "name": "emitCallback", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emits the results of the callback" @@ -1291,7 +1324,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", "line": 26, "character": 24 } @@ -1309,16 +1342,17 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2623, + "id": 4737, "name": "actionClicked", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2624, + "id": 4738, "name": "actionClicked", "kind": 4096, "kindString": "Call signature", @@ -1331,7 +1365,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", "line": 28, "character": 15 } @@ -1343,23 +1377,23 @@ "title": "Properties", "kind": 1024, "children": [ - 2619, - 2620, - 2621, - 2622 + 4733, + 4734, + 4735, + 4736 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2623 + 4737 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", "line": 9, "character": 28 } @@ -1371,66 +1405,70 @@ "title": "Classes", "kind": 128, "children": [ - 2618 + 4732 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2625, - "name": "\"sam-ui-elements/src/ui-kit/components/actions/action-button/index\"", + "id": 4739, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/actions/action-button/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/actions/action-button/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/actions/action-button/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/action-button/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/action-button/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2651, - "name": "\"sam-ui-elements/src/ui-kit/components/actions/action-interface\"", + "id": 4765, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/actions/action-interface\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", "children": [ { - "id": 2652, + "id": 4766, "name": "SamActionInterface", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 2656, + "id": 4770, "name": "callback", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", "line": 5, "character": 10 } @@ -1441,17 +1479,18 @@ } }, { - "id": 2653, + "id": 4767, "name": "icon", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", "line": 2, "character": 6 } @@ -1462,16 +1501,17 @@ } }, { - "id": 2654, + "id": 4768, "name": "label", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", "line": 3, "character": 7 } @@ -1482,16 +1522,17 @@ } }, { - "id": 2655, + "id": 4769, "name": "name", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", "line": 4, "character": 6 } @@ -1507,16 +1548,16 @@ "title": "Properties", "kind": 1024, "children": [ - 2656, - 2653, - 2654, - 2655 + 4770, + 4767, + 4768, + 4769 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", "line": 1, "character": 35 } @@ -1528,35 +1569,37 @@ "title": "Interfaces", "kind": 256, "children": [ - 2652 + 4766 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", "line": 1, "character": 0 } ] }, { - "id": 2626, - "name": "\"sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component\"", + "id": 4740, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "children": [ { - "id": 2627, + "id": 4741, "name": "SamActionsDropdownComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -1572,12 +1615,13 @@ ], "children": [ { - "id": 2629, + "id": 4743, "name": "actions", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -1595,7 +1639,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 26, "character": 25 } @@ -1607,19 +1651,20 @@ { "type": "reference", "name": "SamActionInterface", - "id": 2652 + "id": 4766 } ] }, "defaultValue": " []" }, { - "id": 2634, + "id": 4748, "name": "actionsList", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -1636,7 +1681,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 44, "character": 49 } @@ -1647,12 +1692,13 @@ } }, { - "id": 2631, + "id": 4745, "name": "buttonType", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -1670,7 +1716,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 34, "character": 28 } @@ -1691,12 +1737,13 @@ "defaultValue": "\"default\"" }, { - "id": 2630, + "id": 4744, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -1714,7 +1761,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 30, "character": 26 } @@ -1726,12 +1773,13 @@ "defaultValue": "false" }, { - "id": 2632, + "id": 4746, "name": "emitAction", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -1749,7 +1797,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 38, "character": 29 } @@ -1767,12 +1815,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2633, + "id": 4747, "name": "emitCallback", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -1790,7 +1839,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 42, "character": 31 } @@ -1808,16 +1857,17 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2636, + "id": 4750, "name": "focusIndex", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 46, "character": 12 } @@ -1829,12 +1879,13 @@ "defaultValue": " -1" }, { - "id": 2628, + "id": 4742, "name": "name", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -1852,7 +1903,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 22, "character": 22 } @@ -1864,17 +1915,18 @@ "defaultValue": "\"action_button\"" }, { - "id": 2635, + "id": 4749, "name": "showActions", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 45, "character": 21 } @@ -1886,23 +1938,24 @@ "defaultValue": "false" }, { - "id": 2641, + "id": 4755, "name": "chooseAction", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2642, + "id": 4756, "name": "chooseAction", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2643, + "id": 4757, "name": "action", "kind": 32768, "kindString": "Parameter", @@ -1921,23 +1974,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 58, "character": 14 } ] }, { - "id": 2637, + "id": 4751, "name": "hideActions", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2638, + "id": 4752, "name": "hideActions", "kind": 4096, "kindString": "Call signature", @@ -1950,30 +2004,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 47, "character": 13 } ] }, { - "id": 2647, + "id": 4761, "name": "keyDownHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2648, + "id": 4762, "name": "keyDownHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2649, + "id": 4763, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -1992,30 +2047,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 77, "character": 16 } ] }, { - "id": 2644, + "id": 4758, "name": "leadKeyDownHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2645, + "id": 4759, "name": "leadKeyDownHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2646, + "id": 4760, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -2034,23 +2090,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 67, "character": 20 } ] }, { - "id": 2639, + "id": 4753, "name": "toggleActions", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2640, + "id": 4754, "name": "toggleActions", "kind": 4096, "kindString": "Call signature", @@ -2063,7 +2120,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 51, "character": 15 } @@ -2075,32 +2132,32 @@ "title": "Properties", "kind": 1024, "children": [ - 2629, - 2634, - 2631, - 2630, - 2632, - 2633, - 2636, - 2628, - 2635 + 4743, + 4748, + 4745, + 4744, + 4746, + 4747, + 4750, + 4742, + 4749 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2641, - 2637, - 2647, - 2644, - 2639 + 4755, + 4751, + 4761, + 4758, + 4753 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 17, "character": 40 } @@ -2112,69 +2169,73 @@ "title": "Classes", "kind": 128, "children": [ - 2627 + 4741 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2650, - "name": "\"sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/index\"", + "id": 4764, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2657, - "name": "\"sam-ui-elements/src/ui-kit/components/actions/index\"", + "id": 4771, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/actions/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/actions/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/actions/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/actions/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/actions/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1912, - "name": "\"sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component\"", + "id": 118, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", "children": [ { - "id": 1913, + "id": 119, "name": "SamAlertFooterComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -2190,23 +2251,24 @@ ], "children": [ { - "id": 1915, + "id": 121, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1917, + "id": 123, "name": "new SamAlertFooterComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1918, + "id": 124, "name": "alertFooterService", "kind": 32768, "kindString": "Parameter", @@ -2214,38 +2276,39 @@ "type": { "type": "reference", "name": "SamAlertFooterService", - "id": 1902 + "id": 108 } } ], "type": { "type": "reference", "name": "SamAlertFooterComponent", - "id": 1913 + "id": 119 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", "line": 11, "character": 35 } ] }, { - "id": 1916, + "id": 122, "name": "alertFooterService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", "line": 13, "character": 40 } @@ -2253,21 +2316,22 @@ "type": { "type": "reference", "name": "SamAlertFooterService", - "id": 1902 + "id": 108 } }, { - "id": 1914, + "id": 120, "name": "alerts", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", "line": 11, "character": 16 } @@ -2276,28 +2340,29 @@ "type": "reference", "isArray": true, "name": "AlertType", - "id": 225 + "id": 99 }, "defaultValue": " []" }, { - "id": 1921, + "id": 127, "name": "dismissFooterAlert", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1922, + "id": 128, "name": "dismissFooterAlert", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1923, + "id": 129, "name": "i", "kind": 32768, "kindString": "Parameter", @@ -2316,23 +2381,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", "line": 19, "character": 20 } ] }, { - "id": 1919, + "id": 125, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1920, + "id": 126, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -2345,23 +2411,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", "line": 15, "character": 10 } ] }, { - "id": 1924, + "id": 130, "name": "refreshAlerts", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1925, + "id": 131, "name": "refreshAlerts", "kind": 4096, "kindString": "Call signature", @@ -2374,7 +2441,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", "line": 24, "character": 15 } @@ -2386,30 +2453,30 @@ "title": "Constructors", "kind": 512, "children": [ - 1915 + 121 ] }, { "title": "Properties", "kind": 1024, "children": [ - 1916, - 1914 + 122, + 120 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1921, - 1919, - 1924 + 127, + 125, + 130 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", "line": 9, "character": 36 } @@ -2421,35 +2488,37 @@ "title": "Classes", "kind": 128, "children": [ - 1913 + 119 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1901, - "name": "\"sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service\"", + "id": 107, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", "children": [ { - "id": 1902, + "id": 108, "name": "SamAlertFooterService", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -2463,17 +2532,18 @@ ], "children": [ { - "id": 1903, + "id": 109, "name": "alerts", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", "line": 6, "character": 16 } @@ -2485,23 +2555,24 @@ "defaultValue": " []" }, { - "id": 1909, + "id": 115, "name": "dismissFooterAlert", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1910, + "id": 116, "name": "dismissFooterAlert", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1911, + "id": 117, "name": "i", "kind": 32768, "kindString": "Parameter", @@ -2520,23 +2591,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", "line": 16, "character": 20 } ] }, { - "id": 1904, + "id": 110, "name": "getAlerts", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1905, + "id": 111, "name": "getAlerts", "kind": 4096, "kindString": "Call signature", @@ -2549,30 +2621,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", "line": 8, "character": 11 } ] }, { - "id": 1906, + "id": 112, "name": "registerFooterAlert", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1907, + "id": 113, "name": "registerFooterAlert", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1908, + "id": 114, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -2580,7 +2653,7 @@ "type": { "type": "reference", "name": "AlertType", - "id": 225 + "id": 99 } } ], @@ -2592,7 +2665,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", "line": 12, "character": 21 } @@ -2604,22 +2677,22 @@ "title": "Properties", "kind": 1024, "children": [ - 1903 + 109 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1909, - 1904, - 1906 + 115, + 110, + 112 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", "line": 4, "character": 34 } @@ -2631,52 +2704,55 @@ "title": "Classes", "kind": 128, "children": [ - 1902 + 108 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", "line": 1, "character": 0 } ] }, { - "id": 1926, - "name": "\"sam-ui-elements/src/ui-kit/components/alert-footer/index\"", + "id": 132, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/alert-footer/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert-footer/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert-footer/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1864, - "name": "\"sam-ui-elements/src/ui-kit/components/alert/alert.component\"", + "id": 4103, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "children": [ { - "id": 1865, + "id": 4104, "name": "SamAlertComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component keeps users informed of important and (optionally)\ntime-sensitive changes" @@ -2695,12 +2771,13 @@ ], "children": [ { - "id": 1868, + "id": 4107, "name": "description", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the alert description" @@ -2717,7 +2794,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 23, "character": 22 } @@ -2728,12 +2805,13 @@ } }, { - "id": 1873, + "id": 4112, "name": "dismiss", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emitted event when an alert is dismissed" @@ -2750,7 +2828,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 45, "character": 19 } @@ -2768,12 +2846,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1871, + "id": 4110, "name": "dismissTimer", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Assign a timeout (in milliseconds) to dismiss the alert. 0 is the default\nand is an infinite wait." @@ -2790,7 +2869,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 37, "character": 23 } @@ -2802,16 +2881,17 @@ "defaultValue": "0" }, { - "id": 1888, + "id": 4127, "name": "selectedType", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 57, "character": 14 } @@ -2823,12 +2903,13 @@ "defaultValue": " this.types.success.class" }, { - "id": 1869, + "id": 4108, "name": "showClose", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Controls whether to display/hide the Close button" @@ -2845,7 +2926,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 27, "character": 20 } @@ -2857,16 +2938,17 @@ "defaultValue": "false" }, { - "id": 1889, + "id": 4128, "name": "showMoreLinkText", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 58, "character": 18 } @@ -2878,12 +2960,13 @@ "defaultValue": "\"Show Details\"" }, { - "id": 1872, + "id": 4111, "name": "showMoreToggle", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Give a boolean value to display show/hide toggle" @@ -2900,7 +2983,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 41, "character": 25 } @@ -2912,12 +2995,13 @@ "defaultValue": " undefined" }, { - "id": 1867, + "id": 4106, "name": "title", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the alert title" @@ -2934,7 +3018,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 19, "character": 16 } @@ -2945,12 +3029,13 @@ } }, { - "id": 1874, + "id": 4113, "name": "toggle", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emitted event when toggling content" @@ -2967,7 +3052,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 49, "character": 18 } @@ -2985,12 +3070,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1866, + "id": 4105, "name": "type", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the alert type, defaults to 'success'" @@ -3007,7 +3093,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 15, "character": 15 } @@ -3018,12 +3104,13 @@ } }, { - "id": 1870, + "id": 4109, "name": "userMustDismiss", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Explicitly defines that the alert must be dismissed by the user. Overrides\nthe dismiss timer. Defaults to 'false'" @@ -3040,7 +3127,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 32, "character": 26 } @@ -3052,17 +3139,18 @@ "defaultValue": "false" }, { - "id": 1890, + "id": 4129, "name": "closeAlert", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1891, + "id": 4130, "name": "closeAlert", "kind": 4096, "kindString": "Call signature", @@ -3075,23 +3163,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 60, "character": 19 } ] }, { - "id": 1894, + "id": 4133, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1895, + "id": 4134, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -3104,24 +3193,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 72, "character": 10 } ] }, { - "id": 1898, + "id": 4137, "name": "onDismissClick", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1899, + "id": 4138, "name": "onDismissClick", "kind": 4096, "kindString": "Call signature", @@ -3134,24 +3224,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 93, "character": 24 } ] }, { - "id": 1892, + "id": 4131, "name": "toggleContent", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1893, + "id": 4132, "name": "toggleContent", "kind": 4096, "kindString": "Call signature", @@ -3164,23 +3255,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 64, "character": 23 } ] }, { - "id": 1896, + "id": 4135, "name": "typeNotDefined", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1897, + "id": 4136, "name": "typeNotDefined", "kind": 4096, "kindString": "Call signature", @@ -3193,41 +3285,44 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 83, "character": 16 } ] }, { - "id": 1875, + "id": 4114, "name": "types", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 1876, + "id": 4115, "name": "error", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 1877, + "id": 4116, "name": "class", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 52, "character": 20 } @@ -3239,16 +3334,17 @@ "defaultValue": "\"usa-alert-error\"" }, { - "id": 1878, + "id": 4117, "name": "sr", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 52, "character": 43 } @@ -3265,14 +3361,14 @@ "title": "Variables", "kind": 32, "children": [ - 1877, - 1878 + 4116, + 4117 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 52, "character": 11 } @@ -3283,25 +3379,27 @@ } }, { - "id": 1879, + "id": 4118, "name": "info", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 1880, + "id": 4119, "name": "class", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 53, "character": 19 } @@ -3313,16 +3411,17 @@ "defaultValue": "\"usa-alert-info\"" }, { - "id": 1881, + "id": 4120, "name": "sr", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 53, "character": 41 } @@ -3339,14 +3438,14 @@ "title": "Variables", "kind": 32, "children": [ - 1880, - 1881 + 4119, + 4120 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 53, "character": 10 } @@ -3357,25 +3456,27 @@ } }, { - "id": 1882, + "id": 4121, "name": "success", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 1883, + "id": 4122, "name": "class", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 54, "character": 22 } @@ -3387,16 +3488,17 @@ "defaultValue": "\"usa-alert-success\"" }, { - "id": 1884, + "id": 4123, "name": "sr", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 54, "character": 47 } @@ -3413,14 +3515,14 @@ "title": "Variables", "kind": 32, "children": [ - 1883, - 1884 + 4122, + 4123 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 54, "character": 13 } @@ -3431,25 +3533,27 @@ } }, { - "id": 1885, + "id": 4124, "name": "warning", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 1886, + "id": 4125, "name": "class", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 55, "character": 22 } @@ -3461,16 +3565,17 @@ "defaultValue": "\"usa-alert-warning\"" }, { - "id": 1887, + "id": 4126, "name": "sr", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 55, "character": 47 } @@ -3487,14 +3592,14 @@ "title": "Variables", "kind": 32, "children": [ - 1886, - 1887 + 4125, + 4126 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 55, "character": 13 } @@ -3510,16 +3615,16 @@ "title": "Object literals", "kind": 2097152, "children": [ - 1876, - 1879, - 1882, - 1885 + 4115, + 4118, + 4121, + 4124 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 51, "character": 7 } @@ -3535,41 +3640,41 @@ "title": "Properties", "kind": 1024, "children": [ - 1868, - 1873, - 1871, - 1888, - 1869, - 1889, - 1872, - 1867, - 1874, - 1866, - 1870 + 4107, + 4112, + 4110, + 4127, + 4108, + 4128, + 4111, + 4106, + 4113, + 4105, + 4109 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1890, - 1894, - 1898, - 1892, - 1896 + 4129, + 4133, + 4137, + 4131, + 4135 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 1875 + 4114 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 11, "character": 30 } @@ -3581,52 +3686,55 @@ "title": "Classes", "kind": 128, "children": [ - 1865 + 4104 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1900, - "name": "\"sam-ui-elements/src/ui-kit/components/alert/index\"", + "id": 4139, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/alert/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/alert/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/alert/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/alert/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/alert/index.ts", "line": 1, "character": 0 } ] }, { - "id": 137, - "name": "\"sam-ui-elements/src/ui-kit/components/badge/badge.component\"", + "id": 11, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/badge/badge.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", "children": [ { - "id": 138, + "id": 12, "name": "SamBadgeComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -3642,17 +3750,18 @@ ], "children": [ { - "id": 139, + "id": 13, "name": "_options", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", "line": 16, "character": 18 } @@ -3660,20 +3769,21 @@ "type": { "type": "reference", "name": "BadgeConfig", - "id": 135 + "id": 9 } }, { - "id": 144, + "id": 18, "name": "attached", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "getSignature": [ { - "id": 145, + "id": 19, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -3686,19 +3796,20 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", "line": 29, "character": 14 } ] }, { - "id": 140, + "id": 14, "name": "options", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets options for badge" @@ -3715,7 +3826,7 @@ ], "getSignature": [ { - "id": 141, + "id": 15, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -3726,13 +3837,13 @@ "type": { "type": "reference", "name": "BadgeConfig", - "id": 135 + "id": 9 } } ], "setSignature": [ { - "id": 142, + "id": 16, "name": "__set", "kind": 1048576, "kindString": "Set signature", @@ -3742,7 +3853,7 @@ }, "parameters": [ { - "id": 143, + "id": 17, "name": "config", "kind": 32768, "kindString": "Parameter", @@ -3750,7 +3861,7 @@ "type": { "type": "reference", "name": "BadgeConfig", - "id": 135 + "id": 9 } } ], @@ -3762,12 +3873,12 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", "line": 18, "character": 13 }, { - "fileName": "sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", "line": 25, "character": 22 } @@ -3779,21 +3890,21 @@ "title": "Properties", "kind": 1024, "children": [ - 139 + 13 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 144, - 140 + 18, + 14 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", "line": 15, "character": 30 } @@ -3805,66 +3916,70 @@ "title": "Classes", "kind": 128, "children": [ - 138 + 12 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", "line": 1, "character": 0 } ] }, { - "id": 146, - "name": "\"sam-ui-elements/src/ui-kit/components/badge/index\"", + "id": 20, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/badge/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/badge/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/badge/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/badge/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/badge/index.ts", "line": 1, "character": 0 } ] }, { - "id": 134, - "name": "\"sam-ui-elements/src/ui-kit/components/badge/types\"", + "id": 8, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/badge/types\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/badge/types.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/badge/types.ts", "children": [ { - "id": 135, + "id": 9, "name": "BadgeConfig", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 136, + "id": 10, "name": "attached", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/badge/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/badge/types.ts", "line": 2, "character": 10 } @@ -3921,13 +4036,13 @@ "title": "Properties", "kind": 1024, "children": [ - 136 + 10 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/badge/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/badge/types.ts", "line": 1, "character": 28 } @@ -3939,35 +4054,37 @@ "title": "Interfaces", "kind": 256, "children": [ - 135 + 9 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/badge/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/badge/types.ts", "line": 1, "character": 0 } ] }, { - "id": 1927, - "name": "\"sam-ui-elements/src/ui-kit/components/banner/banner.component\"", + "id": 4140, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/banner/banner.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", "children": [ { - "id": 1928, + "id": 4141, "name": "SamBannerComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component informs the user that the site is an official\nwebsite of the United States Government" @@ -3986,16 +4103,17 @@ ], "children": [ { - "id": 1929, + "id": 4142, "name": "showDetail", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", "line": 12, "character": 12 } @@ -4007,16 +4125,17 @@ "defaultValue": "false" }, { - "id": 1930, + "id": 4143, "name": "toggleDetails", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1931, + "id": 4144, "name": "toggleDetails", "kind": 4096, "kindString": "Call signature", @@ -4029,7 +4148,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", "line": 14, "character": 15 } @@ -4041,20 +4160,20 @@ "title": "Properties", "kind": 1024, "children": [ - 1929 + 4142 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1930 + 4143 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", "line": 11, "character": 31 } @@ -4066,52 +4185,55 @@ "title": "Classes", "kind": 128, "children": [ - 1928 + 4141 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1932, - "name": "\"sam-ui-elements/src/ui-kit/components/banner/index\"", + "id": 4145, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/banner/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/banner/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/banner/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/banner/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/banner/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1933, - "name": "\"sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component\"", + "id": 4146, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", "children": [ { - "id": 1934, + "id": 4147, "name": "SamBreadcrumbsComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -4127,17 +4249,18 @@ ], "children": [ { - "id": 1938, + "id": 4151, "name": "_routeSubscription", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", "line": 26, "character": 30 } @@ -4148,17 +4271,18 @@ } }, { - "id": 1939, + "id": 4152, "name": "count", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", "line": 27, "character": 17 } @@ -4170,12 +4294,13 @@ "defaultValue": "0" }, { - "id": 1937, + "id": 4150, "name": "crumbAction", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -4193,7 +4318,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", "line": 24, "character": 32 } @@ -4211,12 +4336,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1935, + "id": 4148, "name": "crumbs", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The crumbs property expects an array of breadcrumbs. The last in the list\nwill be set as active" @@ -4233,7 +4359,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", "line": 14, "character": 19 } @@ -4245,18 +4371,19 @@ { "type": "reference", "name": "IBreadcrumb", - "id": 215 + "id": 89 } ] } }, { - "id": 1936, + "id": 4149, "name": "rootCrumb", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The rootCrumb property takes a breadcrumb to be used for the root. It is\nonly necessary to provide this if you are also using the listenToRouter\nproperty." @@ -4273,7 +4400,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", "line": 20, "character": 22 } @@ -4281,29 +4408,30 @@ "type": { "type": "reference", "name": "IBreadcrumb", - "id": 215 + "id": 89 }, "defaultValue": " undefined" }, { - "id": 1940, + "id": 4153, "name": "crumbHandler", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1941, + "id": 4154, "name": "crumbHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1942, + "id": 4155, "name": "crumb", "kind": 32768, "kindString": "Parameter", @@ -4322,7 +4450,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", "line": 29, "character": 23 } @@ -4334,24 +4462,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1938, - 1939, - 1937, - 1935, - 1936 + 4151, + 4152, + 4150, + 4148, + 4149 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1940 + 4153 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", "line": 9, "character": 36 } @@ -4363,52 +4491,55 @@ "title": "Classes", "kind": 128, "children": [ - 1934 + 4147 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1943, - "name": "\"sam-ui-elements/src/ui-kit/components/breadcrumbs/index\"", + "id": 4156, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/breadcrumbs/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/breadcrumbs/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/breadcrumbs/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/breadcrumbs/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/breadcrumbs/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1944, - "name": "\"sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component\"", + "id": 4157, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", "children": [ { - "id": 1945, + "id": 4158, "name": "SamCollapsibleComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sam Collapsible Component\nThis component behaves similar to the accordion. However, a collapsible\nshould contain actions rather than content." @@ -4427,17 +4558,18 @@ ], "children": [ { - "id": 1948, + "id": 4161, "name": "_isOpened", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", "line": 25, "character": 19 } @@ -4449,12 +4581,13 @@ "defaultValue": "false" }, { - "id": 1946, + "id": 4159, "name": "label", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -4472,7 +4605,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", "line": 17, "character": 23 } @@ -4483,12 +4616,13 @@ } }, { - "id": 1947, + "id": 4160, "name": "startOpened", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -4506,7 +4640,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", "line": 23, "character": 29 } @@ -4517,16 +4651,17 @@ } }, { - "id": 1951, + "id": 4164, "name": "isFilterOpen", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1952, + "id": 4165, "name": "isFilterOpen", "kind": 4096, "kindString": "Call signature", @@ -4539,23 +4674,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", "line": 31, "character": 14 } ] }, { - "id": 1949, + "id": 4162, "name": "ngOnChanges", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1950, + "id": 4163, "name": "ngOnChanges", "kind": 4096, "kindString": "Call signature", @@ -4568,23 +4704,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", "line": 27, "character": 13 } ] }, { - "id": 1955, + "id": 4168, "name": "srOnlyText", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1956, + "id": 4169, "name": "srOnlyText", "kind": 4096, "kindString": "Call signature", @@ -4597,23 +4734,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", "line": 39, "character": 12 } ] }, { - "id": 1957, + "id": 4170, "name": "toggleButtonLabel", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1958, + "id": 4171, "name": "toggleButtonLabel", "kind": 4096, "kindString": "Call signature", @@ -4626,23 +4764,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", "line": 43, "character": 19 } ] }, { - "id": 1953, + "id": 4166, "name": "toggleFilter", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1954, + "id": 4167, "name": "toggleFilter", "kind": 4096, "kindString": "Call signature", @@ -4655,7 +4794,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", "line": 35, "character": 14 } @@ -4667,26 +4806,26 @@ "title": "Properties", "kind": 1024, "children": [ - 1948, - 1946, - 1947 + 4161, + 4159, + 4160 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1951, - 1949, - 1955, - 1957, - 1953 + 4164, + 4162, + 4168, + 4170, + 4166 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", "line": 12, "character": 36 } @@ -4704,52 +4843,55 @@ "title": "Classes", "kind": 128, "children": [ - 1945 + 4158 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1959, - "name": "\"sam-ui-elements/src/ui-kit/components/collapsible/index\"", + "id": 4172, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/collapsible/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/collapsible/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/collapsible/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/collapsible/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/collapsible/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2553, - "name": "\"sam-ui-elements/src/ui-kit/components/comments/comment/comment.component\"", + "id": 672, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", "children": [ { - "id": 2554, + "id": 673, "name": "SamCommentComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -4765,12 +4907,13 @@ ], "children": [ { - "id": 2556, + "id": 675, "name": "allowDelete", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets configuration to allow comment deletion" @@ -4787,7 +4930,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", "line": 17, "character": 22 } @@ -4795,16 +4938,17 @@ "type": { "type": "reference", "name": "Comment", - "id": 2509 + "id": 628 } }, { - "id": 2555, + "id": 674, "name": "comment", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets comment text" @@ -4821,7 +4965,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", "line": 13, "character": 18 } @@ -4829,16 +4973,17 @@ "type": { "type": "reference", "name": "Comment", - "id": 2509 + "id": 628 } }, { - "id": 2557, + "id": 676, "name": "delete", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emits when delete action occurs" @@ -4855,7 +5000,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", "line": 21, "character": 18 } @@ -4873,23 +5018,24 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2558, + "id": 677, "name": "emitClick", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2559, + "id": 678, "name": "emitClick", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2560, + "id": 679, "name": "comment", "kind": 32768, "kindString": "Parameter", @@ -4908,7 +5054,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", "line": 23, "character": 11 } @@ -4920,22 +5066,22 @@ "title": "Properties", "kind": 1024, "children": [ - 2556, - 2555, - 2557 + 675, + 674, + 676 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2558 + 677 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", "line": 9, "character": 32 } @@ -4947,52 +5093,55 @@ "title": "Classes", "kind": 128, "children": [ - 2554 + 673 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2561, - "name": "\"sam-ui-elements/src/ui-kit/components/comments/comment/index\"", + "id": 680, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/comments/comment/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/comments/comment/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/comments/comment/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comment/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comment/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2515, - "name": "\"sam-ui-elements/src/ui-kit/components/comments/comments.component\"", + "id": 634, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "children": [ { - "id": 2516, + "id": 635, "name": "SamCommentsComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -5008,23 +5157,24 @@ ], "children": [ { - "id": 2532, + "id": 651, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2535, + "id": 654, "name": "new SamCommentsComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2536, + "id": 655, "name": "commentsService", "kind": 32768, "kindString": "Parameter", @@ -5032,11 +5182,11 @@ "type": { "type": "reference", "name": "CommentsService", - "id": 2487 + "id": 606 } }, { - "id": 2537, + "id": 656, "name": "fb", "kind": 32768, "kindString": "Parameter", @@ -5050,30 +5200,31 @@ "type": { "type": "reference", "name": "SamCommentsComponent", - "id": 2516 + "id": 635 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 71, "character": 58 } ] }, { - "id": 2526, + "id": 645, "name": "collapseCommentsStream", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 54, "character": 32 } @@ -5090,20 +5241,21 @@ } }, { - "id": 2529, + "id": 648, "name": "comments", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Other private variables" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 65, "character": 18 } @@ -5115,25 +5267,26 @@ { "type": "reference", "name": "Comment", - "id": 2509 + "id": 628 } ] }, "defaultValue": " []" }, { - "id": 2533, + "id": 652, "name": "commentsService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 73, "character": 37 } @@ -5141,24 +5294,25 @@ "type": { "type": "reference", "name": "CommentsService", - "id": 2487 + "id": 606 } }, { - "id": 2528, + "id": 647, "name": "commentsSubscription", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Subscriptions for Observables" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 60, "character": 30 } @@ -5169,20 +5323,21 @@ } }, { - "id": 2531, + "id": 650, "name": "deleteStream", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Playground" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 71, "character": 22 } @@ -5200,12 +5355,13 @@ "defaultValue": " new Subject()" }, { - "id": 2517, + "id": 636, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -5223,7 +5379,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 32, "character": 26 } @@ -5235,17 +5391,18 @@ "defaultValue": "false" }, { - "id": 2524, + "id": 643, "name": "enterEventStream", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 48, "character": 26 } @@ -5262,18 +5419,19 @@ } }, { - "id": 2534, + "id": 653, "name": "fb", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 74, "character": 14 } @@ -5284,17 +5442,18 @@ } }, { - "id": 2521, + "id": 640, "name": "form", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 40, "character": 13 } @@ -5305,20 +5464,21 @@ } }, { - "id": 2525, + "id": 644, "name": "getCommentsStream", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Observables that map DOM events" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 53, "character": 27 } @@ -5335,12 +5495,13 @@ } }, { - "id": 2519, + "id": 638, "name": "hideCommentsButton", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -5357,7 +5518,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 37, "character": 60 } @@ -5368,17 +5529,18 @@ } }, { - "id": 2523, + "id": 642, "name": "hideCommentsStream", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 47, "character": 28 } @@ -5395,17 +5557,18 @@ } }, { - "id": 2530, + "id": 649, "name": "maxLength", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 66, "character": 19 } @@ -5417,20 +5580,21 @@ "defaultValue": "250" }, { - "id": 2522, + "id": 641, "name": "showButtonStream", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Observables created from DOM events" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 46, "character": 26 } @@ -5447,12 +5611,13 @@ } }, { - "id": 2518, + "id": 637, "name": "showCommentsButton", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -5472,7 +5637,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 36, "character": 60 } @@ -5483,17 +5648,18 @@ } }, { - "id": 2527, + "id": 646, "name": "submitStream", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 55, "character": 22 } @@ -5510,12 +5676,13 @@ } }, { - "id": 2520, + "id": 639, "name": "textArea", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -5532,7 +5699,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 38, "character": 40 } @@ -5543,16 +5710,17 @@ } }, { - "id": 2551, + "id": 670, "name": "charsRemaining", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2552, + "id": 671, "name": "charsRemaining", "kind": 4096, "kindString": "Call signature", @@ -5565,30 +5733,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 194, "character": 16 } ] }, { - "id": 2542, + "id": 661, "name": "isDeletable", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2543, + "id": 662, "name": "isDeletable", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2544, + "id": 663, "name": "comment", "kind": 32768, "kindString": "Parameter", @@ -5596,7 +5765,7 @@ "type": { "type": "reference", "name": "Comment", - "id": 2509 + "id": 628 } } ], @@ -5608,30 +5777,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 179, "character": 13 } ] }, { - "id": 2548, + "id": 667, "name": "isSubmitDisabled", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2549, + "id": 668, "name": "isSubmitDisabled", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2550, + "id": 669, "name": "form", "kind": 32768, "kindString": "Parameter", @@ -5650,23 +5820,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 187, "character": 18 } ] }, { - "id": 2540, + "id": 659, "name": "ngOnDestroy", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2541, + "id": 660, "name": "ngOnDestroy", "kind": 4096, "kindString": "Call signature", @@ -5679,23 +5850,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 175, "character": 13 } ] }, { - "id": 2538, + "id": 657, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2539, + "id": 658, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -5708,30 +5880,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 76, "character": 10 } ] }, { - "id": 2545, + "id": 664, "name": "onDelete", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2546, + "id": 665, "name": "onDelete", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2547, + "id": 666, "name": "comment", "kind": 32768, "kindString": "Parameter", @@ -5739,7 +5912,7 @@ "type": { "type": "reference", "name": "Comment", - "id": 2509 + "id": 628 } } ], @@ -5751,7 +5924,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 183, "character": 10 } @@ -5763,48 +5936,48 @@ "title": "Constructors", "kind": 512, "children": [ - 2532 + 651 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2526, - 2529, - 2533, - 2528, - 2531, - 2517, - 2524, - 2534, - 2521, - 2525, - 2519, - 2523, - 2530, - 2522, - 2518, - 2527, - 2520 + 645, + 648, + 652, + 647, + 650, + 636, + 643, + 653, + 640, + 644, + 638, + 642, + 649, + 641, + 637, + 646, + 639 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2551, - 2542, - 2548, - 2540, - 2538, - 2545 + 670, + 661, + 667, + 659, + 657, + 664 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 28, "character": 33 } @@ -5822,35 +5995,37 @@ "title": "Classes", "kind": 128, "children": [ - 2516 + 635 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2562, - "name": "\"sam-ui-elements/src/ui-kit/components/comments/comments.module\"", + "id": 879, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.module\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/comments/comments.module.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.module.ts", "children": [ { - "id": 2563, + "id": 880, "name": "SamCommentsModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -5866,7 +6041,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.module.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.module.ts", "line": 31, "character": 30 } @@ -5878,48 +6053,51 @@ "title": "Classes", "kind": 128, "children": [ - 2563 + 880 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.module.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.module.ts", "line": 1, "character": 0 } ] }, { - "id": 2486, - "name": "\"sam-ui-elements/src/ui-kit/components/comments/comments.service\"", + "id": 605, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.service\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", "children": [ { - "id": 2487, + "id": 606, "name": "CommentsService", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 2490, + "id": 609, "name": "_comments", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", "line": 9, "character": 11 } @@ -5928,21 +6106,22 @@ "type": "reference", "isArray": true, "name": "Comment", - "id": 2509 + "id": 628 }, "defaultValue": " []" }, { - "id": 2489, + "id": 608, "name": "_disabled", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", "line": 8, "character": 11 } @@ -5954,16 +6133,17 @@ "defaultValue": "false" }, { - "id": 2488, + "id": 607, "name": "_username", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", "line": 7, "character": 11 } @@ -5975,23 +6155,24 @@ "defaultValue": "\"\"" }, { - "id": 2503, + "id": 622, "name": "deleteComment", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2504, + "id": 623, "name": "deleteComment", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2505, + "id": 624, "name": "comment", "kind": 32768, "kindString": "Parameter", @@ -5999,7 +6180,7 @@ "type": { "type": "reference", "name": "Comment", - "id": 2509 + "id": 628 } } ], @@ -6011,7 +6192,7 @@ "type": "reference", "isArray": true, "name": "Comment", - "id": 2509 + "id": 628 } ] } @@ -6019,23 +6200,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", "line": 31, "character": 15 } ] }, { - "id": 2498, + "id": 617, "name": "getComments", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2499, + "id": 618, "name": "getComments", "kind": 4096, "kindString": "Call signature", @@ -6048,7 +6230,7 @@ "type": "reference", "isArray": true, "name": "Comment", - "id": 2509 + "id": 628 } ] } @@ -6056,23 +6238,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", "line": 23, "character": 13 } ] }, { - "id": 2506, + "id": 625, "name": "getInitialState", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2507, + "id": 626, "name": "getInitialState", "kind": 4096, "kindString": "Call signature", @@ -6085,7 +6268,7 @@ "type": "reference", "isArray": true, "name": "Comment", - "id": 2509 + "id": 628 } ] } @@ -6093,23 +6276,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", "line": 35, "character": 17 } ] }, { - "id": 2496, + "id": 615, "name": "getUsername", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2497, + "id": 616, "name": "getUsername", "kind": 4096, "kindString": "Call signature", @@ -6122,30 +6306,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", "line": 19, "character": 13 } ] }, { - "id": 2493, + "id": 612, "name": "isCommentDeletable", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2494, + "id": 613, "name": "isCommentDeletable", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2495, + "id": 614, "name": "comment", "kind": 32768, "kindString": "Parameter", @@ -6153,7 +6338,7 @@ "type": { "type": "reference", "name": "Comment", - "id": 2509 + "id": 628 } } ], @@ -6165,23 +6350,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", "line": 15, "character": 20 } ] }, { - "id": 2491, + "id": 610, "name": "isCommentingDisabled", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2492, + "id": 611, "name": "isCommentingDisabled", "kind": 4096, "kindString": "Call signature", @@ -6194,30 +6380,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", "line": 11, "character": 22 } ] }, { - "id": 2500, + "id": 619, "name": "postComment", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2501, + "id": 620, "name": "postComment", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2502, + "id": 621, "name": "_", "kind": 32768, "kindString": "Parameter", @@ -6236,7 +6423,7 @@ "type": "reference", "isArray": true, "name": "Comment", - "id": 2509 + "id": 628 } ] } @@ -6244,7 +6431,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", "line": 27, "character": 13 } @@ -6256,31 +6443,38 @@ "title": "Properties", "kind": 1024, "children": [ - 2490, - 2489, - 2488 + 609, + 608, + 607 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2503, - 2498, - 2506, - 2496, - 2493, - 2491, - 2500 + 622, + 617, + 625, + 615, + 612, + 610, + 619 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", "line": 5, "character": 28 } + ], + "implementedBy": [ + { + "type": "reference", + "name": "CommentsDemoService", + "id": 883 + } ] } ], @@ -6289,65 +6483,69 @@ "title": "Classes", "kind": 128, "children": [ - 2487 + 606 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", "line": 1, "character": 0 } ] }, { - "id": 2564, - "name": "\"sam-ui-elements/src/ui-kit/components/comments/index\"", + "id": 881, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/comments/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/comments/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/comments/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2508, - "name": "\"sam-ui-elements/src/ui-kit/components/comments/interfaces\"", + "id": 627, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/comments/interfaces\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", "children": [ { - "id": 2509, + "id": 628, "name": "Comment", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 2511, + "id": 630, "name": "datetime", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", "line": 3, "character": 10 } @@ -6358,17 +6556,18 @@ } }, { - "id": 2513, + "id": 632, "name": "extra", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", "line": 5, "character": 7 } @@ -6379,17 +6578,18 @@ } }, { - "id": 2514, + "id": 633, "name": "image", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", "line": 6, "character": 7 } @@ -6400,16 +6600,17 @@ } }, { - "id": 2512, + "id": 631, "name": "text", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", "line": 4, "character": 6 } @@ -6420,16 +6621,17 @@ } }, { - "id": 2510, + "id": 629, "name": "username", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", "line": 2, "character": 10 } @@ -6445,17 +6647,17 @@ "title": "Properties", "kind": 1024, "children": [ - 2511, - 2513, - 2514, - 2512, - 2510 + 630, + 632, + 633, + 631, + 629 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", "line": 1, "character": 24 } @@ -6467,35 +6669,37 @@ "title": "Interfaces", "kind": 256, "children": [ - 2509 + 628 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", "line": 1, "character": 0 } ] }, { - "id": 1960, - "name": "\"sam-ui-elements/src/ui-kit/components/download/download.component\"", + "id": 4173, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/download/download.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/download/download.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/download/download.component.ts", "children": [ { - "id": 1961, + "id": 4174, "name": "SamDownloadComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sam Download Component" @@ -6514,12 +6718,13 @@ ], "children": [ { - "id": 1963, + "id": 4176, "name": "attachmentError", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -6537,7 +6742,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/download/download.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/download/download.component.ts", "line": 58, "character": 33 } @@ -6549,12 +6754,13 @@ "defaultValue": "false" }, { - "id": 1964, + "id": 4177, "name": "downloadAllUrl", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -6572,7 +6778,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/download/download.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/download/download.component.ts", "line": 62, "character": 32 } @@ -6583,12 +6789,13 @@ } }, { - "id": 1962, + "id": 4175, "name": "packages", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -6606,7 +6813,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/download/download.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/download/download.component.ts", "line": 54, "character": 26 } @@ -6615,22 +6822,23 @@ "type": "reference", "isArray": true, "name": "DownloadPackageType", - "id": 183 + "id": 57 }, "defaultValue": " []" }, { - "id": 1965, + "id": 4178, "name": "hasPublicPackages", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1966, + "id": 4179, "name": "hasPublicPackages", "kind": 4096, "kindString": "Call signature", @@ -6643,31 +6851,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/download/download.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/download/download.component.ts", "line": 64, "character": 26 } ] }, { - "id": 1970, + "id": 4183, "name": "isSecure", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1971, + "id": 4184, "name": "isSecure", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1972, + "id": 4185, "name": "field", "kind": 32768, "kindString": "Parameter", @@ -6695,31 +6904,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/download/download.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/download/download.component.ts", "line": 78, "character": 18 } ] }, { - "id": 1967, + "id": 4180, "name": "toggleAccordion", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1968, + "id": 4181, "name": "toggleAccordion", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1969, + "id": 4182, "name": "card", "kind": 32768, "kindString": "Parameter", @@ -6738,7 +6948,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/download/download.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/download/download.component.ts", "line": 73, "character": 24 } @@ -6750,24 +6960,24 @@ "title": "Properties", "kind": 1024, "children": [ - 1963, - 1964, - 1962 + 4176, + 4177, + 4175 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1965, - 1970, - 1967 + 4178, + 4183, + 4180 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/download/download.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/download/download.component.ts", "line": 50, "character": 33 } @@ -6779,52 +6989,55 @@ "title": "Classes", "kind": 128, "children": [ - 1961 + 4174 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/download/download.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/download/download.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1973, - "name": "\"sam-ui-elements/src/ui-kit/components/download/index\"", + "id": 4186, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/download/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/download/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/download/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/download/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/download/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1974, - "name": "\"sam-ui-elements/src/ui-kit/components/filters-container/filters-container.component\"", + "id": 4187, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/filters-container/filters-container.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/filters-container/filters-container.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/filters-container/filters-container.component.ts", "children": [ { - "id": 1975, + "id": 4188, "name": "SamFiltersContainerComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sam Filter Container Component\nComponent is used as a container for collapsible filters.\nChild components included in this tag will conform to the styles\napplied on the container." @@ -6843,7 +7056,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/filters-container/filters-container.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/filters-container/filters-container.component.ts", "line": 14, "character": 41 } @@ -6855,52 +7068,55 @@ "title": "Classes", "kind": 128, "children": [ - 1975 + 4188 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/filters-container/filters-container.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/filters-container/filters-container.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1976, - "name": "\"sam-ui-elements/src/ui-kit/components/filters-container/index\"", + "id": 4189, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/filters-container/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/filters-container/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/filters-container/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/filters-container/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/filters-container/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1977, - "name": "\"sam-ui-elements/src/ui-kit/components/header/header.component\"", + "id": 4190, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/header/header.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/header/header.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/header/header.component.ts", "children": [ { - "id": 1978, + "id": 4191, "name": "SamHeaderComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component contains navigational links to main sections of\nthe site" @@ -6919,12 +7135,13 @@ ], "children": [ { - "id": 1979, + "id": 4192, "name": "headerDropdownControl", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emitted event from child dropdown component" @@ -6941,7 +7158,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/header/header.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/header/header.component.ts", "line": 15, "character": 33 } @@ -6959,23 +7176,24 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1980, + "id": 4193, "name": "dropdownEventControl", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1981, + "id": 4194, "name": "dropdownEventControl", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1982, + "id": 4195, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -6994,23 +7212,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/header/header.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/header/header.component.ts", "line": 17, "character": 22 } ] }, { - "id": 1983, + "id": 4196, "name": "refreshPage", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1984, + "id": 4197, "name": "refreshPage", "kind": 4096, "kindString": "Call signature", @@ -7023,7 +7242,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/header/header.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/header/header.component.ts", "line": 21, "character": 13 } @@ -7035,21 +7254,21 @@ "title": "Properties", "kind": 1024, "children": [ - 1979 + 4192 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1980, - 1983 + 4193, + 4196 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/header/header.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/header/header.component.ts", "line": 11, "character": 31 } @@ -7061,52 +7280,55 @@ "title": "Classes", "kind": 128, "children": [ - 1978 + 4191 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/header/header.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/header/header.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1985, - "name": "\"sam-ui-elements/src/ui-kit/components/header/index\"", + "id": 4198, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/header/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/header/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/header/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/header/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/header/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1986, - "name": "\"sam-ui-elements/src/ui-kit/components/history/history.component\"", + "id": 4199, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/history/history.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/history/history.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/history/history.component.ts", "children": [ { - "id": 1987, + "id": 4200, "name": "SamHistoryComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -7122,12 +7344,13 @@ ], "children": [ { - "id": 1989, + "id": 4202, "name": "currentId", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the 'current' node on the id value defined in data" @@ -7144,7 +7367,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/history/history.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/history/history.component.ts", "line": 15, "character": 20 } @@ -7155,12 +7378,13 @@ } }, { - "id": 1988, + "id": 4201, "name": "data", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "sets the model for generating nodes" @@ -7177,7 +7401,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/history/history.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/history/history.component.ts", "line": 11, "character": 15 } @@ -7186,7 +7410,7 @@ "type": "reference", "isArray": true, "name": "HistoryNodeType", - "id": 164 + "id": 38 } } ], @@ -7195,14 +7419,14 @@ "title": "Properties", "kind": 1024, "children": [ - 1989, - 1988 + 4202, + 4201 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/history/history.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/history/history.component.ts", "line": 7, "character": 32 } @@ -7214,52 +7438,55 @@ "title": "Classes", "kind": 128, "children": [ - 1987 + 4200 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/history/history.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/history/history.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1990, - "name": "\"sam-ui-elements/src/ui-kit/components/history/index\"", + "id": 4203, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/history/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/history/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/history/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/history/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/history/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2565, - "name": "\"sam-ui-elements/src/ui-kit/components/image/image.component\"", + "id": 4678, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/image/image.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", "children": [ { - "id": 2566, + "id": 4679, "name": "SamImageComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -7275,13 +7502,14 @@ ], "children": [ { - "id": 2572, + "id": 4686, "name": "_image", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -7297,8 +7525,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 30, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 35, "character": 36 } ], @@ -7308,13 +7536,14 @@ } }, { - "id": 2574, + "id": 4688, "name": "cancelButton", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -7330,8 +7559,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 32, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 37, "character": 49 } ], @@ -7341,18 +7570,19 @@ } }, { - "id": 2578, + "id": 4692, "name": "cancelButtonStream", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 37, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 42, "character": 28 } ], @@ -7368,18 +7598,19 @@ } }, { - "id": 2582, + "id": 4696, "name": "cancelButtonSubscription", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 42, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 47, "character": 34 } ], @@ -7389,13 +7620,14 @@ } }, { - "id": 2570, + "id": 4684, "name": "componentContainer", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -7411,8 +7643,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 28, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 33, "character": 61 } ], @@ -7422,13 +7654,14 @@ } }, { - "id": 2573, + "id": 4687, "name": "editButton", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -7444,8 +7677,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 31, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 36, "character": 45 } ], @@ -7455,18 +7688,19 @@ } }, { - "id": 2577, + "id": 4691, "name": "editButtonStream", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 36, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 41, "character": 26 } ], @@ -7482,18 +7716,19 @@ } }, { - "id": 2586, + "id": 4700, "name": "editMode", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 47, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 52, "character": 17 } ], @@ -7504,18 +7739,19 @@ "defaultValue": "false" }, { - "id": 2580, + "id": 4694, "name": "editModeSubscription", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 40, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 45, "character": 30 } ], @@ -7525,12 +7761,13 @@ } }, { - "id": 2568, + "id": 4681, "name": "editable", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -7548,7 +7785,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", "line": 22, "character": 26 } @@ -7560,12 +7797,52 @@ "defaultValue": "false" }, { - "id": 2569, + "id": 4682, + "name": "error", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "decorators": [ + { + "name": "Output", + "type": { + "type": "reference", + "name": "Output" + }, + "arguments": {} + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 27, + "character": 24 + } + ], + "type": { + "type": "reference", + "name": "EventEmitter", + "typeArguments": [ + { + "type": "instrinct", + "name": "any" + } + ] + }, + "defaultValue": " new EventEmitter()" + }, + { + "id": 4683, "name": "fileChange", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -7583,8 +7860,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 26, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 31, "character": 29 } ], @@ -7601,18 +7878,19 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2576, + "id": 4690, "name": "fileChangeStream", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 35, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 40, "character": 26 } ], @@ -7628,18 +7906,19 @@ } }, { - "id": 2581, + "id": 4695, "name": "fileChangeSubscription", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 41, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 46, "character": 32 } ], @@ -7649,13 +7928,14 @@ } }, { - "id": 2571, + "id": 4685, "name": "filePicker", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -7671,8 +7951,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 29, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 34, "character": 45 } ], @@ -7682,18 +7962,19 @@ } }, { - "id": 2585, + "id": 4699, "name": "reader", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 46, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 51, "character": 16 } ], @@ -7704,13 +7985,14 @@ "defaultValue": " new FileReader()" }, { - "id": 2575, + "id": 4689, "name": "saveButton", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -7726,8 +8008,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 33, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 38, "character": 45 } ], @@ -7737,18 +8019,19 @@ } }, { - "id": 2579, + "id": 4693, "name": "saveButtonStream", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 38, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 43, "character": 26 } ], @@ -7764,18 +8047,19 @@ } }, { - "id": 2583, + "id": 4697, "name": "saveButtonSubscription", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 43, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 48, "character": 32 } ], @@ -7785,12 +8069,13 @@ } }, { - "id": 2567, + "id": 4680, "name": "src", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -7808,7 +8093,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", "line": 18, "character": 21 } @@ -7819,18 +8104,19 @@ } }, { - "id": 2588, + "id": 4702, "name": "tmpSrc", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 49, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 54, "character": 16 } ], @@ -7840,18 +8126,19 @@ } }, { - "id": 2587, + "id": 4701, "name": "tmpValue", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 48, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 53, "character": 18 } ], @@ -7861,18 +8148,19 @@ } }, { - "id": 2584, + "id": 4698, "name": "value", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 45, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 50, "character": 15 } ], @@ -7882,17 +8170,18 @@ } }, { - "id": 2599, + "id": 4713, "name": "generateDoneText", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2600, + "id": 4714, "name": "generateDoneText", "kind": 4096, "kindString": "Call signature", @@ -7914,24 +8203,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 145, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 150, "character": 25 } ] }, { - "id": 2597, + "id": 4711, "name": "generateFilePickerLabelText", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2598, + "id": 4712, "name": "generateFilePickerLabelText", "kind": 4096, "kindString": "Call signature", @@ -7944,24 +8234,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 136, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 141, "character": 36 } ] }, { - "id": 2601, + "id": 4715, "name": "generateSrc", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2602, + "id": 4716, "name": "generateSrc", "kind": 4096, "kindString": "Call signature", @@ -7974,24 +8265,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 149, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 154, "character": 20 } ] }, { - "id": 2595, + "id": 4709, "name": "getFileName", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2596, + "id": 4710, "name": "getFileName", "kind": 4096, "kindString": "Call signature", @@ -8004,24 +8296,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 128, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 133, "character": 20 } ] }, { - "id": 2591, + "id": 4705, "name": "hideEditButton", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2592, + "id": 4706, "name": "hideEditButton", "kind": 4096, "kindString": "Call signature", @@ -8034,24 +8327,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 120, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 125, "character": 23 } ] }, { - "id": 2603, + "id": 4717, "name": "isImageTemporary", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2604, + "id": 4718, "name": "isImageTemporary", "kind": 4096, "kindString": "Call signature", @@ -8064,23 +8358,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 153, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 158, "character": 25 } ] }, { - "id": 2589, + "id": 4703, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2590, + "id": 4704, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -8093,31 +8388,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 51, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 56, "character": 10 } ] }, { - "id": 2605, + "id": 4719, "name": "onDragEnter", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2606, + "id": 4720, "name": "onDragEnter", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2607, + "id": 4721, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -8136,31 +8432,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 158, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 163, "character": 20 } ] }, { - "id": 2608, + "id": 4722, "name": "onDragOver", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2609, + "id": 4723, "name": "onDragOver", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2610, + "id": 4724, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -8179,31 +8476,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 163, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 168, "character": 19 } ] }, { - "id": 2611, + "id": 4725, "name": "onDropEvent", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2612, + "id": 4726, "name": "onDropEvent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2613, + "id": 4727, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -8222,24 +8520,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 168, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 173, "character": 20 } ] }, { - "id": 2593, + "id": 4707, "name": "toggleEdit", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2594, + "id": 4708, "name": "toggleEdit", "kind": 4096, "kindString": "Call signature", @@ -8252,8 +8551,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 124, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "line": 129, "character": 20 } ] @@ -8264,51 +8563,52 @@ "title": "Properties", "kind": 1024, "children": [ - 2572, - 2574, - 2578, - 2582, - 2570, - 2573, - 2577, - 2586, - 2580, - 2568, - 2569, - 2576, - 2581, - 2571, - 2585, - 2575, - 2579, - 2583, - 2567, - 2588, - 2587, - 2584 + 4686, + 4688, + 4692, + 4696, + 4684, + 4687, + 4691, + 4700, + 4694, + 4681, + 4682, + 4683, + 4690, + 4695, + 4685, + 4699, + 4689, + 4693, + 4697, + 4680, + 4702, + 4701, + 4698 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2599, - 2597, - 2601, - 2595, - 2591, - 2603, - 2589, - 2605, - 2608, - 2611, - 2593 + 4713, + 4711, + 4715, + 4709, + 4705, + 4717, + 4703, + 4719, + 4722, + 4725, + 4707 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", "line": 14, "character": 30 } @@ -8326,35 +8626,37 @@ "title": "Classes", "kind": 128, "children": [ - 2566 + 4679 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2614, - "name": "\"sam-ui-elements/src/ui-kit/components/image/image.module\"", + "id": 4728, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/image/image.module\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/image/image.module.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/image/image.module.ts", "children": [ { - "id": 2615, + "id": 4729, "name": "SamImageModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -8370,7 +8672,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.module.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.module.ts", "line": 19, "character": 27 } @@ -8382,52 +8684,55 @@ "title": "Classes", "kind": 128, "children": [ - 2615 + 4729 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/image.module.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/image.module.ts", "line": 1, "character": 0 } ] }, { - "id": 2616, - "name": "\"sam-ui-elements/src/ui-kit/components/image/index\"", + "id": 4730, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/image/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/image/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/image/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/image/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/image/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2658, - "name": "\"sam-ui-elements/src/ui-kit/components/index\"", + "id": 4772, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/index.ts", "children": [ { - "id": 2659, + "id": 4773, "name": "SamComponentsModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -8443,7 +8748,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/index.ts", "line": 108, "character": 32 } @@ -8455,52 +8760,55 @@ "title": "Classes", "kind": 128, "children": [ - 2659 + 4773 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2043, - "name": "\"sam-ui-elements/src/ui-kit/components/info-accordion/index\"", + "id": 4256, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/info-accordion/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1991, - "name": "\"sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component\"", + "id": 4204, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "children": [ { - "id": 1992, + "id": 4205, "name": "SamInfoAccordionComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -8516,12 +8824,13 @@ ], "children": [ { - "id": 2000, + "id": 4213, "name": "closeNotification", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Passes in a string to close accordions for cases where there are multiple\nInfo accordions on a page." @@ -8538,7 +8847,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 128, "character": 28 } @@ -8550,12 +8859,13 @@ "defaultValue": "\"\"" }, { - "id": 1997, + "id": 4210, "name": "data", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets accordion data" @@ -8572,7 +8882,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 112, "character": 15 } @@ -8583,16 +8893,17 @@ } }, { - "id": 1994, + "id": 4207, "name": "defaultItemsPerRow", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 98, "character": 20 } @@ -8604,16 +8915,17 @@ "defaultValue": "3" }, { - "id": 2009, + "id": 4222, "name": "fadeSegmentInOut", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 144, "character": 18 } @@ -8625,16 +8937,17 @@ "defaultValue": "\"\"" }, { - "id": 2008, + "id": 4221, "name": "formatted", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 142, "character": 11 } @@ -8646,12 +8959,13 @@ "defaultValue": "false" }, { - "id": 1999, + "id": 4212, "name": "isExternalLink", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Configures external link indicator" @@ -8668,7 +8982,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 122, "character": 25 } @@ -8680,12 +8994,13 @@ "defaultValue": "true" }, { - "id": 1995, + "id": 4208, "name": "itemsPerRow", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Configures number of items per row" @@ -8702,7 +9017,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 102, "character": 22 } @@ -8720,12 +9035,13 @@ "defaultValue": " [this.defaultItemsPerRow]" }, { - "id": 1993, + "id": 4206, "name": "name", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "(deprecated) sets active item" @@ -8742,7 +9058,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 96, "character": 15 } @@ -8753,12 +9069,13 @@ } }, { - "id": 1998, + "id": 4211, "name": "showDetailTitle", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Configures showing detail title" @@ -8775,7 +9092,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 117, "character": 26 } @@ -8787,12 +9104,13 @@ "defaultValue": "true" }, { - "id": 1996, + "id": 4209, "name": "spacing", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets additional spacing configuration (\"very relaxed\" and \"relaxed\")" @@ -8809,7 +9127,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 107, "character": 18 } @@ -8821,12 +9139,13 @@ "defaultValue": "\"\"" }, { - "id": 2001, + "id": 4214, "name": "updateNotification", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emits notification event" @@ -8843,7 +9162,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 133, "character": 30 } @@ -8861,17 +9180,18 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2028, + "id": 4241, "name": "closeReferenceDetail", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2029, + "id": 4242, "name": "closeReferenceDetail", "kind": 4096, "kindString": "Call signature", @@ -8884,23 +9204,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 200, "character": 30 } ] }, { - "id": 2017, + "id": 4230, "name": "formatData", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2018, + "id": 4231, "name": "formatData", "kind": 4096, "kindString": "Call signature", @@ -8913,31 +9234,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 160, "character": 12 } ] }, { - "id": 2030, + "id": 4243, "name": "getActiveClass", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2031, + "id": 4244, "name": "getActiveClass", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2032, + "id": 4245, "name": "i", "kind": 32768, "kindString": "Parameter", @@ -8948,7 +9270,7 @@ } }, { - "id": 2033, + "id": 4246, "name": "j", "kind": 32768, "kindString": "Parameter", @@ -8967,31 +9289,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 205, "character": 24 } ] }, { - "id": 2024, + "id": 4237, "name": "getItemClass", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2025, + "id": 4238, "name": "getItemClass", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2026, + "id": 4239, "name": "i", "kind": 32768, "kindString": "Parameter", @@ -9002,7 +9325,7 @@ } }, { - "id": 2027, + "id": 4240, "name": "j", "kind": 32768, "kindString": "Parameter", @@ -9030,24 +9353,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 193, "character": 22 } ] }, { - "id": 2034, + "id": 4247, "name": "getLinkClass", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2035, + "id": 4248, "name": "getLinkClass", "kind": 4096, "kindString": "Call signature", @@ -9060,31 +9384,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 212, "character": 22 } ] }, { - "id": 2039, + "id": 4252, "name": "isCurrent", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2040, + "id": 4253, "name": "isCurrent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2041, + "id": 4254, "name": "i", "kind": 32768, "kindString": "Parameter", @@ -9095,7 +9420,7 @@ } }, { - "id": 2042, + "id": 4255, "name": "j", "kind": 32768, "kindString": "Parameter", @@ -9114,23 +9439,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 220, "character": 19 } ] }, { - "id": 2015, + "id": 4228, "name": "ngOnChanges", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2016, + "id": 4229, "name": "ngOnChanges", "kind": 4096, "kindString": "Call signature", @@ -9143,23 +9469,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 154, "character": 13 } ] }, { - "id": 2010, + "id": 4223, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2011, + "id": 4224, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -9172,30 +9499,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 146, "character": 10 } ] }, { - "id": 2012, + "id": 4225, "name": "over", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2013, + "id": 4226, "name": "over", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2014, + "id": 4227, "name": "item", "kind": 32768, "kindString": "Parameter", @@ -9214,30 +9542,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 150, "character": 6 } ] }, { - "id": 2019, + "id": 4232, "name": "selectDetail", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2020, + "id": 4233, "name": "selectDetail", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2021, + "id": 4234, "name": "i", "kind": 32768, "kindString": "Parameter", @@ -9248,7 +9577,7 @@ } }, { - "id": 2022, + "id": 4235, "name": "j", "kind": 32768, "kindString": "Parameter", @@ -9259,7 +9588,7 @@ } }, { - "id": 2023, + "id": 4236, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -9278,31 +9607,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 178, "character": 14 } ] }, { - "id": 2036, + "id": 4249, "name": "toggleDetail", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2037, + "id": 4250, "name": "toggleDetail", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2038, + "id": 4251, "name": "i", "kind": 32768, "kindString": "Parameter", @@ -9321,32 +9651,34 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 216, "character": 22 } ] }, { - "id": 2002, + "id": 4215, "name": "detailObj", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 2006, + "id": 4219, "name": "item", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 139, "character": 8 } @@ -9354,7 +9686,7 @@ "type": { "type": "reflection", "declaration": { - "id": 2007, + "id": 4220, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -9363,16 +9695,17 @@ } }, { - "id": 2004, + "id": 4217, "name": "posX", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 137, "character": 8 } @@ -9384,16 +9717,17 @@ "defaultValue": " -1" }, { - "id": 2005, + "id": 4218, "name": "posY", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 138, "character": 8 } @@ -9405,16 +9739,17 @@ "defaultValue": " -1" }, { - "id": 2003, + "id": 4216, "name": "showDetail", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 136, "character": 14 } @@ -9431,16 +9766,16 @@ "title": "Variables", "kind": 32, "children": [ - 2006, - 2004, - 2005, - 2003 + 4219, + 4217, + 4218, + 4216 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 135, "character": 11 } @@ -9456,47 +9791,47 @@ "title": "Properties", "kind": 1024, "children": [ - 2000, - 1997, - 1994, - 2009, - 2008, - 1999, - 1995, - 1993, - 1998, - 1996, - 2001 + 4213, + 4210, + 4207, + 4222, + 4221, + 4212, + 4208, + 4206, + 4211, + 4209, + 4214 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2028, - 2017, - 2030, - 2024, - 2034, - 2039, - 2015, - 2010, - 2012, - 2019, - 2036 + 4241, + 4230, + 4243, + 4237, + 4247, + 4252, + 4228, + 4223, + 4225, + 4232, + 4249 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 2002 + 4215 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 92, "character": 38 } @@ -9508,52 +9843,55 @@ "title": "Classes", "kind": 128, "children": [ - 1992 + 4205 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2050, - "name": "\"sam-ui-elements/src/ui-kit/components/label/index\"", + "id": 4263, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/label/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/label/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/label/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/label/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/label/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2044, - "name": "\"sam-ui-elements/src/ui-kit/components/label/label.component\"", + "id": 4257, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/label/label.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/label/label.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/label/label.component.ts", "children": [ { - "id": 2045, + "id": 4258, "name": "SamLabelComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component draws attention to new or important content." @@ -9572,12 +9910,13 @@ ], "children": [ { - "id": 2047, + "id": 4260, "name": "labelText", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The text content that will show on the label" @@ -9594,7 +9933,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/label/label.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/label/label.component.ts", "line": 18, "character": 20 } @@ -9605,12 +9944,13 @@ } }, { - "id": 2046, + "id": 4259, "name": "labelType", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets size of label, takes value of 'small' or 'big'" @@ -9627,7 +9967,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/label/label.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/label/label.component.ts", "line": 14, "character": 20 } @@ -9638,17 +9978,18 @@ } }, { - "id": 2048, + "id": 4261, "name": "labelClass", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2049, + "id": 4262, "name": "labelClass", "kind": 4096, "kindString": "Call signature", @@ -9664,7 +10005,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/label/label.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/label/label.component.ts", "line": 23, "character": 19 } @@ -9676,21 +10017,21 @@ "title": "Properties", "kind": 1024, "children": [ - 2047, - 2046 + 4260, + 4259 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2048 + 4261 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/label/label.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/label/label.component.ts", "line": 10, "character": 30 } @@ -9702,52 +10043,55 @@ "title": "Classes", "kind": 128, "children": [ - 2045 + 4258 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/label/label.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/label/label.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2128, - "name": "\"sam-ui-elements/src/ui-kit/components/modal/index\"", + "id": 4348, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/modal/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/modal/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/modal/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2051, - "name": "\"sam-ui-elements/src/ui-kit/components/modal/modal.component\"", + "id": 4271, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "children": [ { - "id": 2052, + "id": 4272, "name": "SamModalComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component display a popover for user interaction" @@ -9766,23 +10110,24 @@ ], "children": [ { - "id": 2093, + "id": 4313, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2096, + "id": 4316, "name": "new SamModalComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2097, + "id": 4317, "name": "hostElement", "kind": 32768, "kindString": "Parameter", @@ -9793,7 +10138,7 @@ } }, { - "id": 2098, + "id": 4318, "name": "cdr", "kind": 32768, "kindString": "Parameter", @@ -9807,30 +10152,31 @@ "type": { "type": "reference", "name": "SamModalComponent", - "id": 2052 + "id": 4272 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 107, "character": 27 } ] }, { - "id": 2089, + "id": 4309, "name": "_allFocusableElements", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 103, "character": 31 } @@ -9847,17 +10193,18 @@ } }, { - "id": 2087, + "id": 4307, "name": "_focusModalElement", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 98, "character": 28 } @@ -9869,17 +10216,18 @@ "defaultValue": "false" }, { - "id": 2088, + "id": 4308, "name": "_focusableString", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 99, "character": 26 } @@ -9891,17 +10239,18 @@ "defaultValue": "\"a[href], area, button, select, textarea, *[tabindex], input:not([type=\"hidden\"])\"" }, { - "id": 2090, + "id": 4310, "name": "_modalFocusableElements", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 104, "character": 33 } @@ -9918,17 +10267,18 @@ } }, { - "id": 2091, + "id": 4311, "name": "_scrollHelpers", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 105, "character": 24 } @@ -9939,17 +10289,18 @@ } }, { - "id": 2092, + "id": 4312, "name": "args", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 107, "character": 14 } @@ -9961,17 +10312,18 @@ "defaultValue": " undefined" }, { - "id": 2085, + "id": 4305, "name": "backdropElement", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 96, "character": 25 } @@ -9982,12 +10334,13 @@ } }, { - "id": 2057, + "id": 4277, "name": "cancelButtonLabel", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the cancel button text" @@ -10004,7 +10357,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 42, "character": 28 } @@ -10016,18 +10369,19 @@ "defaultValue": "\"\"" }, { - "id": 2095, + "id": 4315, "name": "cdr", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 109, "character": 58 } @@ -10038,12 +10392,13 @@ } }, { - "id": 2065, + "id": 4285, "name": "close", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emitted event when modal is closed" @@ -10060,7 +10415,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 74, "character": 17 } @@ -10078,12 +10433,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2061, + "id": 4281, "name": "closeOnEscape", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Close modal if ESC key is pressed, defaults to true" @@ -10100,7 +10456,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 58, "character": 24 } @@ -10112,12 +10468,13 @@ "defaultValue": "true" }, { - "id": 2060, + "id": 4280, "name": "closeOnOutsideClick", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Close modal if user clicks outside of modal, defaults to true" @@ -10134,7 +10491,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 54, "character": 30 } @@ -10146,12 +10503,13 @@ "defaultValue": "true" }, { - "id": 2056, + "id": 4276, "name": "description", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the modal text description" @@ -10168,7 +10526,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 38, "character": 22 } @@ -10179,18 +10537,19 @@ } }, { - "id": 2094, + "id": 4314, "name": "hostElement", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 109, "character": 33 } @@ -10201,12 +10560,13 @@ } }, { - "id": 2053, + "id": 4273, "name": "id", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets ID html attribute of modal" @@ -10223,7 +10583,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 25, "character": 13 } @@ -10235,17 +10595,18 @@ "defaultValue": "\"\"" }, { - "id": 2086, + "id": 4306, "name": "internalId", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 97, "character": 20 } @@ -10256,12 +10617,13 @@ } }, { - "id": 2069, + "id": 4289, "name": "modalContent", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -10278,7 +10640,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 85, "character": 48 } @@ -10289,12 +10651,13 @@ } }, { - "id": 2068, + "id": 4288, "name": "modalRoot", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -10311,7 +10674,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 84, "character": 42 } @@ -10322,12 +10685,13 @@ } }, { - "id": 2064, + "id": 4284, "name": "onClose", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "(deprecated) Emitted event when modal is closed" @@ -10344,7 +10708,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 70, "character": 19 } @@ -10362,12 +10726,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2062, + "id": 4282, "name": "onOpen", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "(deprecated) Emitted event when modal is opened" @@ -10384,7 +10749,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 62, "character": 18 } @@ -10402,12 +10767,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2066, + "id": 4286, "name": "onSubmit", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "(deprecated) Emitted event on modal submission" @@ -10424,7 +10790,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 78, "character": 20 } @@ -10442,12 +10808,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2063, + "id": 4283, "name": "open", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emitted event when modal is opened" @@ -10464,7 +10831,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 66, "character": 16 } @@ -10482,17 +10849,18 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2084, + "id": 4304, "name": "selectedType", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 94, "character": 21 } @@ -10504,17 +10872,18 @@ "defaultValue": " this.types.success.class" }, { - "id": 2070, + "id": 4290, "name": "show", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 87, "character": 13 } @@ -10526,12 +10895,13 @@ "defaultValue": "false" }, { - "id": 2059, + "id": 4279, "name": "showClose", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Show/hide the modal close button, defaults to true" @@ -10548,7 +10918,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 50, "character": 20 } @@ -10560,12 +10930,13 @@ "defaultValue": "true" }, { - "id": 2067, + "id": 4287, "name": "submit", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emitted event on modal submission" @@ -10582,7 +10953,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 82, "character": 18 } @@ -10600,12 +10971,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2058, + "id": 4278, "name": "submitButtonLabel", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the submit button text" @@ -10622,7 +10994,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 46, "character": 28 } @@ -10634,12 +11006,13 @@ "defaultValue": "\"\"" }, { - "id": 2055, + "id": 4275, "name": "title", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the modal title text" @@ -10656,7 +11029,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 34, "character": 16 } @@ -10667,12 +11040,13 @@ } }, { - "id": 2054, + "id": 4274, "name": "type", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets type of modal, takes values of \"success\", \"warning\", \"error\", or\n\"info\"" @@ -10689,7 +11063,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 30, "character": 15 } @@ -10700,23 +11074,24 @@ } }, { - "id": 2116, + "id": 4336, "name": "closeModal", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2117, + "id": 4337, "name": "closeModal", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2118, + "id": 4338, "name": "emit", "kind": 32768, "kindString": "Parameter", @@ -10736,24 +11111,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 201, "character": 12 } ] }, { - "id": 2121, + "id": 4341, "name": "createBackdrop", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2122, + "id": 4342, "name": "createBackdrop", "kind": 4096, "kindString": "Call signature", @@ -10766,23 +11142,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 225, "character": 24 } ] }, { - "id": 2109, + "id": 4329, "name": "ngOnDestroy", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2110, + "id": 4330, "name": "ngOnDestroy", "kind": 4096, "kindString": "Call signature", @@ -10795,23 +11172,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 167, "character": 13 } ] }, { - "id": 2099, + "id": 4319, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2100, + "id": 4320, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -10824,30 +11202,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 113, "character": 10 } ] }, { - "id": 2113, + "id": 4333, "name": "openModal", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2114, + "id": 4334, "name": "openModal", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2115, + "id": 4335, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -10869,31 +11248,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 183, "character": 11 } ] }, { - "id": 2125, + "id": 4345, "name": "preventClosing", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2126, + "id": 4346, "name": "preventClosing", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2127, + "id": 4347, "name": "evt", "kind": 32768, "kindString": "Parameter", @@ -10912,30 +11292,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 236, "character": 24 } ] }, { - "id": 2106, + "id": 4326, "name": "reinsertTabbable", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2107, + "id": 4327, "name": "reinsertTabbable", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2108, + "id": 4328, "name": "item", "kind": 32768, "kindString": "Parameter", @@ -10954,24 +11335,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 157, "character": 18 } ] }, { - "id": 2123, + "id": 4343, "name": "removeBackdrop", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2124, + "id": 4344, "name": "removeBackdrop", "kind": 4096, "kindString": "Call signature", @@ -10984,30 +11366,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 230, "character": 24 } ] }, { - "id": 2103, + "id": 4323, "name": "removeTabbable", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2104, + "id": 4324, "name": "removeTabbable", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2105, + "id": 4325, "name": "item", "kind": 32768, "kindString": "Parameter", @@ -11026,23 +11409,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 149, "character": 16 } ] }, { - "id": 2101, + "id": 4321, "name": "set508", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2102, + "id": 4322, "name": "set508", "kind": 4096, "kindString": "Call signature", @@ -11055,23 +11439,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 120, "character": 8 } ] }, { - "id": 2119, + "id": 4339, "name": "submitBtnClick", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2120, + "id": 4340, "name": "submitBtnClick", "kind": 4096, "kindString": "Call signature", @@ -11084,23 +11469,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 220, "character": 16 } ] }, { - "id": 2111, + "id": 4331, "name": "typeNotDefined", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2112, + "id": 4332, "name": "typeNotDefined", "kind": 4096, "kindString": "Call signature", @@ -11113,42 +11499,45 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 173, "character": 16 } ] }, { - "id": 2071, + "id": 4291, "name": "types", "kind": 2097152, "kindString": "Object literal", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "children": [ { - "id": 2078, + "id": 4298, "name": "error", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 2079, + "id": 4299, "name": "class", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 91, "character": 20 } @@ -11160,16 +11549,17 @@ "defaultValue": "\"usa-alert-error\"" }, { - "id": 2080, + "id": 4300, "name": "sr", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 91, "character": 43 } @@ -11186,14 +11576,14 @@ "title": "Variables", "kind": 32, "children": [ - 2079, - 2080 + 4299, + 4300 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 91, "character": 11 } @@ -11204,25 +11594,27 @@ } }, { - "id": 2081, + "id": 4301, "name": "info", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 2082, + "id": 4302, "name": "class", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 92, "character": 19 } @@ -11234,16 +11626,17 @@ "defaultValue": "\"usa-alert-info\"" }, { - "id": 2083, + "id": 4303, "name": "sr", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 92, "character": 41 } @@ -11260,14 +11653,14 @@ "title": "Variables", "kind": 32, "children": [ - 2082, - 2083 + 4302, + 4303 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 92, "character": 10 } @@ -11278,25 +11671,27 @@ } }, { - "id": 2072, + "id": 4292, "name": "success", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 2073, + "id": 4293, "name": "class", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 89, "character": 22 } @@ -11308,16 +11703,17 @@ "defaultValue": "\"usa-alert-success\"" }, { - "id": 2074, + "id": 4294, "name": "sr", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 89, "character": 47 } @@ -11334,14 +11730,14 @@ "title": "Variables", "kind": 32, "children": [ - 2073, - 2074 + 4293, + 4294 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 89, "character": 13 } @@ -11352,25 +11748,27 @@ } }, { - "id": 2075, + "id": 4295, "name": "warning", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 2076, + "id": 4296, "name": "class", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 90, "character": 22 } @@ -11382,16 +11780,17 @@ "defaultValue": "\"usa-alert-warning\"" }, { - "id": 2077, + "id": 4297, "name": "sr", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 90, "character": 47 } @@ -11408,14 +11807,14 @@ "title": "Variables", "kind": 32, "children": [ - 2076, - 2077 + 4296, + 4297 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 90, "character": 13 } @@ -11431,16 +11830,16 @@ "title": "Object literals", "kind": 2097152, "children": [ - 2078, - 2081, - 2072, - 2075 + 4298, + 4301, + 4292, + 4295 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 88, "character": 14 } @@ -11456,73 +11855,73 @@ "title": "Constructors", "kind": 512, "children": [ - 2093 + 4313 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2089, - 2087, - 2088, - 2090, - 2091, - 2092, - 2085, - 2057, - 2095, - 2065, - 2061, - 2060, - 2056, - 2094, - 2053, - 2086, - 2069, - 2068, - 2064, - 2062, - 2066, - 2063, - 2084, - 2070, - 2059, - 2067, - 2058, - 2055, - 2054 + 4309, + 4307, + 4308, + 4310, + 4311, + 4312, + 4305, + 4277, + 4315, + 4285, + 4281, + 4280, + 4276, + 4314, + 4273, + 4306, + 4289, + 4288, + 4284, + 4282, + 4286, + 4283, + 4304, + 4290, + 4279, + 4287, + 4278, + 4275, + 4274 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2116, - 2121, - 2109, - 2099, - 2113, - 2125, - 2106, - 2123, - 2103, - 2101, - 2119, - 2111 + 4336, + 4341, + 4329, + 4319, + 4333, + 4345, + 4326, + 4343, + 4323, + 4321, + 4339, + 4331 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 2071 + 4291 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 21, "character": 30 } @@ -11540,52 +11939,55 @@ "title": "Classes", "kind": 128, "children": [ - 2052 + 4272 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2160, - "name": "\"sam-ui-elements/src/ui-kit/components/multiselect-dropdown/index\"", + "id": 4380, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2129, - "name": "\"sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component\"", + "id": 4349, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "children": [ { - "id": 2130, + "id": 4350, "name": "SamMultiSelectDropdownComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component provides a form control to\\\nmultiselect a list" @@ -11604,12 +12006,13 @@ ], "children": [ { - "id": 2138, + "id": 4358, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the disabled attribute for component, defaults to false" @@ -11626,7 +12029,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 51, "character": 19 } @@ -11638,17 +12041,18 @@ "defaultValue": "false" }, { - "id": 2141, + "id": 4361, "name": "elementLabel", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 59, "character": 21 } @@ -11659,12 +12063,13 @@ } }, { - "id": 2136, + "id": 4356, "name": "errorMessage", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "String for general error message" @@ -11681,7 +12086,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 43, "character": 23 } @@ -11692,12 +12097,13 @@ } }, { - "id": 2137, + "id": 4357, "name": "hasSelectAll", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Configure if list should have a \"Select All\" option" @@ -11714,7 +12120,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 47, "character": 23 } @@ -11725,12 +12131,13 @@ } }, { - "id": 2135, + "id": 4355, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Set form control hint" @@ -11747,7 +12154,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 39, "character": 15 } @@ -11758,12 +12165,13 @@ } }, { - "id": 2133, + "id": 4353, "name": "label", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Set form control label" @@ -11780,7 +12188,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 31, "character": 16 } @@ -11791,12 +12199,13 @@ } }, { - "id": 2140, + "id": 4360, "name": "list", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -11812,7 +12221,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 57, "character": 32 } @@ -11823,12 +12232,13 @@ } }, { - "id": 2131, + "id": 4351, "name": "model", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the component model for active selections" @@ -11845,7 +12255,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 23, "character": 16 } @@ -11857,12 +12267,13 @@ "defaultValue": " []" }, { - "id": 2139, + "id": 4359, "name": "modelChange", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Event emitted when model changes" @@ -11879,7 +12290,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 55, "character": 23 } @@ -11897,12 +12308,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2134, + "id": 4354, "name": "name", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Set form control name attribute" @@ -11919,7 +12331,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 35, "character": 15 } @@ -11930,12 +12342,13 @@ } }, { - "id": 2132, + "id": 4352, "name": "options", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Set the dropdown option items" @@ -11952,7 +12365,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 27, "character": 18 } @@ -11961,27 +12374,28 @@ "type": "reference", "isArray": true, "name": "OptionsType", - "id": 152 + "id": 26 } }, { - "id": 2152, + "id": 4372, "name": "isEnterEvent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2153, + "id": 4373, "name": "isEnterEvent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2154, + "id": 4374, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -12000,30 +12414,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 97, "character": 14 } ] }, { - "id": 2146, + "id": 4366, "name": "labelForValue", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2147, + "id": 4367, "name": "labelForValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2148, + "id": 4368, "name": "val", "kind": 32768, "kindString": "Parameter", @@ -12042,30 +12457,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 80, "character": 15 } ] }, { - "id": 2157, + "id": 4377, "name": "modelChanged", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2158, + "id": 4378, "name": "modelChanged", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2159, + "id": 4379, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -12084,23 +12500,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 112, "character": 14 } ] }, { - "id": 2142, + "id": 4362, "name": "ngOnChanges", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2143, + "id": 4363, "name": "ngOnChanges", "kind": 4096, "kindString": "Call signature", @@ -12113,23 +12530,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 61, "character": 13 } ] }, { - "id": 2155, + "id": 4375, "name": "onMoveOutside", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2156, + "id": 4376, "name": "onMoveOutside", "kind": 4096, "kindString": "Call signature", @@ -12142,30 +12560,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 106, "character": 15 } ] }, { - "id": 2149, + "id": 4369, "name": "toggleItemList", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2150, + "id": 4370, "name": "toggleItemList", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2151, + "id": 4371, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -12184,23 +12603,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 87, "character": 16 } ] }, { - "id": 2144, + "id": 4364, "name": "updateLabel", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2145, + "id": 4365, "name": "updateLabel", "kind": 4096, "kindString": "Call signature", @@ -12213,7 +12633,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 65, "character": 13 } @@ -12225,36 +12645,36 @@ "title": "Properties", "kind": 1024, "children": [ - 2138, - 2141, - 2136, - 2137, - 2135, - 2133, - 2140, - 2131, - 2139, - 2134, - 2132 + 4358, + 4361, + 4356, + 4357, + 4355, + 4353, + 4360, + 4351, + 4359, + 4354, + 4352 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2152, - 2146, - 2157, - 2142, - 2155, - 2149, - 2144 + 4372, + 4366, + 4377, + 4362, + 4375, + 4369, + 4364 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 19, "character": 44 } @@ -12272,52 +12692,55 @@ "title": "Classes", "kind": 128, "children": [ - 2130 + 4350 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2195, - "name": "\"sam-ui-elements/src/ui-kit/components/pagination/index\"", + "id": 4415, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/pagination/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/pagination/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/pagination/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2161, - "name": "\"sam-ui-elements/src/ui-kit/components/pagination/pagination.component\"", + "id": 4381, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "children": [ { - "id": 2162, + "id": 4382, "name": "SamPaginationComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The allows users to select a page" @@ -12336,12 +12759,13 @@ ], "children": [ { - "id": 2167, + "id": 4387, "name": "currentPage", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Shows the current page number" @@ -12358,7 +12782,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 23, "character": 20 } @@ -12369,12 +12793,13 @@ } }, { - "id": 2166, + "id": 4386, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the disabled status of the component, defaults to false" @@ -12391,7 +12816,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 19, "character": 19 } @@ -12403,17 +12828,18 @@ "defaultValue": "false" }, { - "id": 2164, + "id": 4384, "name": "ellipsisThreshold", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 13, "character": 27 } @@ -12425,17 +12851,18 @@ "defaultValue": "6" }, { - "id": 2163, + "id": 4383, "name": "maxPagesBeforeOrAfterCurrent", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 12, "character": 38 } @@ -12447,17 +12874,18 @@ "defaultValue": "3" }, { - "id": 2165, + "id": 4385, "name": "maxTotalPageWithoutEllipsis", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 14, "character": 37 } @@ -12469,12 +12897,13 @@ "defaultValue": "10" }, { - "id": 2169, + "id": 4389, "name": "pageChange", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Event emitted when current page is changed" @@ -12491,7 +12920,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 31, "character": 22 } @@ -12509,12 +12938,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2168, + "id": 4388, "name": "totalPages", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Shows the number of total pages" @@ -12531,7 +12961,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 27, "character": 21 } @@ -12542,16 +12972,17 @@ } }, { - "id": 2170, + "id": 4390, "name": "consecutivePageRange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2171, + "id": 4391, "name": "consecutivePageRange", "kind": 4096, "kindString": "Call signature", @@ -12570,30 +13001,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 34, "character": 22 } ] }, { - "id": 2192, + "id": 4412, "name": "getAriaLabel", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2193, + "id": 4413, "name": "getAriaLabel", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2194, + "id": 4414, "name": "i", "kind": 32768, "kindString": "Parameter", @@ -12621,23 +13053,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 102, "character": 14 } ] }, { - "id": 2175, + "id": 4395, "name": "onNextClick", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2176, + "id": 4396, "name": "onNextClick", "kind": 4096, "kindString": "Call signature", @@ -12650,30 +13083,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 69, "character": 13 } ] }, { - "id": 2172, + "id": 4392, "name": "onPageClick", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2173, + "id": 4393, "name": "onPageClick", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2174, + "id": 4394, "name": "pageNumber", "kind": 32768, "kindString": "Parameter", @@ -12692,23 +13126,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 64, "character": 13 } ] }, { - "id": 2177, + "id": 4397, "name": "onPreviousClick", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2178, + "id": 4398, "name": "onPreviousClick", "kind": 4096, "kindString": "Call signature", @@ -12721,23 +13156,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 73, "character": 17 } ] }, { - "id": 2187, + "id": 4407, "name": "showFirstEllipsis", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2188, + "id": 4408, "name": "showFirstEllipsis", "kind": 4096, "kindString": "Call signature", @@ -12750,23 +13186,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 93, "character": 19 } ] }, { - "id": 2183, + "id": 4403, "name": "showLastButton", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2184, + "id": 4404, "name": "showLastButton", "kind": 4096, "kindString": "Call signature", @@ -12779,23 +13216,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 85, "character": 16 } ] }, { - "id": 2185, + "id": 4405, "name": "showLastEllipsis", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2186, + "id": 4406, "name": "showLastEllipsis", "kind": 4096, "kindString": "Call signature", @@ -12808,23 +13246,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 89, "character": 18 } ] }, { - "id": 2181, + "id": 4401, "name": "showNext", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2182, + "id": 4402, "name": "showNext", "kind": 4096, "kindString": "Call signature", @@ -12837,23 +13276,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 81, "character": 10 } ] }, { - "id": 2179, + "id": 4399, "name": "showPrevious", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2180, + "id": 4400, "name": "showPrevious", "kind": 4096, "kindString": "Call signature", @@ -12866,30 +13306,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 77, "character": 14 } ] }, { - "id": 2189, + "id": 4409, "name": "textDecoration", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2190, + "id": 4410, "name": "textDecoration", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2191, + "id": 4411, "name": "i", "kind": 32768, "kindString": "Parameter", @@ -12917,7 +13358,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 98, "character": 16 } @@ -12929,36 +13370,36 @@ "title": "Properties", "kind": 1024, "children": [ - 2167, - 2166, - 2164, - 2163, - 2165, - 2169, - 2168 + 4387, + 4386, + 4384, + 4383, + 4385, + 4389, + 4388 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2170, - 2192, - 2175, - 2172, - 2177, - 2187, - 2183, - 2185, - 2181, - 2179, - 2189 + 4390, + 4412, + 4395, + 4392, + 4397, + 4407, + 4403, + 4405, + 4401, + 4399, + 4409 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 10, "character": 35 } @@ -12970,52 +13411,55 @@ "title": "Classes", "kind": 128, "children": [ - 2162 + 4382 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2227, - "name": "\"sam-ui-elements/src/ui-kit/components/point-of-contact/index\"", + "id": 4419, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/point-of-contact/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/point-of-contact/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/point-of-contact/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/point-of-contact/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/point-of-contact/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2224, - "name": "\"sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component\"", + "id": 4416, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component.ts", "children": [ { - "id": 2225, + "id": 4417, "name": "SamPointOfContactComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component outputs Point of Contact information" @@ -13034,12 +13478,13 @@ ], "children": [ { - "id": 2226, + "id": 4418, "name": "data", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Populates the component with the provided data" @@ -13056,7 +13501,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component.ts", "line": 14, "character": 15 } @@ -13064,7 +13509,7 @@ "type": { "type": "reference", "name": "PointOfContactType", - "id": 202 + "id": 76 } } ], @@ -13073,13 +13518,13 @@ "title": "Properties", "kind": 1024, "children": [ - 2226 + 4418 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component.ts", "line": 10, "character": 39 } @@ -13091,35 +13536,37 @@ "title": "Classes", "kind": 128, "children": [ - 2225 + 4417 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2228, - "name": "\"sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component\"", + "id": 4420, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", "children": [ { - "id": 2229, + "id": 4421, "name": "SamProgress", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -13135,12 +13582,13 @@ ], "children": [ { - "id": 2231, + "id": 4423, "name": "max", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the max progress value" @@ -13157,7 +13605,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", "line": 34, "character": 14 } @@ -13169,12 +13617,13 @@ "defaultValue": "1" }, { - "id": 2230, + "id": 4422, "name": "value", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the current progress value" @@ -13191,7 +13640,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", "line": 30, "character": 16 } @@ -13208,14 +13657,14 @@ "title": "Properties", "kind": 1024, "children": [ - 2231, - 2230 + 4423, + 4422 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", "line": 26, "character": 24 } @@ -13227,69 +13676,73 @@ "title": "Classes", "kind": 128, "children": [ - 2229 + 4421 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2327, - "name": "\"sam-ui-elements/src/ui-kit/components/sidenav/index\"", + "id": 4519, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/sidenav/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/sidenav/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/sidenav/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2259, - "name": "\"sam-ui-elements/src/ui-kit/components/sidenav/interfaces\"", + "id": 4451, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/sidenav/interfaces\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", "children": [ { - "id": 2260, + "id": 4452, "name": "MenuItem", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Interface for Sam Sidenav Component\nLabel is the visible text for each menu item\nRoute is an optional parameter for the path for your router. Routes will be\nconcatenated as lower levels are of the sidenav are clicked. Routes should\ninclude a leading '/' if it is a child route or '#' if it is an anchor.\nChildren is an array of MenuItems that will be displayed as a child list\nwhen the parent is clicked in the sidenav." }, "children": [ { - "id": 2264, + "id": 4456, "name": "children", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", "line": 14, "character": 10 } @@ -13298,21 +13751,22 @@ "type": "reference", "isArray": true, "name": "MenuItem", - "id": 2260 + "id": 4452 } }, { - "id": 2263, + "id": 4455, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", "line": 13, "character": 10 } @@ -13323,17 +13777,18 @@ } }, { - "id": 2265, + "id": 4457, "name": "iconClass", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", "line": 15, "character": 11 } @@ -13344,16 +13799,17 @@ } }, { - "id": 2261, + "id": 4453, "name": "label", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", "line": 11, "character": 7 } @@ -13364,17 +13820,18 @@ } }, { - "id": 2262, + "id": 4454, "name": "route", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", "line": 12, "character": 7 } @@ -13390,17 +13847,17 @@ "title": "Properties", "kind": 1024, "children": [ - 2264, - 2263, - 2265, - 2261, - 2262 + 4456, + 4455, + 4457, + 4453, + 4454 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", "line": 10, "character": 25 } @@ -13412,52 +13869,55 @@ "title": "Interfaces", "kind": 256, "children": [ - 2260 + 4452 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", "line": 1, "character": 0 } ] }, { - "id": 2287, - "name": "\"sam-ui-elements/src/ui-kit/components/sidenav/menu-item/index\"", + "id": 4479, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/menu-item/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2266, - "name": "\"sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component\"", + "id": 4458, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", "children": [ { - "id": 2267, + "id": 4459, "name": "SamMenuItemComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -13473,23 +13933,24 @@ ], "children": [ { - "id": 2272, + "id": 4464, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2274, + "id": 4466, "name": "new SamMenuItemComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2275, + "id": 4467, "name": "service", "kind": 32768, "kindString": "Parameter", @@ -13497,32 +13958,33 @@ "type": { "type": "reference", "name": "SidenavService", - "id": 2233 + "id": 4425 } } ], "type": { "type": "reference", "name": "SamMenuItemComponent", - "id": 2267 + "id": 4459 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", "line": 25, "character": 67 } ] }, { - "id": 2268, + "id": 4460, "name": "children", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets additional children in menu item" @@ -13539,7 +14001,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", "line": 13, "character": 19 } @@ -13548,16 +14010,17 @@ "type": "reference", "isArray": true, "name": "MenuItem", - "id": 2260 + "id": 4452 } }, { - "id": 2270, + "id": 4462, "name": "data", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "(deprecated) Emits when an item has been selected" @@ -13574,7 +14037,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", "line": 21, "character": 16 } @@ -13592,12 +14055,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2269, + "id": 4461, "name": "nodeDepth", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Indicates how deep this menu item is in the tree" @@ -13614,7 +14078,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", "line": 17, "character": 20 } @@ -13625,12 +14089,13 @@ } }, { - "id": 2271, + "id": 4463, "name": "selection", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emits when an item has been selected" @@ -13647,7 +14112,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", "line": 25, "character": 21 } @@ -13665,18 +14130,19 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2273, + "id": 4465, "name": "service", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", "line": 27, "character": 29 } @@ -13684,27 +14150,28 @@ "type": { "type": "reference", "name": "SidenavService", - "id": 2233 + "id": 4425 } }, { - "id": 2284, + "id": 4476, "name": "emitSelectedChild", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2285, + "id": 4477, "name": "emitSelectedChild", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2286, + "id": 4478, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -13723,30 +14190,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", "line": 43, "character": 19 } ] }, { - "id": 2281, + "id": 4473, "name": "isSelected", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2282, + "id": 4474, "name": "isSelected", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2283, + "id": 4475, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -13765,30 +14233,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", "line": 39, "character": 12 } ] }, { - "id": 2276, + "id": 4468, "name": "updateUI", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2277, + "id": 4469, "name": "updateUI", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2278, + "id": 4470, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -13799,7 +14268,7 @@ } }, { - "id": 2279, + "id": 4471, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -13810,7 +14279,7 @@ } }, { - "id": 2280, + "id": 4472, "name": "menuItem", "kind": 32768, "kindString": "Parameter", @@ -13818,7 +14287,7 @@ "type": { "type": "reference", "name": "MenuItem", - "id": 2260 + "id": 4452 } } ], @@ -13830,7 +14299,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", "line": 29, "character": 10 } @@ -13842,33 +14311,33 @@ "title": "Constructors", "kind": 512, "children": [ - 2272 + 4464 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2268, - 2270, - 2269, - 2271, - 2273 + 4460, + 4462, + 4461, + 4463, + 4465 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2284, - 2281, - 2276 + 4476, + 4473, + 4468 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", "line": 9, "character": 33 } @@ -13880,52 +14349,55 @@ "title": "Classes", "kind": 128, "children": [ - 2267 + 4459 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2258, - "name": "\"sam-ui-elements/src/ui-kit/components/sidenav/services/index\"", + "id": 4450, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/sidenav/services/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2232, - "name": "\"sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service\"", + "id": 4424, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", "children": [ { - "id": 2233, + "id": 4425, "name": "SidenavService", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -13939,17 +14411,18 @@ ], "children": [ { - "id": 2236, + "id": 4428, "name": "children", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", "line": 9, "character": 18 } @@ -13961,17 +14434,18 @@ } }, { - "id": 2234, + "id": 4426, "name": "indexArray", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", "line": 7, "character": 20 } @@ -13984,17 +14458,18 @@ "defaultValue": " []" }, { - "id": 2237, + "id": 4429, "name": "model", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", "line": 10, "character": 15 } @@ -14005,17 +14480,18 @@ } }, { - "id": 2235, + "id": 4427, "name": "path", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", "line": 8, "character": 14 } @@ -14026,16 +14502,17 @@ } }, { - "id": 2244, + "id": 4436, "name": "getData", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2245, + "id": 4437, "name": "getData", "kind": 4096, "kindString": "Call signature", @@ -14049,23 +14526,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", "line": 20, "character": 9 } ] }, { - "id": 2256, + "id": 4448, "name": "getPath", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2257, + "id": 4449, "name": "getPath", "kind": 4096, "kindString": "Call signature", @@ -14078,23 +14556,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", "line": 50, "character": 9 } ] }, { - "id": 2254, + "id": 4446, "name": "getSelectedModel", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2255, + "id": 4447, "name": "getSelectedModel", "kind": 4096, "kindString": "Call signature", @@ -14107,30 +14586,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", "line": 41, "character": 18 } ] }, { - "id": 2250, + "id": 4442, "name": "overrideData", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2251, + "id": 4443, "name": "overrideData", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2252, + "id": 4444, "name": "nodeDepth", "kind": 32768, "kindString": "Parameter", @@ -14141,7 +14621,7 @@ } }, { - "id": 2253, + "id": 4445, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -14160,30 +14640,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", "line": 33, "character": 14 } ] }, { - "id": 2238, + "id": 4430, "name": "setChildren", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2239, + "id": 4431, "name": "setChildren", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2240, + "id": 4432, "name": "children", "kind": 32768, "kindString": "Parameter", @@ -14204,30 +14685,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", "line": 12, "character": 13 } ] }, { - "id": 2241, + "id": 4433, "name": "setModel", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2242, + "id": 4434, "name": "setModel", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2243, + "id": 4435, "name": "model", "kind": 32768, "kindString": "Parameter", @@ -14246,30 +14728,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", "line": 16, "character": 10 } ] }, { - "id": 2246, + "id": 4438, "name": "updateData", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2247, + "id": 4439, "name": "updateData", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2248, + "id": 4440, "name": "nodeDepth", "kind": 32768, "kindString": "Parameter", @@ -14280,7 +14763,7 @@ } }, { - "id": 2249, + "id": 4441, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -14299,7 +14782,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", "line": 24, "character": 12 } @@ -14311,29 +14794,29 @@ "title": "Properties", "kind": 1024, "children": [ - 2236, - 2234, - 2237, - 2235 + 4428, + 4426, + 4429, + 4427 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2244, - 2256, - 2254, - 2250, - 2238, - 2241, - 2246 + 4436, + 4448, + 4446, + 4442, + 4430, + 4433, + 4438 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", "line": 5, "character": 27 } @@ -14345,216 +14828,55 @@ "title": "Classes", "kind": 128, "children": [ - 2233 + 4425 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", "line": 1, "character": 0 } ] }, { - "id": 3228, - "name": "\"sam-ui-elements/src/ui-kit/components/sidenav/services/testdata\"", + "id": 4518, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/sidenav/services/testdata.ts", - "children": [ - { - "id": 3229, - "name": "data", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 3231, - "name": "children", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/testdata.ts", - "line": 3, - "character": 10 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 3232, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 3233, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/testdata.ts", - "line": 61, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Item 3\"" - }, - { - "id": 3234, - "name": "route", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/testdata.ts", - "line": 62, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"/baz\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3233, - 3234 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n label: 'Item 1',\n route: '/foo',\n children: [\n {\n label: 'Child 1',\n route: '/lorem',\n children: [\n {\n label: 'Grandchild 1',\n route: '/sit'\n },\n {\n label: 'Grandchild 2',\n route: '/amet'\n },\n {\n label: 'Grandchild 3',\n route: '/consectetur'\n }\n ]\n },\n {\n label: 'Child 2',\n route: '/ipsum',\n children: [\n {\n label: 'Grandchild 1',\n route: '/adipisicings'\n }\n ]\n },\n {\n label: 'Child 3',\n route: '/dolor'\n }\n ]\n },\n {\n label: 'Item 2',\n route: '/bar',\n children: [\n {\n label: 'Child 1',\n route: '/elit'\n },\n {\n label: 'Child 2',\n route: '/cumque'\n },\n {\n label: 'Child 3',\n route: '/dignissimos'\n }\n ]\n },\n {\n label: 'Item 3',\n route: '/baz'\n }\n ]" - }, - { - "id": 3230, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/testdata.ts", - "line": 2, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"stuff\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3231, - 3230 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/testdata.ts", - "line": 1, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 3229 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/services/testdata.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 2326, - "name": "\"sam-ui-elements/src/ui-kit/components/sidenav/sidenav/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2288, - "name": "\"sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component\"", + "id": 4480, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "children": [ { - "id": 2289, + "id": 4481, "name": "SamSidenavComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component builds a side navigation bar" @@ -14573,23 +14895,24 @@ ], "children": [ { - "id": 2297, + "id": 4489, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2299, + "id": 4491, "name": "new SamSidenavComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2300, + "id": 4492, "name": "service", "kind": 32768, "kindString": "Parameter", @@ -14597,32 +14920,33 @@ "type": { "type": "reference", "name": "SidenavService", - "id": 2233 + "id": 4425 } } ], "type": { "type": "reference", "name": "SamSidenavComponent", - "id": 2289 + "id": 4481 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 51, "character": 67 } ] }, { - "id": 2294, + "id": 4486, "name": "data", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "(deprecated) Event emitted on interaction, returns the selected menu item" @@ -14639,7 +14963,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 43, "character": 16 } @@ -14657,12 +14981,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2291, + "id": 4483, "name": "labelLookup", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets active selection in menu by matching to a label defined in the model" @@ -14679,7 +15004,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 30, "character": 22 } @@ -14690,12 +15015,13 @@ } }, { - "id": 2292, + "id": 4484, "name": "model", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Object that defines the sidenav labels, routes, and structure" @@ -14712,7 +15038,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 34, "character": 16 } @@ -14720,16 +15046,17 @@ "type": { "type": "reference", "name": "MenuItem", - "id": 2260 + "id": 4452 } }, { - "id": 2293, + "id": 4485, "name": "path", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "(deprecated) Event emitted on interaction, returns the selected menu\nitem's path value" @@ -14746,7 +15073,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 39, "character": 16 } @@ -14764,12 +15091,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2295, + "id": 4487, "name": "pathChange", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Event emitted on interaction, returns the selected menu item's path value" @@ -14786,7 +15114,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 47, "character": 22 } @@ -14804,12 +15132,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2296, + "id": 4488, "name": "selection", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Event emitted on interaction, returns the selected menu item" @@ -14826,7 +15155,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 51, "character": 21 } @@ -14844,18 +15173,19 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2298, + "id": 4490, "name": "service", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 53, "character": 29 } @@ -14863,16 +15193,17 @@ "type": { "type": "reference", "name": "SidenavService", - "id": 2233 + "id": 4425 } }, { - "id": 2290, + "id": 4482, "name": "type", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets type of side navigation, currently there are two options\n'default' & 'step'" @@ -14889,7 +15220,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 26, "character": 15 } @@ -14900,23 +15231,24 @@ } }, { - "id": 2322, + "id": 4514, "name": "emitChildData", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2323, + "id": 4515, "name": "emitChildData", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2324, + "id": 4516, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -14935,30 +15267,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 128, "character": 15 } ] }, { - "id": 2314, + "id": 4506, "name": "isSelected", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2315, + "id": 4507, "name": "isSelected", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2316, + "id": 4508, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -14977,30 +15310,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 112, "character": 12 } ] }, { - "id": 2306, + "id": 4498, "name": "lookupLabelInModel", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2307, + "id": 4499, "name": "lookupLabelInModel", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2308, + "id": 4500, "name": "list", "kind": 32768, "kindString": "Parameter", @@ -15011,7 +15345,7 @@ } }, { - "id": 2309, + "id": 4501, "name": "lookup", "kind": 32768, "kindString": "Parameter", @@ -15022,7 +15356,7 @@ } }, { - "id": 2310, + "id": 4502, "name": "trail", "kind": 32768, "kindString": "Parameter", @@ -15041,30 +15375,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 85, "character": 20 } ] }, { - "id": 2303, + "id": 4495, "name": "ngOnChanges", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2304, + "id": 4496, "name": "ngOnChanges", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2305, + "id": 4497, "name": "c", "kind": 32768, "kindString": "Parameter", @@ -15083,23 +15418,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 72, "character": 13 } ] }, { - "id": 2301, + "id": 4493, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2302, + "id": 4494, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -15112,30 +15448,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 55, "character": 10 } ] }, { - "id": 2311, + "id": 4503, "name": "setSelection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2312, + "id": 4504, "name": "setSelection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2313, + "id": 4505, "name": "selection", "kind": 32768, "kindString": "Parameter", @@ -15154,30 +15491,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 105, "character": 14 } ] }, { - "id": 2317, + "id": 4509, "name": "updateUI", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2318, + "id": 4510, "name": "updateUI", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2319, + "id": 4511, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -15188,7 +15526,7 @@ } }, { - "id": 2320, + "id": 4512, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -15199,7 +15537,7 @@ } }, { - "id": 2321, + "id": 4513, "name": "menuItem", "kind": 32768, "kindString": "Parameter", @@ -15207,7 +15545,7 @@ "type": { "type": "reference", "name": "MenuItem", - "id": 2260 + "id": 4452 } } ], @@ -15219,7 +15557,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 116, "character": 10 } @@ -15231,40 +15569,40 @@ "title": "Constructors", "kind": 512, "children": [ - 2297 + 4489 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2294, - 2291, - 2292, - 2293, - 2295, - 2296, - 2298, - 2290 + 4486, + 4483, + 4484, + 4485, + 4487, + 4488, + 4490, + 4482 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2322, - 2314, - 2306, - 2303, - 2301, - 2311, - 2317 + 4514, + 4506, + 4498, + 4495, + 4493, + 4503, + 4509 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 21, "character": 32 } @@ -15277,12 +15615,13 @@ ] }, { - "id": 2325, + "id": 4517, "name": "SamSidenavModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -15298,7 +15637,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 143, "character": 29 } @@ -15310,53 +15649,56 @@ "title": "Classes", "kind": 128, "children": [ - 2289, - 2325 + 4481, + 4517 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2330, - "name": "\"sam-ui-elements/src/ui-kit/components/spinner/index\"", + "id": 4522, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/spinner/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/spinner/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/spinner/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/spinner/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/spinner/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2328, - "name": "\"sam-ui-elements/src/ui-kit/components/spinner/spinner.component\"", + "id": 4520, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/spinner/spinner.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/spinner/spinner.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/spinner/spinner.component.ts", "children": [ { - "id": 2329, + "id": 4521, "name": "SamSpinnerComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -15366,13 +15708,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-spinner',\n template: ``,\n}" + "obj": "{\n selector: 'sam-spinner',\n template: ``,\n}" } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/spinner/spinner.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/spinner/spinner.component.ts", "line": 7, "character": 32 } @@ -15384,52 +15726,55 @@ "title": "Classes", "kind": 128, "children": [ - 2329 + 4521 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/spinner/spinner.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/spinner/spinner.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2371, - "name": "\"sam-ui-elements/src/ui-kit/components/tabs/index\"", + "id": 4563, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/tabs/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/tabs/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/tabs/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2331, - "name": "\"sam-ui-elements/src/ui-kit/components/tabs/tabs.component\"", + "id": 4523, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "children": [ { - "id": 2332, + "id": 4524, "name": "SamTabComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component contains the content for a tab" @@ -15448,12 +15793,13 @@ ], "children": [ { - "id": 2334, + "id": 4526, "name": "active", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Set tab active class, defaults to false" @@ -15470,7 +15816,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 32, "character": 17 } @@ -15482,12 +15828,13 @@ "defaultValue": "false" }, { - "id": 2335, + "id": 4527, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Set tab disabled class, defaults to false" @@ -15504,7 +15851,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 36, "character": 19 } @@ -15516,12 +15863,13 @@ "defaultValue": "false" }, { - "id": 2336, + "id": 4528, "name": "float", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Set if tab is a floating action button" @@ -15538,7 +15886,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 40, "character": 16 } @@ -15550,12 +15898,13 @@ "defaultValue": "false" }, { - "id": 2333, + "id": 4525, "name": "title", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Set tab text" @@ -15574,7 +15923,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 28, "character": 26 } @@ -15590,28 +15939,29 @@ "title": "Properties", "kind": 1024, "children": [ - 2334, - 2335, - 2336, - 2333 + 4526, + 4527, + 4528, + 4525 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 24, "character": 28 } ] }, { - "id": 2337, + "id": 4529, "name": "SamTabsComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component is a wrapper for navigating through and\ndisplaying tabs" @@ -15630,23 +15980,24 @@ ], "children": [ { - "id": 2356, + "id": 4548, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2358, + "id": 4550, "name": "new SamTabsComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2359, + "id": 4551, "name": "cdr", "kind": 32768, "kindString": "Parameter", @@ -15660,30 +16011,31 @@ "type": { "type": "reference", "name": "SamTabsComponent", - "id": 2337 + "id": 4529 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 123, "character": 4 } ] }, { - "id": 2351, + "id": 4543, "name": "_size", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 118, "character": 15 } @@ -15695,17 +16047,18 @@ "defaultValue": "\"large\"" }, { - "id": 2352, + "id": 4544, "name": "_theme", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 119, "character": 16 } @@ -15717,12 +16070,13 @@ "defaultValue": "\"default\"" }, { - "id": 2347, + "id": 4539, "name": "active", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the active tab" @@ -15739,7 +16093,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 103, "character": 17 } @@ -15751,12 +16105,13 @@ "defaultValue": " -1" }, { - "id": 2348, + "id": 4540, "name": "activeChange", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emits change on active tab index" @@ -15773,7 +16128,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 108, "character": 24 } @@ -15791,18 +16146,19 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2357, + "id": 4549, "name": "cdr", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 126, "character": 25 } @@ -15813,12 +16169,13 @@ } }, { - "id": 2349, + "id": 4541, "name": "currentSelectedTab", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "(deprecated) Event emitted on tab selection" @@ -15835,7 +16192,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 112, "character": 30 } @@ -15853,12 +16210,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2350, + "id": 4542, "name": "tabChange", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Event emitted on tab selection" @@ -15875,7 +16233,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 116, "character": 21 } @@ -15893,12 +16251,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2338, + "id": 4530, "name": "tabs", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -15914,7 +16273,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 70, "character": 40 } @@ -15926,18 +16285,19 @@ { "type": "reference", "name": "SamTabComponent", - "id": 2332 + "id": 4524 } ] } }, { - "id": 2339, + "id": 4531, "name": "size", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Set tabs size" @@ -15954,7 +16314,7 @@ ], "getSignature": [ { - "id": 2342, + "id": 4534, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -15970,7 +16330,7 @@ ], "setSignature": [ { - "id": 2340, + "id": 4532, "name": "__set", "kind": 1048576, "kindString": "Set signature", @@ -15980,7 +16340,7 @@ }, "parameters": [ { - "id": 2341, + "id": 4533, "name": "key", "kind": 32768, "kindString": "Parameter", @@ -15999,24 +16359,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 76, "character": 10 }, { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 82, "character": 10 } ] }, { - "id": 2343, + "id": 4535, "name": "theme", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Set tabs theme" @@ -16033,7 +16394,7 @@ ], "getSignature": [ { - "id": 2346, + "id": 4538, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -16049,7 +16410,7 @@ ], "setSignature": [ { - "id": 2344, + "id": 4536, "name": "__set", "kind": 1048576, "kindString": "Set signature", @@ -16059,7 +16420,7 @@ }, "parameters": [ { - "id": 2345, + "id": 4537, "name": "key", "kind": 32768, "kindString": "Parameter", @@ -16078,28 +16439,29 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 90, "character": 11 }, { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 96, "character": 11 } ] }, { - "id": 2360, + "id": 4552, "name": "_setActiveTab", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2361, + "id": 4553, "name": "_setActiveTab", "kind": 4096, "kindString": "Call signature", @@ -16112,23 +16474,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 128, "character": 15 } ] }, { - "id": 2365, + "id": 4557, "name": "ngAfterContentInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2366, + "id": 4558, "name": "ngAfterContentInit", "kind": 4096, "kindString": "Call signature", @@ -16141,30 +16504,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 144, "character": 20 } ] }, { - "id": 2362, + "id": 4554, "name": "ngOnChanges", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2363, + "id": 4555, "name": "ngOnChanges", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2364, + "id": 4556, "name": "c", "kind": 32768, "kindString": "Parameter", @@ -16183,30 +16547,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 138, "character": 13 } ] }, { - "id": 2367, + "id": 4559, "name": "selectTab", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2368, + "id": 4560, "name": "selectTab", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2369, + "id": 4561, "name": "tab", "kind": 32768, "kindString": "Parameter", @@ -16214,11 +16579,11 @@ "type": { "type": "reference", "name": "SamTabComponent", - "id": 2332 + "id": 4524 } }, { - "id": 2370, + "id": 4562, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -16237,33 +16602,35 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 167, "character": 11 } ] }, { - "id": 2353, + "id": 4545, "name": "themes", "kind": 2097152, "kindString": "Object literal", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 2354, + "id": 4546, "name": "default", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 121, "character": 11 } @@ -16275,16 +16642,17 @@ "defaultValue": "\"secondary pointing\"" }, { - "id": 2355, + "id": 4547, "name": "separate", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 122, "character": 12 } @@ -16301,14 +16669,14 @@ "title": "Variables", "kind": 32, "children": [ - 2354, - 2355 + 4546, + 4547 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 120, "character": 16 } @@ -16324,52 +16692,52 @@ "title": "Constructors", "kind": 512, "children": [ - 2356 + 4548 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2351, - 2352, - 2347, - 2348, - 2357, - 2349, - 2350, - 2338 + 4543, + 4544, + 4539, + 4540, + 4549, + 4541, + 4542, + 4530 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 2339, - 2343 + 4531, + 4535 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2360, - 2365, - 2362, - 2367 + 4552, + 4557, + 4554, + 4559 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 2353 + 4545 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 69, "character": 29 } @@ -16387,56 +16755,59 @@ "title": "Classes", "kind": 128, "children": [ - 2332, - 2337 + 4524, + 4529 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2372, - "name": "\"sam-ui-elements/src/ui-kit/components/upload/upload.component\"", + "id": 4564, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "children": [ { - "id": 2480, + "id": 4672, "name": "UploadValidator", "kind": 2, "kindString": "Module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 2481, + "id": 4673, "name": "Required", "kind": 64, "kindString": "Function", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2482, + "id": 4674, "name": "Required", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2483, + "id": 4675, "name": "control", "kind": 32768, "kindString": "Parameter", @@ -16450,21 +16821,23 @@ "type": { "type": "reflection", "declaration": { - "id": 2484, + "id": 4676, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 2485, + "id": 4677, "name": "required", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 49, "character": 16 } @@ -16481,7 +16854,7 @@ "title": "Variables", "kind": 32, "children": [ - 2485 + 4677 ] } ] @@ -16491,7 +16864,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 47, "character": 26 } @@ -16503,86 +16876,91 @@ "title": "Functions", "kind": 64, "children": [ - 2481 + 4673 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 46, "character": 32 } ] }, { - "id": 2373, + "id": 4565, "name": "UploadStatus", "kind": 4, "kindString": "Enumeration", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 2376, + "id": 4568, "name": "Done", "kind": 16, "kindString": "Enumeration member", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 19, "character": 6 } ] }, { - "id": 2377, + "id": 4569, "name": "Error", "kind": 16, "kindString": "Enumeration member", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 20, "character": 7 } ] }, { - "id": 2374, + "id": 4566, "name": "Initial", "kind": 16, "kindString": "Enumeration member", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 17, "character": 9 } ] }, { - "id": 2375, + "id": 4567, "name": "Uploading", "kind": 16, "kindString": "Enumeration member", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 18, "character": 11 } @@ -16594,28 +16972,29 @@ "title": "Enumeration members", "kind": 16, "children": [ - 2376, - 2377, - 2374, - 2375 + 4568, + 4569, + 4566, + 4567 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 16, "character": 24 } ] }, { - "id": 2387, + "id": 4579, "name": "SamUploadComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -16631,23 +17010,24 @@ ], "children": [ { - "id": 2403, + "id": 4595, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2405, + "id": 4597, "name": "new SamUploadComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2406, + "id": 4598, "name": "httpClient", "kind": 32768, "kindString": "Parameter", @@ -16661,30 +17041,31 @@ "type": { "type": "reference", "name": "SamUploadComponent", - "id": 2387 + "id": 4579 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 135, "character": 51 } ] }, { - "id": 2399, + "id": 4591, "name": "_model", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 128, "character": 15 } @@ -16696,19 +17077,20 @@ { "type": "reference", "name": "UploadFile", - "id": 2384 + "id": 4576 } ] }, "defaultValue": " []" }, { - "id": 2392, + "id": 4584, "name": "accept", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -16726,7 +17108,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 103, "character": 24 } @@ -16737,12 +17119,13 @@ } }, { - "id": 2389, + "id": 4581, "name": "deleteRequest", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -16760,7 +17143,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 86, "character": 31 } @@ -16768,21 +17151,22 @@ "type": { "type": "reference", "name": "DeleteRequestGenerator", - "id": 2469 + "id": 4661 } }, { - "id": 2398, + "id": 4590, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 124, "character": 17 } @@ -16794,17 +17178,18 @@ "defaultValue": "false" }, { - "id": 2396, + "id": 4588, "name": "dragState", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 120, "character": 18 } @@ -16812,18 +17197,19 @@ "type": { "type": "reference", "name": "DragState", - "id": 98 + "id": 2647 }, "defaultValue": " DragState.NotDragging" }, { - "id": 2402, + "id": 4594, "name": "fileInput", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -16839,7 +17225,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 135, "character": 38 } @@ -16850,18 +17236,19 @@ } }, { - "id": 2404, + "id": 4596, "name": "httpClient", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 137, "character": 32 } @@ -16872,12 +17259,13 @@ } }, { - "id": 2394, + "id": 4586, "name": "maxFileSizeInBytes", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -16895,7 +17283,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 113, "character": 36 } @@ -16907,12 +17295,13 @@ "defaultValue": "0" }, { - "id": 2390, + "id": 4582, "name": "maxFiles", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -16930,7 +17319,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 92, "character": 26 } @@ -16942,12 +17331,13 @@ "defaultValue": "0" }, { - "id": 2395, + "id": 4587, "name": "name", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -16962,7 +17352,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 118, "character": 22 } @@ -16974,17 +17364,18 @@ "defaultValue": "\"upload\"" }, { - "id": 2400, + "id": 4592, "name": "onChange", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 130, "character": 18 } @@ -16995,17 +17386,18 @@ } }, { - "id": 2401, + "id": 4593, "name": "onTouched", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 132, "character": 19 } @@ -17016,12 +17408,13 @@ } }, { - "id": 2393, + "id": 4585, "name": "pattern", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -17039,7 +17432,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 108, "character": 25 } @@ -17050,17 +17443,18 @@ } }, { - "id": 2397, + "id": 4589, "name": "showMaxFilesError", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 122, "character": 26 } @@ -17072,12 +17466,13 @@ "defaultValue": "false" }, { - "id": 2391, + "id": 4583, "name": "uploadDeferred", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -17095,7 +17490,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 97, "character": 32 } @@ -17107,12 +17502,13 @@ "defaultValue": "false" }, { - "id": 2388, + "id": 4580, "name": "uploadRequest", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -17130,7 +17526,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 79, "character": 31 } @@ -17138,20 +17534,21 @@ "type": { "type": "reference", "name": "RequestGenerator", - "id": 2465 + "id": 4657 } }, { - "id": 2463, + "id": 4655, "name": "_clearInput", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2464, + "id": 4656, "name": "_clearInput", "kind": 4096, "kindString": "Call signature", @@ -17164,30 +17561,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 352, "character": 13 } ] }, { - "id": 2457, + "id": 4649, "name": "_getDeleteRequestForFile", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2458, + "id": 4650, "name": "_getDeleteRequestForFile", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2459, + "id": 4651, "name": "uf", "kind": 32768, "kindString": "Parameter", @@ -17195,7 +17593,7 @@ "type": { "type": "reference", "name": "UploadFile", - "id": 2384 + "id": 4576 } } ], @@ -17246,30 +17644,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 323, "character": 26 } ] }, { - "id": 2460, + "id": 4652, "name": "_getHttpEventSteam", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2461, + "id": 4653, "name": "_getHttpEventSteam", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2462, + "id": 4654, "name": "uf", "kind": 32768, "kindString": "Parameter", @@ -17277,7 +17676,7 @@ "type": { "type": "reference", "name": "UploadFile", - "id": 2384 + "id": 4576 } } ], @@ -17301,23 +17700,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 335, "character": 20 } ] }, { - "id": 2455, + "id": 4647, "name": "_numFilesValid", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2456, + "id": 4648, "name": "_numFilesValid", "kind": 4096, "kindString": "Call signature", @@ -17330,23 +17730,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 317, "character": 16 } ] }, { - "id": 2439, + "id": 4631, "name": "anyFiles", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2440, + "id": 4632, "name": "anyFiles", "kind": 4096, "kindString": "Call signature", @@ -17359,30 +17760,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 286, "character": 10 } ] }, { - "id": 2433, + "id": 4625, "name": "deleteFile", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2434, + "id": 4626, "name": "deleteFile", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2435, + "id": 4627, "name": "uf", "kind": 32768, "kindString": "Parameter", @@ -17390,7 +17792,7 @@ "type": { "type": "reference", "name": "UploadFile", - "id": 2384 + "id": 4576 } } ], @@ -17402,30 +17804,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 269, "character": 12 } ] }, { - "id": 2427, + "id": 4619, "name": "doUpload", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2428, + "id": 4620, "name": "doUpload", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2429, + "id": 4621, "name": "ufs", "kind": 32768, "kindString": "Parameter", @@ -17434,7 +17837,7 @@ "type": "reference", "isArray": true, "name": "UploadFile", - "id": 2384 + "id": 4576 } } ], @@ -17446,23 +17849,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 214, "character": 10 } ] }, { - "id": 2451, + "id": 4643, "name": "emit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2452, + "id": 4644, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -17475,23 +17879,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 309, "character": 6 } ] }, { - "id": 2453, + "id": 4645, "name": "maxFilesErrorMessage", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2454, + "id": 4646, "name": "maxFilesErrorMessage", "kind": 4096, "kindString": "Call signature", @@ -17504,30 +17909,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 313, "character": 22 } ] }, { - "id": 2430, + "id": 4622, "name": "onCloseClick", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2431, + "id": 4623, "name": "onCloseClick", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2432, + "id": 4624, "name": "uf", "kind": 32768, "kindString": "Parameter", @@ -17535,7 +17941,7 @@ "type": { "type": "reference", "name": "UploadFile", - "id": 2384 + "id": 4576 } } ], @@ -17547,30 +17953,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 259, "character": 14 } ] }, { - "id": 2419, + "id": 4611, "name": "onFilesChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2420, + "id": 4612, "name": "onFilesChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2421, + "id": 4613, "name": "files", "kind": 32768, "kindString": "Parameter", @@ -17589,30 +17996,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 162, "character": 15 } ] }, { - "id": 2407, + "id": 4599, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2408, + "id": 4600, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2409, + "id": 4601, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -17631,30 +18039,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 141, "character": 18 } ] }, { - "id": 2410, + "id": 4602, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2411, + "id": 4603, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2412, + "id": 4604, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -17673,30 +18082,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 145, "character": 19 } ] }, { - "id": 2436, + "id": 4628, "name": "removeFileFromList", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2437, + "id": 4629, "name": "removeFileFromList", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2438, + "id": 4630, "name": "uf", "kind": 32768, "kindString": "Parameter", @@ -17704,7 +18114,7 @@ "type": { "type": "reference", "name": "UploadFile", - "id": 2384 + "id": 4576 } } ], @@ -17716,30 +18126,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 278, "character": 20 } ] }, { - "id": 2413, + "id": 4605, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2414, + "id": 4606, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2415, + "id": 4607, "name": "disabled", "kind": 32768, "kindString": "Parameter", @@ -17758,23 +18169,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 149, "character": 18 } ] }, { - "id": 2449, + "id": 4641, "name": "shouldAllowMoreFiles", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2450, + "id": 4642, "name": "shouldAllowMoreFiles", "kind": 4096, "kindString": "Call signature", @@ -17787,23 +18199,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 302, "character": 22 } ] }, { - "id": 2447, + "id": 4639, "name": "shouldShowDropTarget", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2448, + "id": 4640, "name": "shouldShowDropTarget", "kind": 4096, "kindString": "Call signature", @@ -17816,30 +18229,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 298, "character": 22 } ] }, { - "id": 2444, + "id": 4636, "name": "shouldShowError", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2445, + "id": 4637, "name": "shouldShowError", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2446, + "id": 4638, "name": "uf", "kind": 32768, "kindString": "Parameter", @@ -17847,7 +18261,7 @@ "type": { "type": "reference", "name": "UploadFile", - "id": 2384 + "id": 4576 } } ], @@ -17859,30 +18273,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 294, "character": 17 } ] }, { - "id": 2441, + "id": 4633, "name": "shouldShowProgressBar", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2442, + "id": 4634, "name": "shouldShowProgressBar", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2443, + "id": 4635, "name": "uf", "kind": 32768, "kindString": "Parameter", @@ -17890,7 +18305,7 @@ "type": { "type": "reference", "name": "UploadFile", - "id": 2384 + "id": 4576 } } ], @@ -17902,23 +18317,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 290, "character": 23 } ] }, { - "id": 2422, + "id": 4614, "name": "startUpload", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2423, + "id": 4615, "name": "startUpload", "kind": 4096, "kindString": "Call signature", @@ -17931,30 +18347,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 196, "character": 13 } ] }, { - "id": 2424, + "id": 4616, "name": "validateFiles", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2425, + "id": 4617, "name": "validateFiles", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2426, + "id": 4618, "name": "ufs", "kind": 32768, "kindString": "Parameter", @@ -17963,7 +18380,7 @@ "type": "reference", "isArray": true, "name": "UploadFile", - "id": 2384 + "id": 4576 } } ], @@ -17975,30 +18392,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 200, "character": 15 } ] }, { - "id": 2416, + "id": 4608, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2417, + "id": 4609, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2418, + "id": 4610, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -18030,7 +18448,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 153, "character": 12 } @@ -18042,63 +18460,63 @@ "title": "Constructors", "kind": 512, "children": [ - 2403 + 4595 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2399, - 2392, - 2389, - 2398, - 2396, - 2402, - 2404, - 2394, - 2390, - 2395, - 2400, - 2401, - 2393, - 2397, - 2391, - 2388 + 4591, + 4584, + 4581, + 4590, + 4588, + 4594, + 4596, + 4586, + 4582, + 4587, + 4592, + 4593, + 4585, + 4589, + 4583, + 4580 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2463, - 2457, - 2460, - 2455, - 2439, - 2433, - 2427, - 2451, - 2453, - 2430, - 2419, - 2407, - 2410, - 2436, - 2413, - 2449, - 2447, - 2444, - 2441, - 2422, - 2424, - 2416 + 4655, + 4649, + 4652, + 4647, + 4631, + 4625, + 4619, + 4643, + 4645, + 4622, + 4611, + 4599, + 4602, + 4628, + 4605, + 4641, + 4639, + 4636, + 4633, + 4614, + 4616, + 4608 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 73, "character": 31 } @@ -18111,27 +18529,29 @@ ] }, { - "id": 2378, + "id": 4570, "name": "Upload", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 2383, + "id": 4575, "name": "error", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 28, "character": 14 } @@ -18142,17 +18562,18 @@ } }, { - "id": 2380, + "id": 4572, "name": "progress", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 25, "character": 17 } @@ -18164,17 +18585,18 @@ "defaultValue": "0" }, { - "id": 2382, + "id": 4574, "name": "request", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 27, "character": 16 } @@ -18191,17 +18613,18 @@ } }, { - "id": 2381, + "id": 4573, "name": "status", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 26, "character": 15 } @@ -18209,22 +18632,23 @@ "type": { "type": "reference", "name": "UploadStatus", - "id": 2373 + "id": 4565 }, "defaultValue": " UploadStatus.Initial" }, { - "id": 2379, + "id": 4571, "name": "subscription", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 24, "character": 21 } @@ -18240,43 +18664,45 @@ "title": "Properties", "kind": 1024, "children": [ - 2383, - 2380, - 2382, - 2381, - 2379 + 4575, + 4572, + 4574, + 4573, + 4571 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 23, "character": 19 } ] }, { - "id": 2384, + "id": 4576, "name": "UploadFile", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 2385, + "id": 4577, "name": "file", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 32, "character": 13 } @@ -18287,17 +18713,18 @@ } }, { - "id": 2386, + "id": 4578, "name": "upload", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 33, "character": 15 } @@ -18305,7 +18732,7 @@ "type": { "type": "reference", "name": "Upload", - "id": 2378 + "id": 4570 } } ], @@ -18314,30 +18741,31 @@ "title": "Properties", "kind": 1024, "children": [ - 2385, - 2386 + 4577, + 4578 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 31, "character": 23 } ] }, { - "id": 2469, + "id": 4661, "name": "DeleteRequestGenerator", "kind": 4194304, "kindString": "Type alias", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 13, "character": 34 } @@ -18345,21 +18773,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2470, + "id": 4662, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 2471, + "id": 4663, "name": "__call", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2472, + "id": 4664, "name": "uf", "kind": 32768, "kindString": "Parameter", @@ -18367,7 +18795,7 @@ "type": { "type": "reference", "name": "UploadFile", - "id": 2384 + "id": 4576 } } ], @@ -18406,7 +18834,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 13, "character": 36 } @@ -18415,16 +18843,17 @@ } }, { - "id": 2465, + "id": 4657, "name": "RequestGenerator", "kind": 4194304, "kindString": "Type alias", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 11, "character": 28 } @@ -18432,21 +18861,21 @@ "type": { "type": "reflection", "declaration": { - "id": 2466, + "id": 4658, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 2467, + "id": 4659, "name": "__call", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2468, + "id": 4660, "name": "file", "kind": 32768, "kindString": "Parameter", @@ -18492,7 +18921,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 11, "character": 30 } @@ -18501,21 +18930,23 @@ } }, { - "id": 2473, + "id": 4665, "name": "toArray", "kind": 64, "kindString": "Function", - "flags": {}, + "flags": { + "isExternal": true + }, "signatures": [ { - "id": 2474, + "id": 4666, "name": "toArray", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2475, + "id": 4667, "name": "list", "kind": 32768, "kindString": "Parameter", @@ -18534,28 +18965,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 36, "character": 16 } ] }, { - "id": 2476, + "id": 4668, "name": "VALUE_ACCESSOR", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExternal": true + }, "children": [ { - "id": 2479, + "id": 4671, "name": "multi", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 43, "character": 7 } @@ -18567,14 +19002,16 @@ "defaultValue": "true" }, { - "id": 2477, + "id": 4669, "name": "provide", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 41, "character": 9 } @@ -18592,14 +19029,16 @@ "defaultValue": " NG_VALUE_ACCESSOR" }, { - "id": 2478, + "id": 4670, "name": "useExisting", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 42, "character": 13 } @@ -18622,15 +19061,15 @@ "title": "Variables", "kind": 32, "children": [ - 2479, - 2477, - 2478 + 4671, + 4669, + 4670 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 40, "character": 20 } @@ -18646,73 +19085,75 @@ "title": "Modules", "kind": 2, "children": [ - 2480 + 4672 ] }, { "title": "Enumerations", "kind": 4, "children": [ - 2373 + 4565 ] }, { "title": "Classes", "kind": 128, "children": [ - 2387, - 2378, - 2384 + 4579, + 4570, + 4576 ] }, { "title": "Type aliases", "kind": 4194304, "children": [ - 2469, - 2465 + 4661, + 4657 ] }, { "title": "Functions", "kind": 64, "children": [ - 2473 + 4665 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 2476 + 4668 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", "line": 1, "character": 0 } ] }, { - "id": 25, - "name": "\"sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive\"", + "id": 2574, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", "children": [ { - "id": 26, + "id": 2575, "name": "SamClickOutsideDirective", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The directive can detect whether a click is made inside\nthe target" @@ -18731,23 +19172,24 @@ ], "children": [ { - "id": 28, + "id": 2577, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 30, + "id": 2579, "name": "new SamClickOutsideDirective", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 31, + "id": 2580, "name": "_elementRef", "kind": 32768, "kindString": "Parameter", @@ -18761,31 +19203,32 @@ "type": { "type": "reference", "name": "SamClickOutsideDirective", - "id": 26 + "id": 2575 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", "line": 20, "character": 46 } ] }, { - "id": 29, + "id": 2578, "name": "_elementRef", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", "line": 22, "character": 33 } @@ -18796,12 +19239,13 @@ } }, { - "id": 27, + "id": 2576, "name": "clickOutside", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Event emitted when clicked outside the target" @@ -18818,7 +19262,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", "line": 20, "character": 24 } @@ -18836,12 +19280,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 32, + "id": 2581, "name": "onClick", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -18859,14 +19304,14 @@ ], "signatures": [ { - "id": 33, + "id": 2582, "name": "onClick", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 34, + "id": 2583, "name": "targetElement", "kind": 32768, "kindString": "Parameter", @@ -18885,7 +19330,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", "line": 25, "character": 16 } @@ -18897,28 +19342,28 @@ "title": "Constructors", "kind": 512, "children": [ - 28 + 2577 ] }, { "title": "Properties", "kind": 1024, "children": [ - 29, - 27 + 2578, + 2576 ] }, { "title": "Methods", "kind": 2048, "children": [ - 32 + 2581 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", "line": 16, "character": 37 } @@ -18930,80 +19375,85 @@ "title": "Classes", "kind": 128, "children": [ - 26 + 2575 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", "line": 1, "character": 0 } ] }, { - "id": 97, - "name": "\"sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive\"", + "id": 2646, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "children": [ { - "id": 98, + "id": 2647, "name": "DragState", "kind": 4, "kindString": "Enumeration", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 100, + "id": 2649, "name": "DraggingInTarget", "kind": 16, "kindString": "Enumeration member", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 11, "character": 18 } ] }, { - "id": 101, + "id": 2650, "name": "DraggingOutsideTarget", "kind": 16, "kindString": "Enumeration member", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 12, "character": 23 } ] }, { - "id": 99, + "id": 2648, "name": "NotDragging", "kind": 16, "kindString": "Enumeration member", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 10, "character": 13 } @@ -19015,27 +19465,28 @@ "title": "Enumeration members", "kind": 16, "children": [ - 100, - 101, - 99 + 2649, + 2650, + 2648 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 9, "character": 21 } ] }, { - "id": 102, + "id": 2651, "name": "SamDragDropDirective", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -19051,23 +19502,24 @@ ], "children": [ { - "id": 107, + "id": 2656, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 109, + "id": 2658, "name": "new SamDragDropDirective", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 110, + "id": 2659, "name": "_elementRef", "kind": 32768, "kindString": "Parameter", @@ -19081,31 +19533,32 @@ "type": { "type": "reference", "name": "SamDragDropDirective", - "id": 102 + "id": 2651 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 36, "character": 72 } ] }, { - "id": 108, + "id": 2657, "name": "_elementRef", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 38, "character": 33 } @@ -19116,12 +19569,13 @@ } }, { - "id": 103, + "id": 2652, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -19139,7 +19593,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 22, "character": 26 } @@ -19151,12 +19605,13 @@ "defaultValue": "false" }, { - "id": 104, + "id": 2653, "name": "dragState", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -19174,7 +19629,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 27, "character": 27 } @@ -19182,17 +19637,18 @@ "type": { "type": "reference", "name": "DragState", - "id": 98 + "id": 2647 }, "defaultValue": " DragState.NotDragging" }, { - "id": 105, + "id": 2654, "name": "dragStateChange", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -19210,7 +19666,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 31, "character": 34 } @@ -19222,19 +19678,20 @@ { "type": "reference", "name": "DragState", - "id": 98 + "id": 2647 } ] }, "defaultValue": "\n new EventEmitter()" }, { - "id": 106, + "id": 2655, "name": "dropEvent", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -19252,7 +19709,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 36, "character": 28 } @@ -19271,23 +19728,24 @@ "defaultValue": " new EventEmitter()" }, { - "id": 114, + "id": 2663, "name": "_eventHasFiles", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 115, + "id": 2664, "name": "_eventHasFiles", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 116, + "id": 2665, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -19306,30 +19764,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 44, "character": 16 } ] }, { - "id": 111, + "id": 2660, "name": "_eventIsInTarget", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 112, + "id": 2661, "name": "_eventIsInTarget", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 113, + "id": 2662, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -19348,30 +19807,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 40, "character": 18 } ] }, { - "id": 117, + "id": 2666, "name": "_eventIsInTargetWithFiles", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 118, + "id": 2667, "name": "_eventIsInTargetWithFiles", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 119, + "id": 2668, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -19390,30 +19850,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 50, "character": 27 } ] }, { - "id": 120, + "id": 2669, "name": "_updateDragState", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 121, + "id": 2670, "name": "_updateDragState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 122, + "id": 2671, "name": "dragState", "kind": 32768, "kindString": "Parameter", @@ -19421,7 +19882,7 @@ "type": { "type": "reference", "name": "DragState", - "id": 98 + "id": 2647 } } ], @@ -19433,19 +19894,20 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 54, "character": 18 } ] }, { - "id": 126, + "id": 2675, "name": "onWindowDragOver", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -19463,14 +19925,14 @@ ], "signatures": [ { - "id": 127, + "id": 2676, "name": "onWindowDragOver", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 128, + "id": 2677, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -19489,19 +19951,20 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 77, "character": 70 } ] }, { - "id": 129, + "id": 2678, "name": "onWindowDragend", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -19518,14 +19981,14 @@ ], "signatures": [ { - "id": 130, + "id": 2679, "name": "onWindowDragend", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 131, + "id": 2680, "name": "$event", "kind": 32768, "kindString": "Parameter", @@ -19544,19 +20007,20 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 97, "character": 57 } ] }, { - "id": 123, + "id": 2672, "name": "onWindowDrop", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -19574,14 +20038,14 @@ ], "signatures": [ { - "id": 124, + "id": 2673, "name": "onWindowDrop", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 125, + "id": 2674, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -19600,7 +20064,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 59, "character": 62 } @@ -19612,37 +20076,37 @@ "title": "Constructors", "kind": 512, "children": [ - 107 + 2656 ] }, { "title": "Properties", "kind": 1024, "children": [ - 108, - 103, - 104, - 105, - 106 + 2657, + 2652, + 2653, + 2654, + 2655 ] }, { "title": "Methods", "kind": 2048, "children": [ - 114, - 111, - 117, - 120, - 126, - 129, - 123 + 2663, + 2660, + 2666, + 2669, + 2675, + 2678, + 2672 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 18, "character": 33 } @@ -19654,42 +20118,44 @@ "title": "Enumerations", "kind": 4, "children": [ - 98 + 2647 ] }, { "title": "Classes", "kind": 128, "children": [ - 102 + 2651 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", "line": 1, "character": 0 } ] }, { - "id": 84, - "name": "\"sam-ui-elements/src/ui-kit/directives/focus/focus.directive\"", + "id": 2633, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/directives/focus/focus.directive\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", "children": [ { - "id": 85, + "id": 2634, "name": "SamFocusDirective", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -19705,23 +20171,24 @@ ], "children": [ { - "id": 87, + "id": 2636, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 89, + "id": 2638, "name": "new SamFocusDirective", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 90, + "id": 2639, "name": "_elementRef", "kind": 32768, "kindString": "Parameter", @@ -19735,31 +20202,32 @@ "type": { "type": "reference", "name": "SamFocusDirective", - "id": 85 + "id": 2634 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", "line": 16, "character": 39 } ] }, { - "id": 88, + "id": 2637, "name": "_elementRef", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", "line": 18, "character": 33 } @@ -19770,12 +20238,13 @@ } }, { - "id": 86, + "id": 2635, "name": "focus", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Event emitter for focus event" @@ -19792,7 +20261,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", "line": 16, "character": 17 } @@ -19810,12 +20279,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 94, + "id": 2643, "name": "hasFocusChanged", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -19833,14 +20303,14 @@ ], "signatures": [ { - "id": 95, + "id": 2644, "name": "hasFocusChanged", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 96, + "id": 2645, "name": "target", "kind": 32768, "kindString": "Parameter", @@ -19859,19 +20329,20 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", "line": 30, "character": 24 } ] }, { - "id": 91, + "id": 2640, "name": "onClick", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -19889,14 +20360,14 @@ ], "signatures": [ { - "id": 92, + "id": 2641, "name": "onClick", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 93, + "id": 2642, "name": "targetElement", "kind": 32768, "kindString": "Parameter", @@ -19915,7 +20386,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", "line": 21, "character": 16 } @@ -19927,29 +20398,29 @@ "title": "Constructors", "kind": 512, "children": [ - 87 + 2636 ] }, { "title": "Properties", "kind": 1024, "children": [ - 88, - 86 + 2637, + 2635 ] }, { "title": "Methods", "kind": 2048, "children": [ - 94, - 91 + 2643, + 2640 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", "line": 12, "character": 30 } @@ -19961,52 +20432,37 @@ "title": "Classes", "kind": 128, "children": [ - 85 + 2634 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", "line": 1, "character": 0 } ] }, { - "id": 3235, - "name": "\"sam-ui-elements/src/ui-kit/directives/focus/index\"", + "id": 2681, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/directives/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/directives/focus/index.ts", - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/directives/focus/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 132, - "name": "\"sam-ui-elements/src/ui-kit/directives/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/directives/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/directives/index.ts", "children": [ { - "id": 133, + "id": 2682, "name": "SamDirectivesModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -20022,7 +20478,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/index.ts", "line": 30, "character": 32 } @@ -20034,35 +20490,37 @@ "title": "Classes", "kind": 128, "children": [ - 133 + 2682 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/index.ts", "line": 1, "character": 0 } ] }, { - "id": 35, - "name": "\"sam-ui-elements/src/ui-kit/directives/sticky/sticky.component\"", + "id": 2584, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "children": [ { - "id": 36, + "id": 2585, "name": "SamStickyComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The sam-sticky directive is made to help nav bar stick on the page" @@ -20081,23 +20539,24 @@ ], "children": [ { - "id": 48, + "id": 2597, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 50, + "id": 2599, "name": "new SamStickyComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 51, + "id": 2600, "name": "el", "kind": 32768, "kindString": "Parameter", @@ -20111,25 +20570,26 @@ "type": { "type": "reference", "name": "SamStickyComponent", - "id": 36 + "id": 2585 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 48, "character": 3 } ] }, { - "id": 38, + "id": 2587, "name": "container", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the container target class" @@ -20146,7 +20606,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 24, "character": 20 } @@ -20157,17 +20617,18 @@ } }, { - "id": 39, + "id": 2588, "name": "diffLimit", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 28, "character": 19 } @@ -20179,18 +20640,19 @@ "defaultValue": "100" }, { - "id": 49, + "id": 2598, "name": "el", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 50, "character": 25 } @@ -20201,17 +20663,18 @@ } }, { - "id": 41, + "id": 2590, "name": "elemWidth", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 32, "character": 19 } @@ -20222,12 +20685,13 @@ } }, { - "id": 37, + "id": 2586, "name": "limit", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the minimum pixel width for sticky to trigger on." @@ -20244,7 +20708,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 20, "character": 16 } @@ -20256,17 +20720,18 @@ "defaultValue": "0" }, { - "id": 40, + "id": 2589, "name": "stickyTop", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 30, "character": 19 } @@ -20278,16 +20743,17 @@ "defaultValue": "10" }, { - "id": 72, + "id": 2621, "name": "adjustStickyPos", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 73, + "id": 2622, "name": "adjustStickyPos", "kind": 4096, "kindString": "Call signature", @@ -20300,23 +20766,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 141, "character": 17 } ] }, { - "id": 70, + "id": 2619, "name": "findDirectChild", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 71, + "id": 2620, "name": "findDirectChild", "kind": 4096, "kindString": "Call signature", @@ -20329,23 +20796,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 124, "character": 17 } ] }, { - "id": 61, + "id": 2610, "name": "getDocHeight", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 62, + "id": 2611, "name": "getDocHeight", "kind": 4096, "kindString": "Call signature", @@ -20358,23 +20826,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 78, "character": 14 } ] }, { - "id": 65, + "id": 2614, "name": "getElemDistanceToTop", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 66, + "id": 2615, "name": "getElemDistanceToTop", "kind": 4096, "kindString": "Call signature", @@ -20384,7 +20853,7 @@ }, "parameters": [ { - "id": 67, + "id": 2616, "name": "elem", "kind": 32768, "kindString": "Parameter", @@ -20403,23 +20872,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 96, "character": 22 } ] }, { - "id": 63, + "id": 2612, "name": "getScrollTop", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 64, + "id": 2613, "name": "getScrollTop", "kind": 4096, "kindString": "Call signature", @@ -20432,23 +20902,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 87, "character": 14 } ] }, { - "id": 68, + "id": 2617, "name": "isTallestAmongSiblings", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 69, + "id": 2618, "name": "isTallestAmongSiblings", "kind": 4096, "kindString": "Call signature", @@ -20461,23 +20932,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 108, "character": 24 } ] }, { - "id": 56, + "id": 2605, "name": "makeSticky", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 57, + "id": 2606, "name": "makeSticky", "kind": 4096, "kindString": "Call signature", @@ -20490,23 +20962,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 64, "character": 12 } ] }, { - "id": 54, + "id": 2603, "name": "ngAfterViewChecked", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 55, + "id": 2604, "name": "ngAfterViewChecked", "kind": 4096, "kindString": "Call signature", @@ -20519,23 +20992,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 58, "character": 20 } ] }, { - "id": 52, + "id": 2601, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 53, + "id": 2602, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -20548,19 +21022,20 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 52, "character": 10 } ] }, { - "id": 42, + "id": 2591, "name": "resize", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -20577,14 +21052,14 @@ ], "signatures": [ { - "id": 43, + "id": 2592, "name": "resize", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 44, + "id": 2593, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -20603,19 +21078,20 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 35, "character": 8 } ] }, { - "id": 45, + "id": 2594, "name": "scroll", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -20632,14 +21108,14 @@ ], "signatures": [ { - "id": 46, + "id": 2595, "name": "scroll", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 47, + "id": 2596, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -20658,30 +21134,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 46, "character": 8 } ] }, { - "id": 58, + "id": 2607, "name": "setPosition", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 59, + "id": 2608, "name": "setPosition", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 60, + "id": 2609, "name": "position", "kind": 32768, "kindString": "Parameter", @@ -20700,7 +21177,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 74, "character": 13 } @@ -20712,43 +21189,43 @@ "title": "Constructors", "kind": 512, "children": [ - 48 + 2597 ] }, { "title": "Properties", "kind": 1024, "children": [ - 38, - 39, - 49, - 41, - 37, - 40 + 2587, + 2588, + 2598, + 2590, + 2586, + 2589 ] }, { "title": "Methods", "kind": 2048, "children": [ - 72, - 70, - 61, - 65, - 63, - 68, - 56, - 54, - 52, - 42, - 45, - 58 + 2621, + 2619, + 2610, + 2614, + 2612, + 2617, + 2605, + 2603, + 2601, + 2591, + 2594, + 2607 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 13, "character": 31 } @@ -20766,52 +21243,37 @@ "title": "Classes", "kind": 128, "children": [ - 36 + 2585 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", "line": 1, "character": 0 } ] }, { - "id": 3236, - "name": "\"sam-ui-elements/src/ui-kit/directives/tab-outside/index\"", + "id": 2623, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/directives/tab-outside/index.ts", - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/directives/tab-outside/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 74, - "name": "\"sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", "children": [ { - "id": 75, + "id": 2624, "name": "SamTabOutsideDirective", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -20827,23 +21289,24 @@ ], "children": [ { - "id": 77, + "id": 2626, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 79, + "id": 2628, "name": "new SamTabOutsideDirective", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 80, + "id": 2629, "name": "_elementRef", "kind": 32768, "kindString": "Parameter", @@ -20857,31 +21320,32 @@ "type": { "type": "reference", "name": "SamTabOutsideDirective", - "id": 75 + "id": 2624 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", "line": 17, "character": 63 } ] }, { - "id": 78, + "id": 2627, "name": "_elementRef", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", "line": 19, "character": 33 } @@ -20892,12 +21356,13 @@ } }, { - "id": 76, + "id": 2625, "name": "tabOutside", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emitter for tabOutside event" @@ -20914,7 +21379,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", "line": 17, "character": 22 } @@ -20932,12 +21397,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 81, + "id": 2630, "name": "hasFocusChanged", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -20955,14 +21421,14 @@ ], "signatures": [ { - "id": 82, + "id": 2631, "name": "hasFocusChanged", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 83, + "id": 2632, "name": "target", "kind": 32768, "kindString": "Parameter", @@ -20981,7 +21447,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", "line": 22, "character": 24 } @@ -20993,28 +21459,28 @@ "title": "Constructors", "kind": 512, "children": [ - 77 + 2626 ] }, { "title": "Properties", "kind": 1024, "children": [ - 78, - 76 + 2627, + 2625 ] }, { "title": "Methods", "kind": 2048, "children": [ - 81 + 2630 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", "line": 13, "character": 35 } @@ -21026,46 +21492,48 @@ "title": "Classes", "kind": 128, "children": [ - 75 + 2624 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", "line": 1, "character": 0 } ] }, { - "id": 8, - "name": "\"sam-ui-elements/src/ui-kit/dom-helpers\"", + "id": 4264, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/dom-helpers\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/dom-helpers.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/dom-helpers.ts", "children": [ { - "id": 9, + "id": 4265, "name": "ScrollHelpers", "kind": 64, "kindString": "Function", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 10, + "id": 4266, "name": "ScrollHelpers", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 11, + "id": 4267, "name": "window", "kind": 32768, "kindString": "Parameter", @@ -21079,21 +21547,23 @@ "type": { "type": "reflection", "declaration": { - "id": 12, + "id": 4268, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 13, + "id": 4269, "name": "disableScroll", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/dom-helpers.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/dom-helpers.ts", "line": 50, "character": 19 } @@ -21105,14 +21575,16 @@ "defaultValue": " disableScroll" }, { - "id": 14, + "id": 4270, "name": "enableScroll", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/dom-helpers.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/dom-helpers.ts", "line": 51, "character": 18 } @@ -21129,8 +21601,8 @@ "title": "Variables", "kind": 32, "children": [ - 13, - 14 + 4269, + 4270 ] } ] @@ -21140,7 +21612,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/dom-helpers.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/dom-helpers.ts", "line": 1, "character": 26 } @@ -21152,35 +21624,37 @@ "title": "Functions", "kind": 64, "children": [ - 9 + 4265 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/dom-helpers.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/dom-helpers.ts", "line": 1, "character": 0 } ] }, { - "id": 1794, - "name": "\"sam-ui-elements/src/ui-kit/elements/button/button.component\"", + "id": 4077, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "children": [ { - "id": 1795, + "id": 4078, "name": "SamButtonComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component generates a button for user interaction" @@ -21199,12 +21673,13 @@ ], "children": [ { - "id": 1802, + "id": 4085, "name": "buttonClass", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the button css class (Deprecated)" @@ -21221,7 +21696,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 55, "character": 22 } @@ -21233,12 +21708,13 @@ "defaultValue": "\"\"" }, { - "id": 1800, + "id": 4083, "name": "buttonDisabled", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Disables the button" @@ -21255,7 +21731,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 44, "character": 25 } @@ -21267,12 +21743,13 @@ "defaultValue": "false" }, { - "id": 1796, + "id": 4079, "name": "buttonId", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the id that will assign to the button element" @@ -21289,7 +21766,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 23, "character": 19 } @@ -21300,12 +21777,13 @@ } }, { - "id": 1799, + "id": 4082, "name": "buttonSize", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the button size" @@ -21322,7 +21800,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 39, "character": 21 } @@ -21333,12 +21811,13 @@ } }, { - "id": 1797, + "id": 4080, "name": "buttonText", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the text content that will show on the button" @@ -21355,7 +21834,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 28, "character": 21 } @@ -21366,12 +21845,13 @@ } }, { - "id": 1798, + "id": 4081, "name": "buttonType", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the type of the button\n(default,alt,secondary,outline,gray,disabled,big)" @@ -21388,7 +21868,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 34, "character": 21 } @@ -21399,12 +21879,13 @@ } }, { - "id": 1801, + "id": 4084, "name": "onClick", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emmits event on click" @@ -21421,7 +21902,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 49, "character": 19 } @@ -21439,16 +21920,17 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1812, + "id": 4095, "name": "btnClass", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "getSignature": [ { - "id": 1813, + "id": 4096, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -21461,30 +21943,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 71, "character": 14 } ] }, { - "id": 1814, + "id": 4097, "name": "click", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1815, + "id": 4098, "name": "click", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1816, + "id": 4099, "name": "$event", "kind": 32768, "kindString": "Parameter", @@ -21503,33 +21986,35 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 89, "character": 7 } ] }, { - "id": 1803, + "id": 4086, "name": "btnClassMap", "kind": 2097152, "kindString": "Object literal", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 1804, + "id": 4087, "name": "default", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 60, "character": 11 } @@ -21541,16 +22026,17 @@ "defaultValue": "\"primary\"" }, { - "id": 1811, + "id": 4094, "name": "large", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 68, "character": 9 } @@ -21562,16 +22048,17 @@ "defaultValue": "\"large\"" }, { - "id": 1808, + "id": 4091, "name": "negative", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 64, "character": 12 } @@ -21583,16 +22070,17 @@ "defaultValue": "\"negative\"" }, { - "id": 1805, + "id": 4088, "name": "primary", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 61, "character": 11 } @@ -21604,16 +22092,17 @@ "defaultValue": "\"primary\"" }, { - "id": 1806, + "id": 4089, "name": "secondary", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 62, "character": 13 } @@ -21625,16 +22114,17 @@ "defaultValue": "\"secondary\"" }, { - "id": 1810, + "id": 4093, "name": "small", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 67, "character": 9 } @@ -21646,16 +22136,17 @@ "defaultValue": "\"tiny\"" }, { - "id": 1809, + "id": 4092, "name": "submit", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 65, "character": 10 } @@ -21667,16 +22158,17 @@ "defaultValue": "\"primary\"" }, { - "id": 1807, + "id": 4090, "name": "tertiary", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 63, "character": 12 } @@ -21693,20 +22185,20 @@ "title": "Variables", "kind": 32, "children": [ - 1804, - 1811, - 1808, - 1805, - 1806, - 1810, - 1809, - 1807 + 4087, + 4094, + 4091, + 4088, + 4089, + 4093, + 4092, + 4090 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 58, "character": 21 } @@ -21722,40 +22214,40 @@ "title": "Properties", "kind": 1024, "children": [ - 1802, - 1800, - 1796, - 1799, - 1797, - 1798, - 1801 + 4085, + 4083, + 4079, + 4082, + 4080, + 4081, + 4084 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 1812 + 4095 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1814 + 4097 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 1803 + 4086 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 19, "character": 31 } @@ -21767,52 +22259,55 @@ "title": "Classes", "kind": 128, "children": [ - 1795 + 4078 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/button.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1817, - "name": "\"sam-ui-elements/src/ui-kit/elements/button/index\"", + "id": 4100, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/elements/button/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/elements/button/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/elements/button/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/button/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/button/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1818, - "name": "\"sam-ui-elements/src/ui-kit/elements/index\"", + "id": 4101, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/elements/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/elements/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/elements/index.ts", "children": [ { - "id": 1819, + "id": 4102, "name": "SamElementsModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -21828,7 +22323,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/index.ts", "line": 17, "character": 30 } @@ -21840,35 +22335,37 @@ "title": "Classes", "kind": 128, "children": [ - 1819 + 4102 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/elements/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/elements/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2977, - "name": "\"sam-ui-elements/src/ui-kit/experimental/box/box.component\"", + "id": 5091, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/box/box.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", "children": [ { - "id": 2978, + "id": 5092, "name": "SamBoxComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -21878,22 +22375,42 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: \"sam-box\",\n template: `\n
\n \n
\n `\n}" + "obj": "{\n selector: \"sam-box\",\n template: `\n
\n \n
\n `\n}" } } ], "children": [ { - "id": 2979, - "name": "type", + "id": 5095, + "name": "css_classes", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isPublic": true + "isExternal": true }, - "comment": { - "shortText": "Options:\ndefault | primary | outline" + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", + "line": 16, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"sam box\"" + }, + { + "id": 5094, + "name": "padded", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true }, "decorators": [ { @@ -21907,112 +22424,26 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", - "line": 16, - "character": 22 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", + "line": 14, + "character": 24 } ], "type": { "type": "instrinct", "name": "string" } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 2979 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", - "line": 11, - "character": 28 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 2978 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 2980, - "name": "\"sam-ui-elements/src/ui-kit/experimental/box/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/box/index.ts", - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/box/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 2981, - "name": "\"sam-ui-elements/src/ui-kit/experimental/container/container.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", - "children": [ - { - "id": 2982, - "name": "SamContainerComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-container\",\n template: `\n \n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n `\n}" - } - } - ], - "children": [ + }, { - "id": 2983, - "name": "gridLines", + "id": 5093, + "name": "type", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, - "comment": { - "shortText": "Shows grid lines" - }, "decorators": [ { "name": "Input", @@ -22025,15 +22456,45 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", - "line": 23, - "character": 27 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", + "line": 13, + "character": 22 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" } + }, + { + "id": 5096, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true + }, + "signatures": [ + { + "id": 5097, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + } + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", + "line": 18, + "character": 10 + } + ] } ], "groups": [ @@ -22041,15 +22502,30 @@ "title": "Properties", "kind": 1024, "children": [ - 2983 + 5095, + 5094, + 5093 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 5096 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", - "line": 19, - "character": 34 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", + "line": 11, + "character": 28 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" } ] } @@ -22059,52 +22535,55 @@ "title": "Classes", "kind": 128, "children": [ - 2982 + 5092 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2984, - "name": "\"sam-ui-elements/src/ui-kit/experimental/container/index\"", + "id": 5098, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/box/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/container/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/box/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/container/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/box/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2985, - "name": "\"sam-ui-elements/src/ui-kit/experimental/heading/heading.component\"", + "id": 5099, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/container/container.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", "children": [ { - "id": 2986, - "name": "SamHeadingComponent", + "id": 5100, + "name": "SamContainerComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -22114,84 +22593,24 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: \"sam-heading\",\n template: `\n \n

\n
{{ sup }}
\n \n {{ text }}\n

\n

\n \n {{ text }}\n

\n

\n \n {{ text }}\n

\n

\n \n {{ text }}\n

\n

\n \n {{ text }}\n

\n
\n `\n}" + "obj": "{\n selector: \"sam-container\",\n template: `\n
\n \n
\n `\n}" } } ], "children": [ { - "id": 2993, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 2994, - "name": "new SamHeadingComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "type": { - "type": "reference", - "name": "SamHeadingComponent", - "id": 2986 - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 39, - "character": 26 - } - ] - }, - { - "id": 2991, - "name": "alignment", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 37, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 2992, + "id": 5103, "name": "css_classes", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 39, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", + "line": 16, "character": 13 } ], @@ -22199,15 +22618,16 @@ "type": "instrinct", "name": "string" }, - "defaultValue": "\"\"" + "defaultValue": "\"sam container\"" }, { - "id": 2990, - "name": "icon", + "id": 5101, + "name": "size", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -22222,8 +22642,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 36, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", + "line": 13, "character": 22 } ], @@ -22233,74 +22653,13 @@ } }, { - "id": 2987, - "name": "importance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 33, - "character": 28 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 2988, - "name": "sup", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 34, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 2989, - "name": "text", + "id": 5102, + "name": "weight", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -22315,9 +22674,9 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 35, - "character": 22 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", + "line": 14, + "character": 24 } ], "type": { @@ -22326,16 +22685,17 @@ } }, { - "id": 2995, + "id": 5104, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2996, + "id": 5105, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -22348,46 +22708,36 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 43, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", + "line": 18, "character": 10 } ] } ], "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 2993 - ] - }, { "title": "Properties", "kind": 1024, "children": [ - 2991, - 2992, - 2990, - 2987, - 2988, - 2989 + 5103, + 5101, + 5102 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2995 + 5104 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 31, - "character": 32 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", + "line": 11, + "character": 34 } ], "implementedTypes": [ @@ -22403,52 +22753,55 @@ "title": "Classes", "kind": 128, "children": [ - 2986 + 5100 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2997, - "name": "\"sam-ui-elements/src/ui-kit/experimental/heading/index\"", + "id": 5106, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/container/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/heading/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/container/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/heading/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/container/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2998, - "name": "\"sam-ui-elements/src/ui-kit/experimental/icon/icon.component\"", + "id": 5107, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/icon/icon.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/icon/icon.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/icon/icon.component.ts", "children": [ { - "id": 2999, + "id": 5108, "name": "SamIconComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -22464,12 +22817,13 @@ ], "children": [ { - "id": 3000, + "id": 5109, "name": "name", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -22484,7 +22838,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/icon/icon.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/icon/icon.component.ts", "line": 9, "character": 22 } @@ -22500,13 +22854,13 @@ "title": "Properties", "kind": 1024, "children": [ - 3000 + 5109 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/icon/icon.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/icon/icon.component.ts", "line": 7, "character": 29 } @@ -22518,52 +22872,55 @@ "title": "Classes", "kind": 128, "children": [ - 2999 + 5108 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/icon/icon.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/icon/icon.component.ts", "line": 1, "character": 0 } ] }, { - "id": 3001, - "name": "\"sam-ui-elements/src/ui-kit/experimental/icon/index\"", + "id": 5110, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/icon/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/icon/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/icon/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/icon/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/icon/index.ts", "line": 1, "character": 0 } ] }, { - "id": 3168, - "name": "\"sam-ui-elements/src/ui-kit/experimental/index\"", + "id": 5251, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/index.ts", "children": [ { - "id": 3169, + "id": 5252, "name": "SamExperimentalModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -22573,14 +22930,14 @@ "name": "NgModule" }, "arguments": { - "obj": "{\n imports: [\n CommonModule,\n RouterModule,\n SamComponentsModule,\n HttpClientModule\n ],\n declarations: [\n SamBoxComponent,\n SamContainerComponent,\n SamHeadingComponent,\n SamIconComponent,\n SamListComponent,\n SamMasterPageComponent,\n SamPageComponent,\n SamSearchComponent,\n SamSidebarComponent,\n SamYoutubeComponent\n ],\n exports: [\n SamBoxComponent,\n SamContainerComponent,\n SamHeadingComponent,\n SamIconComponent,\n SamListComponent,\n SamMasterPageComponent,\n SamPageComponent,\n SamSearchComponent,\n SamSidebarComponent,\n SamYoutubeComponent\n ]\n}" + "obj": "{\n imports: [\n CommonModule,\n RouterModule\n ],\n declarations: [\n SamBoxComponent,\n SamContainerComponent,\n SamIconComponent,\n SamLabelNextComponent,\n SamLayoutComponent,\n SamLayoutContentComponent,\n SamLayoutImgComponent,\n SamListComponent,\n SamListItemComponent,\n SamMasterPageComponent,\n SamPageComponent,\n SamSearchComponent,\n SamPageSidebarComponent,\n SamTitleComponent,\n SamYoutubeComponent\n ],\n exports: [\n SamBoxComponent,\n SamContainerComponent,\n SamIconComponent,\n SamLabelNextComponent,\n SamLayoutComponent,\n SamLayoutContentComponent,\n SamLayoutImgComponent,\n SamListComponent,\n SamListItemComponent,\n SamMasterPageComponent,\n SamPageComponent,\n SamSearchComponent,\n SamPageSidebarComponent,\n SamTitleComponent,\n SamYoutubeComponent\n ]\n}" } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/index.ts", - "line": 51, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/index.ts", + "line": 61, "character": 34 } ] @@ -22591,52 +22948,55 @@ "title": "Classes", "kind": 128, "children": [ - 3169 + 5252 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/index.ts", "line": 1, "character": 0 } ] }, { - "id": 3008, - "name": "\"sam-ui-elements/src/ui-kit/experimental/list/index\"", + "id": 5117, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/label/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/list/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/label/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/list/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/label/index.ts", "line": 1, "character": 0 } ] }, { - "id": 3002, - "name": "\"sam-ui-elements/src/ui-kit/experimental/list/list.component\"", + "id": 5111, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/label/label.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/label/label.component.ts", "children": [ { - "id": 3003, - "name": "SamListComponent", + "id": 5112, + "name": "SamLabelNextComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -22646,48 +23006,41 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: \"sam-list\",\n animations: [\n trigger('listAnimation', [\n state('void', style({\n opacity: 0 \n })),\n state('*', style({\n opacity: 1 \n })),\n transition('* => *', [\n query(':enter', style({ opacity: 0 }), { optional: true}),\n query(':enter', stagger('100ms', [\n animate('1s', style({ opacity: 1 }))\n ]), { optional: true })\n ])\n ])\n ],\n template: `\n \n `\n}" + "obj": "{\n selector: \"sam-label-next\",\n template: `\n \n \n \n `\n}" } } ], "children": [ { - "id": 3006, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", + "id": 5114, + "name": "css_classes", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "signatures": [ - { - "id": 3007, - "name": "new SamListComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "type": { - "type": "reference", - "name": "SamListComponent", - "id": 3003 - } - } - ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", - "line": 40, - "character": 38 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/label/label.component.ts", + "line": 15, + "character": 13 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"sam label\"" }, { - "id": 3004, - "name": "items", + "id": 5113, + "name": "size", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -22702,70 +23055,75 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", - "line": 39, - "character": 23 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/label/label.component.ts", + "line": 13, + "character": 22 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" } }, { - "id": 3005, - "name": "orientation", - "kind": 1024, - "kindString": "Property", + "id": 5115, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, - "isPublic": true + "isExternal": true }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 5116, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} + "type": "instrinct", + "name": "void" + } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", - "line": 40, - "character": 29 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/label/label.component.ts", + "line": 17, + "character": 10 } - ], - "type": { - "type": "instrinct", - "name": "string" - } + ] } ], "groups": [ { - "title": "Constructors", - "kind": 512, + "title": "Properties", + "kind": 1024, "children": [ - 3006 + 5114, + 5113 ] }, { - "title": "Properties", - "kind": 1024, + "title": "Methods", + "kind": 2048, "children": [ - 3004, - 3005 + 5115 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", - "line": 37, - "character": 29 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/label/label.component.ts", + "line": 11, + "character": 34 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" } ] } @@ -22775,52 +23133,55 @@ "title": "Classes", "kind": 128, "children": [ - 3003 + 5112 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/label/label.component.ts", "line": 1, "character": 0 } ] }, { - "id": 3058, - "name": "\"sam-ui-elements/src/ui-kit/experimental/master-page/index\"", + "id": 5133, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/layout/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/master-page/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/layout/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/layout/index.ts", "line": 1, "character": 0 } ] }, { - "id": 3022, - "name": "\"sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component\"", + "id": 5118, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component.ts", "children": [ { - "id": 3023, - "name": "SamMasterPageComponent", + "id": 5119, + "name": "SamLayoutComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -22830,539 +23191,338 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: \"sam-master-page\",\n templateUrl: 'master-page.template.html',\n animations: [\n trigger('drawerState', [\n state('close', style({\n display: 'none',\n overflow: 'hidden',\n height: '0'\n })),\n state('open', style({\n display: 'block',\n height: '*'\n })),\n transition('close => open', [\n query(':self',[\n animate('250ms cubic-bezier(0.175, 0.885, 0.32, 1.275)'),\n ]),\n query('@search', [\n animateChild()\n ])\n ]),\n transition('open => close', animate('200ms ease-out'))\n ]),\n trigger('search', [\n transition('* => *', [\n query('.search', style({ \n opacity: 0,\n transform: 'translateY(2px)' \n })),\n query('.search', [\n animate('300ms ease-in', style({\n opacity: 1,\n transform: 'translateY(0px)'\n }))\n ])\n ])\n ])\n ],\n providers: [SamMasterPageService]\n}" + "obj": "{\n selector: \"sam-layout\",\n template: `\n
\n \n
\n `\n}" } } ], "children": [ { - "id": 3028, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 3033, - "name": "new SamMasterPageComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 3034, - "name": "masterpageservice", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamMasterPageService", - "id": 3010 - } - }, - { - "id": 3035, - "name": "router", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Router" - } - }, - { - "id": 3036, - "name": "route", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ActivatedRoute" - } - }, - { - "id": 3037, - "name": "renderer", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Renderer2" - } - } - ], - "type": { - "type": "reference", - "name": "SamMasterPageComponent", - "id": 3023 - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 72, - "character": 43 - } - ] - }, - { - "id": 3044, - "name": "drawerState", + "id": 5122, + "name": "css_classes", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 105, - "character": 15 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component.ts", + "line": 16, + "character": 13 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"open\"" + "defaultValue": "\"sam layout\"" }, { - "id": 3029, - "name": "masterpageservice", + "id": 5121, + "name": "margin", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true, + "isPublic": true }, - "sources": [ + "decorators": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 75, - "character": 29 + "name": "Input", + "type": { + "type": "reference", + "name": "Input" + }, + "arguments": {} } ], - "type": { - "type": "reference", - "name": "SamMasterPageService", - "id": 3010 - } - }, - { - "id": 3027, - "name": "modalOutletName", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 72, - "character": 17 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component.ts", + "line": 14, + "character": 24 } ], "type": { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"master-modal\"" - }, - { - "id": 3032, - "name": "renderer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 78, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "Renderer2" - } - }, - { - "id": 3031, - "name": "route", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 77, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "ActivatedRoute" } }, { - "id": 3030, - "name": "router", + "id": 5120, + "name": "pattern", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true, + "isPublic": true }, - "sources": [ + "decorators": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 76, - "character": 18 + "name": "Input", + "type": { + "type": "reference", + "name": "Input" + }, + "arguments": {} } ], - "type": { - "type": "reference", - "name": "Router" - } - }, - { - "id": 3047, - "name": "searchInputFocus", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 111, - "character": 20 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component.ts", + "line": 13, + "character": 25 } ], "type": { "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" + "name": "string" + } }, { - "id": 3054, - "name": "docLink", - "kind": 262144, - "kindString": "Accessor", + "id": 5123, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "getSignature": [ + "signatures": [ { - "id": 3055, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", + "id": 5124, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, "type": { "type": "instrinct", - "name": "string" + "name": "void" } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 127, - "character": 15 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component.ts", + "line": 18, + "character": 10 } ] - }, + } + ], + "groups": [ { - "id": 3056, - "name": "settingsLink", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 3057, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 131, - "character": 20 - } + "title": "Properties", + "kind": 1024, + "children": [ + 5122, + 5121, + 5120 ] }, { - "id": 3038, - "name": "findActiveOutlets", + "title": "Methods", "kind": 2048, - "kindString": "Method", + "children": [ + 5123 + ] + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component.ts", + "line": 11, + "character": 31 + } + ] + }, + { + "id": 5130, + "name": "SamLayoutContentComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true, + "isExternal": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: \"sam-layout-content\",\n template: `\n
\n \n
\n `\n}" + } + } + ], + "children": [ + { + "id": 5131, + "name": "align", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true, + "isPublic": true }, - "signatures": [ + "decorators": [ { - "id": 3039, - "name": "findActiveOutlets", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 3040, - "name": "activatedRoutes", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], + "name": "Input", "type": { "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - } + "name": "Input" + }, + "arguments": {} } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 92, - "character": 21 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component.ts", + "line": 56, + "character": 23 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + } }, { - "id": 3041, - "name": "modalActive", - "kind": 2048, - "kindString": "Method", + "id": 5132, + "name": "css_classes", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "signatures": [ - { - "id": 3042, - "name": "modalActive", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 3043, - "name": "activeOutlets", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 100, - "character": 15 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component.ts", + "line": 58, + "character": 13 } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"content\"" + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 5131, + 5132 ] - }, + } + ], + "sources": [ { - "id": 3024, - "name": "onClick", - "kind": 2048, - "kindString": "Method", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component.ts", + "line": 54, + "character": 38 + } + ] + }, + { + "id": 5125, + "name": "SamLayoutImgComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true, + "isExternal": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: \"sam-layout-img\",\n template: `\n
\n \n
\n `\n}" + } + } + ], + "children": [ + { + "id": 5126, + "name": "aligned", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true, + "isPublic": true }, "decorators": [ { - "name": "HostListener", + "name": "Input", "type": { "type": "reference", - "name": "HostListener" + "name": "Input" }, - "arguments": { - "eventName": "'click'", - "args": "['$event']" - } - } - ], - "signatures": [ - { - "id": 3025, - "name": "onClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 3026, - "name": "$event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "arguments": {} } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 66, - "character": 44 - } - ] - }, - { - "id": 3048, - "name": "searchFocus", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 3049, - "name": "searchFocus", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 3050, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component.ts", + "line": 36, + "character": 25 } ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 112, - "character": 15 - } - ] + "type": { + "type": "instrinct", + "name": "string" + } }, { - "id": 3051, - "name": "selectedDomain", - "kind": 2048, - "kindString": "Method", + "id": 5127, + "name": "css_classes", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "signatures": [ - { - "id": 3052, - "name": "selectedDomain", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 3053, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 123, - "character": 18 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component.ts", + "line": 38, + "character": 13 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"img\"" }, { - "id": 3045, - "name": "toggleDrawer", + "id": 5128, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3046, - "name": "toggleDrawer", + "id": 5129, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, @@ -23374,60 +23534,35 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 106, - "character": 16 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component.ts", + "line": 40, + "character": 10 } ] } ], "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 3028 - ] - }, { "title": "Properties", "kind": 1024, "children": [ - 3044, - 3029, - 3027, - 3032, - 3031, - 3030, - 3047 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 3054, - 3056 + 5126, + 5127 ] }, { "title": "Methods", "kind": 2048, "children": [ - 3038, - 3041, - 3024, - 3048, - 3051, - 3045 + 5128 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 64, - "character": 35 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component.ts", + "line": 34, + "character": 34 } ] } @@ -23437,209 +23572,237 @@ "title": "Classes", "kind": 128, "children": [ - 3023 + 5119, + 5130, + 5125 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/layout/layout.component.ts", "line": 1, "character": 0 } ] }, { - "id": 3009, - "name": "\"sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service\"", + "id": 5145, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/list/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/list/index.ts", + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/list/index.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5134, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/list/list.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", "children": [ { - "id": 3010, - "name": "SamMasterPageService", + "id": 5135, + "name": "SamListComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { - "name": "Injectable", + "name": "Component", "type": { "type": "reference", - "name": "Injectable" + "name": "Component" }, - "arguments": {} + "arguments": { + "obj": "{\n selector: \"sam-list\",\n template: `\n
    \n \n
\n `\n}" + } } ], "children": [ { - "id": 3011, - "name": "_docLink", + "id": 5137, + "name": "bullet", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true, + "isPublic": true }, + "decorators": [ + { + "name": "Input", + "type": { + "type": "reference", + "name": "Input" + }, + "arguments": {} + } + ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 6, - "character": 10 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", + "line": 14, + "character": 24 } ], "type": { "type": "instrinct", - "name": "string" + "name": "boolean" } }, { - "id": 3016, - "name": "_settingsLink", + "id": 5136, + "name": "bulleted", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true, + "isPublic": true }, + "decorators": [ + { + "name": "Input", + "type": { + "type": "reference", + "name": "Input" + }, + "arguments": {} + } + ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 14, - "character": 15 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", + "line": 13, + "character": 26 } ], "type": { "type": "instrinct", - "name": "string" + "name": "boolean" } }, { - "id": 3021, - "name": "selectedDomain", + "id": 5138, + "name": "columns", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true, + "isPublic": true }, + "decorators": [ + { + "name": "Input", + "type": { + "type": "reference", + "name": "Input" + }, + "arguments": {} + } + ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 22, - "character": 16 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", + "line": 15, + "character": 25 } ], "type": { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"All Award Data\"" + } }, { - "id": 3012, - "name": "docLink", - "kind": 262144, - "kindString": "Accessor", + "id": 5140, + "name": "css_classes", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "getSignature": [ + "sources": [ { - "id": 3015, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", + "line": 18, + "character": 13 } ], - "setSignature": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"sam list\"" + }, + { + "id": 5139, + "name": "orientation", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "decorators": [ { - "id": 3013, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", - "flags": {}, - "parameters": [ - { - "id": 3014, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], + "name": "Input", "type": { - "type": "instrinct", - "name": "void" - } + "type": "reference", + "name": "Input" + }, + "arguments": {} } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 7, - "character": 13 - }, - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 10, - "character": 13 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", + "line": 16, + "character": 29 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + } }, { - "id": 3017, - "name": "settingsLink", - "kind": 262144, - "kindString": "Accessor", + "id": 5141, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "getSignature": [ - { - "id": 3020, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "setSignature": [ + "signatures": [ { - "id": 3018, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", + "id": 5142, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 3019, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], "type": { "type": "instrinct", "name": "void" @@ -23648,14 +23811,9 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 15, - "character": 18 - }, - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 18, - "character": 18 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", + "line": 20, + "character": 10 } ] } @@ -23665,24 +23823,103 @@ "title": "Properties", "kind": 1024, "children": [ - 3011, - 3016, - 3021 + 5137, + 5136, + 5138, + 5140, + 5139 ] }, { - "title": "Accessors", - "kind": 262144, + "title": "Methods", + "kind": 2048, "children": [ - 3012, - 3017 + 5141 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 4, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", + "line": 11, + "character": 29 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 5143, + "name": "SamListItemComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true, + "isExternal": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: \"sam-list-item\",\n template: `\n
  • \n \n \n
  • \n `\n}" + } + } + ], + "children": [ + { + "id": 5144, + "name": "bullet", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "decorators": [ + { + "name": "Input", + "type": { + "type": "reference", + "name": "Input" + }, + "arguments": {} + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", + "line": 39, + "character": 24 + } + ], + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 5144 + ] + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", + "line": 38, "character": 33 } ] @@ -23693,52 +23930,132 @@ "title": "Classes", "kind": 128, "children": [ - 3010 + 5135, + 5143 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", "line": 1, "character": 0 } ] }, { - "id": 3084, - "name": "\"sam-ui-elements/src/ui-kit/experimental/page/index\"", + "id": 5148, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/master-page/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/page/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/master-page/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/master-page/index.ts", "line": 1, "character": 0 } ] }, { - "id": 3066, - "name": "\"sam-ui-elements/src/ui-kit/experimental/page/page.component\"", + "id": 5146, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", + "children": [ + { + "id": 5147, + "name": "SamMasterPageComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true, + "isExternal": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'sam-master-page',\n templateUrl: 'master-page.template.html'\n}" + } + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", + "line": 7, + "character": 35 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5147 + ] + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5166, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/page/index\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/page/index.ts", + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/page/index.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5149, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/page/page.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true, + "isExternal": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", "children": [ { - "id": 3067, + "id": 5152, "name": "SamPageComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -23748,29 +24065,30 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: \"sam-page\",\n templateUrl: 'page.template.html',\n providers: [SamPageService]\n}" + "obj": "{\n selector: 'sam-page',\n templateUrl: 'page.template.html',\n providers: [SamPageService]\n}" } } ], "children": [ { - "id": 3075, + "id": 5155, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3077, + "id": 5157, "name": "new SamPageComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 3078, + "id": 5158, "name": "pageService", "kind": 32768, "kindString": "Parameter", @@ -23778,32 +24096,33 @@ "type": { "type": "reference", "name": "SamPageService", - "id": 3060 + "id": 5150 } } ], "type": { "type": "reference", "name": "SamPageComponent", - "id": 3067 + "id": 5152 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 18, - "character": 3 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", + "line": 15, + "character": 32 } ] }, { - "id": 3071, - "name": "breadcrumbs", + "id": 5154, + "name": "intro", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -23818,108 +24137,48 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 14, - "character": 29 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", + "line": 15, + "character": 23 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" } }, { - "id": 3076, + "id": 5156, "name": "pageService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 19, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", + "line": 16, "character": 33 } ], "type": { "type": "reference", "name": "SamPageService", - "id": 3060 - } - }, - { - "id": 3070, - "name": "subtitle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 13, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 3068, - "name": "suptitle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 11, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "any" + "id": 5150 } }, { - "id": 3069, + "id": 5153, "name": "title", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -23934,141 +24193,15 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 12, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", + "line": 14, "character": 23 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" } - }, - { - "id": 3082, - "name": "sidebar", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 3083, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 25, - "character": 13 - } - ] - }, - { - "id": 3079, - "name": "breadcrumbHandler", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 3080, - "name": "breadcrumbHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 3081, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 21, - "character": 19 - } - ] - }, - { - "id": 3072, - "name": "onClicked", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'click'", - "args": "['$event']" - } - } - ], - "signatures": [ - { - "id": 3073, - "name": "onClicked", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 3074, - "name": "$event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 16, - "character": 46 - } - ] } ], "groups": [ @@ -24076,79 +24209,35 @@ "title": "Constructors", "kind": 512, "children": [ - 3075 + 5155 ] }, { "title": "Properties", "kind": 1024, "children": [ - 3071, - 3076, - 3070, - 3068, - 3069 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 3082 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 3079, - 3072 + 5154, + 5156, + 5153 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 9, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", + "line": 13, "character": 29 } ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 3067 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 3059, - "name": "\"sam-ui-elements/src/ui-kit/experimental/page/page.service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/page/page.service.ts", - "children": [ + }, { - "id": 3060, + "id": 5150, "name": "SamPageService", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -24162,66 +24251,152 @@ ], "children": [ { - "id": 3061, - "name": "_sidebar", + "id": 5151, + "name": "sidebar", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", "line": 5, - "character": 10 + "character": 9 } ], "type": { "type": "instrinct", "name": "boolean" + }, + "defaultValue": "false" + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 5151 + ] + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", + "line": 4, + "character": 27 + } + ] + }, + { + "id": 5159, + "name": "SamPageSidebarComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true, + "isExternal": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'sam-page-sidebar',\n template: `\n
    \n \n
    \n `\n}" } - }, + } + ], + "children": [ { - "id": 3062, - "name": "sidebar", - "kind": 262144, - "kindString": "Accessor", + "id": 5160, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "getSignature": [ - { - "id": 3065, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "setSignature": [ + "signatures": [ { - "id": 3063, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", + "id": 5162, + "name": "new SamPageSidebarComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 3064, - "name": "value", + "id": 5163, + "name": "pageService", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "SamPageService", + "id": 5150 } } ], + "type": { + "type": "reference", + "name": "SamPageSidebarComponent", + "id": 5159 + } + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", + "line": 27, + "character": 55 + } + ] + }, + { + "id": 5161, + "name": "pageService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true, + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", + "line": 28, + "character": 33 + } + ], + "type": { + "type": "reference", + "name": "SamPageService", + "id": 5150 + } + }, + { + "id": 5164, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true + }, + "signatures": [ + { + "id": 5165, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, "type": { "type": "instrinct", "name": "void" @@ -24230,39 +24405,47 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.service.ts", - "line": 6, - "character": 13 - }, - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.service.ts", - "line": 9, - "character": 13 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", + "line": 29, + "character": 10 } ] } ], "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 5160 + ] + }, { "title": "Properties", "kind": 1024, "children": [ - 3061 + 5161 ] }, { - "title": "Accessors", - "kind": 262144, + "title": "Methods", + "kind": 2048, "children": [ - 3062 + 5164 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.service.ts", - "line": 4, - "character": 27 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", + "line": 27, + "character": 36 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" } ] } @@ -24272,52 +24455,57 @@ "title": "Classes", "kind": 128, "children": [ - 3060 + 5152, + 5150, + 5159 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/page/page.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", "line": 1, "character": 0 } ] }, { - "id": 3143, - "name": "\"sam-ui-elements/src/ui-kit/experimental/search/index\"", + "id": 5216, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/search/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/search/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/search/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/index.ts", "line": 1, "character": 0 } ] }, { - "id": 3106, - "name": "\"sam-ui-elements/src/ui-kit/experimental/search/search.component\"", + "id": 5181, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", "children": [ { - "id": 3107, + "id": 5182, "name": "SamSearchComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -24333,35 +24521,24 @@ ], "children": [ { - "id": 3111, + "id": 5186, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3114, + "id": 5188, "name": "new SamSearchComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 3115, - "name": "masterpageservice", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamMasterPageService", - "id": 3010 - } - }, - { - "id": 3116, + "id": 5189, "name": "prototypedata", "kind": 32768, "kindString": "Parameter", @@ -24369,32 +24546,33 @@ "type": { "type": "reference", "name": "PrototypeSearchService", - "id": 3086 + "id": 5168 } } ], "type": { "type": "reference", "name": "SamSearchComponent", - "id": 3107 + "id": 5182 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 64, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 63, "character": 67 } ] }, { - "id": 3109, + "id": 5184, "name": "focus", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -24409,8 +24587,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 63, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 62, "character": 23 } ], @@ -24420,12 +24598,13 @@ } }, { - "id": 3108, + "id": 5183, "name": "inputEl", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -24441,8 +24620,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 62, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 61, "character": 35 } ], @@ -24452,17 +24631,18 @@ } }, { - "id": 3117, + "id": 5190, "name": "loading", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 71, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 70, "character": 9 } ], @@ -24473,63 +24653,42 @@ "defaultValue": "false" }, { - "id": 3112, - "name": "masterpageservice", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 67, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "SamMasterPageService", - "id": 3010 - } - }, - { - "id": 3113, + "id": 5187, "name": "prototypedata", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 68, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 67, "character": 25 } ], "type": { "type": "reference", "name": "PrototypeSearchService", - "id": 3086 + "id": 5168 } }, { - "id": 3118, + "id": 5191, "name": "results", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 72, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 71, "character": 9 } ], @@ -24546,17 +24705,18 @@ "defaultValue": " []" }, { - "id": 3137, + "id": 5210, "name": "resultsWidth", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 129, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 128, "character": 14 } ], @@ -24566,12 +24726,13 @@ } }, { - "id": 3110, + "id": 5185, "name": "selectedDomain", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -24585,8 +24746,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 64, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 63, "character": 26 } ], @@ -24603,17 +24764,18 @@ "defaultValue": " new EventEmitter()" }, { - "id": 3136, + "id": 5209, "name": "selectedOption", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 128, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 127, "character": 16 } ], @@ -24623,17 +24785,18 @@ } }, { - "id": 3129, + "id": 5202, "name": "tabSearch", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 109, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 108, "character": 11 } ], @@ -24644,23 +24807,24 @@ "defaultValue": "false" }, { - "id": 3124, + "id": 5197, "name": "closeAutocomplete", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3125, + "id": 5198, "name": "closeAutocomplete", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 3126, + "id": 5199, "name": "name", "kind": 32768, "kindString": "Parameter", @@ -24679,30 +24843,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 100, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 99, "character": 19 } ] }, { - "id": 3133, + "id": 5206, "name": "inputBackspace", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3134, + "id": 5207, "name": "inputBackspace", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 3135, + "id": 5208, "name": "$event", "kind": 32768, "kindString": "Parameter", @@ -24721,23 +24886,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 117, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 116, "character": 16 } ] }, { - "id": 3127, + "id": 5200, "name": "inputFocus", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3128, + "id": 5201, "name": "inputFocus", "kind": 4096, "kindString": "Call signature", @@ -24750,30 +24916,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 105, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 104, "character": 12 } ] }, { - "id": 3130, + "id": 5203, "name": "inputTab", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3131, + "id": 5204, "name": "inputTab", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 3132, + "id": 5205, "name": "$event", "kind": 32768, "kindString": "Parameter", @@ -24792,30 +24959,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 110, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 109, "character": 10 } ] }, { - "id": 3121, + "id": 5194, "name": "ngOnChanges", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3122, + "id": 5195, "name": "ngOnChanges", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 3123, + "id": 5196, "name": "c", "kind": 32768, "kindString": "Parameter", @@ -24834,23 +25002,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 94, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 93, "character": 13 } ] }, { - "id": 3119, + "id": 5192, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3120, + "id": 5193, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -24863,30 +25032,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 74, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 73, "character": 10 } ] }, { - "id": 3138, + "id": 5211, "name": "onSelectChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3139, + "id": 5212, "name": "onSelectChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 3140, + "id": 5213, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -24905,23 +25075,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 130, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 129, "character": 16 } ] }, { - "id": 3141, + "id": 5214, "name": "updateResultsWidth", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3142, + "id": 5215, "name": "updateResultsWidth", "kind": 4096, "kindString": "Call signature", @@ -24934,8 +25105,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 138, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 137, "character": 20 } ] @@ -24946,44 +25117,43 @@ "title": "Constructors", "kind": 512, "children": [ - 3111 + 5186 ] }, { "title": "Properties", "kind": 1024, "children": [ - 3109, - 3108, - 3117, - 3112, - 3113, - 3118, - 3137, - 3110, - 3136, - 3129 + 5184, + 5183, + 5190, + 5187, + 5191, + 5210, + 5185, + 5209, + 5202 ] }, { "title": "Methods", "kind": 2048, "children": [ - 3124, - 3133, - 3127, - 3130, - 3121, - 3119, - 3138, - 3141 + 5197, + 5206, + 5200, + 5203, + 5194, + 5192, + 5211, + 5214 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 60, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "line": 59, "character": 31 } ], @@ -25000,35 +25170,37 @@ "title": "Classes", "kind": 128, "children": [ - 3107 + 5182 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", "line": 1, "character": 0 } ] }, { - "id": 3085, - "name": "\"sam-ui-elements/src/ui-kit/experimental/search/search.service\"", + "id": 5167, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.service\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", "children": [ { - "id": 3086, + "id": 5168, "name": "PrototypeSearchService", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -25042,82 +25214,18 @@ ], "children": [ { - "id": 3092, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 3094, - "name": "new PrototypeSearchService", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 3095, - "name": "http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "HttpClient" - } - } - ], - "type": { - "type": "reference", - "name": "PrototypeSearchService", - "id": 3086 - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 84, - "character": 3 - } - ] - }, - { - "id": 3093, - "name": "http", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 87, - "character": 16 - } - ], - "type": { - "type": "reference", - "name": "HttpClient" - } - }, - { - "id": 3087, + "id": 5169, "name": "results", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 15, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", + "line": 10, "character": 9 } ], @@ -25125,22 +25233,24 @@ "type": "reflection", "isArray": true, "declaration": { - "id": 3088, + "id": 5170, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3090, + "id": 5172, "name": "domain", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 17, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", + "line": 12, "character": 10 } ], @@ -25150,15 +25260,17 @@ } }, { - "id": 3089, + "id": 5171, "name": "name", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 16, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", + "line": 11, "character": 8 } ], @@ -25168,17 +25280,18 @@ } }, { - "id": 3091, + "id": 5173, "name": "title", "kind": 32, "kindString": "Variable", "flags": { + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 18, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", + "line": 13, "character": 9 } ], @@ -25193,16 +25306,16 @@ "title": "Variables", "kind": 32, "children": [ - 3090, - 3089, - 3091 + 5172, + 5171, + 5173 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 15, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", + "line": 10, "character": 10 } ] @@ -25211,24 +25324,25 @@ "defaultValue": " [\n {\n \"name\": \"Department of Education\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Energy\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of the Treasury\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Emergency Services and Public Protection\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Education, South Carolina\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Corrections Massachusetts\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Assistive and Rehabilitative Services\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Health Minnesota\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Human Resources\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of General Services\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Off Street Parking of the city of Miami\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"16.829\",\n \"title\": \"Juvenile Justice Education Collaboration Assistance\",\n \"domain\": \"Assistance Listing\"\n },\n {\n \"name\": \"16.828\",\n \"title\": \"Swift, Certain, and Fair (SCF) Sanctions program: Replicating the Concepts behind Project HOPE\",\n \"domain\": \"Assistance Listing\"\n },\n {\n \"name\": \"16.827\",\n \"title\": \"Justice Reinvestment Initiative\",\n \"domain\": \"Assistance Listing\"\n },\n {\n \"name\": \"Mechanical Services, Inc. Action Obligation $16.82 BPA CALL\",\n \"title\": \"Justice Reinvestment Initiative\",\n \"domain\": \"Contract Data\"\n }\n ]" }, { - "id": 3096, + "id": 5174, "name": "loadData", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 3097, + "id": 5175, "name": "loadData", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 3098, + "id": 5176, "name": "query", "kind": 32768, "kindString": "Parameter", @@ -25250,22 +25364,24 @@ { "type": "reflection", "declaration": { - "id": 3099, + "id": 5177, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3102, + "id": 5180, "name": "description", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 116, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", + "line": 107, "character": 21 } ], @@ -25276,15 +25392,17 @@ "defaultValue": " description" }, { - "id": 3101, + "id": 5179, "name": "domain", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 115, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", + "line": 106, "character": 16 } ], @@ -25308,15 +25426,17 @@ "defaultValue": " (query.length >= 14 || item.domain === 'Assistance Listing') ? `in ${item.domain}` : false" }, { - "id": 3100, + "id": 5178, "name": "name", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 114, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", + "line": 105, "character": 14 } ], @@ -25332,9 +25452,9 @@ "title": "Variables", "kind": 32, "children": [ - 3102, - 3101, - 3100 + 5180, + 5179, + 5178 ] } ] @@ -25348,90 +25468,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 91, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", + "line": 82, "character": 17 } ] - }, - { - "id": 3103, - "name": "search", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 3104, - "name": "search", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 3105, - "name": "query", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 123, - "character": 8 - } - ] } ], "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 3092 - ] - }, { "title": "Properties", "kind": 1024, "children": [ - 3093, - 3087 + 5169 ] }, { "title": "Methods", "kind": 2048, "children": [ - 3096, - 3103 + 5174 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 13, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", + "line": 8, "character": 35 } ] @@ -25442,52 +25505,55 @@ "title": "Classes", "kind": 128, "children": [ - 3086 + 5168 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", "line": 1, "character": 0 } ] }, { - "id": 3152, - "name": "\"sam-ui-elements/src/ui-kit/experimental/sidebar/index\"", + "id": 5235, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/title/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/sidebar/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/title/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/sidebar/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/title/index.ts", "line": 1, "character": 0 } ] }, { - "id": 3144, - "name": "\"sam-ui-elements/src/ui-kit/experimental/sidebar/sidebar.component\"", + "id": 5217, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/title/title.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/sidebar/sidebar.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/title/title.component.ts", "children": [ { - "id": 3145, - "name": "SamSidebarComponent", + "id": 5218, + "name": "SamTitleComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -25497,89 +25563,321 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: \"sam-sidebar\",\n template: ''\n}" + "obj": "{\n selector: \"sam-title\",\n template: `\n \n \n \n\n \n \n `\n}" } } ], "children": [ { - "id": 3146, + "id": 5224, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3148, - "name": "new SamSidebarComponent", + "id": 5226, + "name": "new SamTitleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 3149, - "name": "pageService", + "id": 5227, + "name": "renderer", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "SamPageService", - "id": 3060 + "name": "Renderer2" } } ], "type": { "type": "reference", - "name": "SamSidebarComponent", - "id": 3145 + "name": "SamTitleComponent", + "id": 5218 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/sidebar/sidebar.component.ts", - "line": 8, - "character": 51 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/title/title.component.ts", + "line": 23, + "character": 36 } ] }, { - "id": 3147, - "name": "pageService", + "id": 5220, + "name": "aligned", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true, + "isPublic": true }, + "decorators": [ + { + "name": "Input", + "type": { + "type": "reference", + "name": "Input" + }, + "arguments": {} + } + ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/sidebar/sidebar.component.ts", - "line": 9, - "character": 33 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/title/title.component.ts", + "line": 17, + "character": 25 } ], "type": { - "type": "reference", - "name": "SamPageService", - "id": 3060 + "type": "instrinct", + "name": "string" } }, { - "id": 3150, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", + "id": 5223, + "name": "css_classes", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "signatures": [ + "sources": [ { - "id": 3151, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/title/title.component.ts", + "line": 23, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"sam title\"" + }, + { + "id": 5219, + "name": "importance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "decorators": [ + { + "name": "Input", + "type": { + "type": "reference", + "name": "Input" + }, + "arguments": {} + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/title/title.component.ts", + "line": 16, + "character": 28 + } + ], + "type": { + "type": "instrinct", + "name": "string" + } + }, + { + "id": 5225, + "name": "renderer", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true, + "isExternal": true + }, + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/title/title.component.ts", + "line": 25, + "character": 30 + } + ], + "type": { + "type": "reference", + "name": "Renderer2" + } + }, + { + "id": 5222, + "name": "titleTpl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true, + "isExternal": true + }, + "decorators": [ + { + "name": "ViewChild", + "type": { + "type": "reference", + "name": "ViewChild" + }, + "arguments": { + "selector": "'titleTemplate'" + } + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/title/title.component.ts", + "line": 21, + "character": 18 + } + ], + "type": { + "type": "reference", + "name": "TemplateRef", + "typeArguments": [ + { + "type": "instrinct", + "name": "any" + } + ] + } + }, + { + "id": 5221, + "name": "weight", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "decorators": [ + { + "name": "Input", + "type": { + "type": "reference", + "name": "Input" + }, + "arguments": {} + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/title/title.component.ts", + "line": 18, + "character": 24 + } + ], + "type": { + "type": "instrinct", + "name": "string" + } + }, + { + "id": 5232, + "name": "getTitleTag", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true + }, + "signatures": [ + { + "id": 5233, + "name": "getTitleTag", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 5234, + "name": "importance", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/title/title.component.ts", + "line": 43, + "character": 13 + } + ] + }, + { + "id": 5230, + "name": "ngAfterViewInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true + }, + "signatures": [ + { + "id": 5231, + "name": "ngAfterViewInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + } + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/title/title.component.ts", + "line": 32, + "character": 17 + } + ] + }, + { + "id": 5228, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true + }, + "signatures": [ + { + "id": 5229, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -25592,8 +25890,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/sidebar/sidebar.component.ts", - "line": 12, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/title/title.component.ts", + "line": 27, "character": 10 } ] @@ -25604,32 +25902,43 @@ "title": "Constructors", "kind": 512, "children": [ - 3146 + 5224 ] }, { "title": "Properties", "kind": 1024, "children": [ - 3147 + 5220, + 5223, + 5219, + 5225, + 5222, + 5221 ] }, { "title": "Methods", "kind": 2048, "children": [ - 3150 + 5232, + 5230, + 5228 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/sidebar/sidebar.component.ts", - "line": 8, - "character": 32 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/title/title.component.ts", + "line": 14, + "character": 30 } ], "implementedTypes": [ + { + "type": "reference", + "name": "AfterViewInit" + }, { "type": "reference", "name": "OnInit" @@ -25642,52 +25951,55 @@ "title": "Classes", "kind": 128, "children": [ - 3145 + 5218 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/sidebar/sidebar.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/title/title.component.ts", "line": 1, "character": 0 } ] }, { - "id": 3167, - "name": "\"sam-ui-elements/src/ui-kit/experimental/youtube/index\"", + "id": 5250, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/youtube/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/youtube/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/youtube/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/youtube/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/youtube/index.ts", "line": 1, "character": 0 } ] }, { - "id": 3153, - "name": "\"sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component\"", + "id": 5236, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", "children": [ { - "id": 3154, + "id": 5237, "name": "SamYoutubeComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -25697,29 +26009,30 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: \"sam-youtube\",\n template: `\n
    \n \n
    \n `\n}" + "obj": "{\n selector: \"sam-youtube\",\n template: `\n
    \n \n
    \n `\n}" } } ], "children": [ { - "id": 3158, + "id": 5241, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3160, + "id": 5243, "name": "new SamYoutubeComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 3161, + "id": 5244, "name": "sanitizer", "kind": 32768, "kindString": "Parameter", @@ -25733,29 +26046,30 @@ "type": { "type": "reference", "name": "SamYoutubeComponent", - "id": 3154 + "id": 5237 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", "line": 20, "character": 28 } ] }, { - "id": 3156, + "id": 5239, "name": "YouTubeVideoUrl", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", "line": 19, "character": 17 } @@ -25766,12 +26080,13 @@ } }, { - "id": 3155, + "id": 5238, "name": "id", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -25789,7 +26104,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", "line": 17, "character": 20 } @@ -25800,18 +26115,19 @@ } }, { - "id": 3159, + "id": 5242, "name": "sanitizer", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", "line": 22, "character": 31 } @@ -25822,16 +26138,17 @@ } }, { - "id": 3157, + "id": 5240, "name": "videoUrl", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", "line": 20, "character": 10 } @@ -25842,16 +26159,17 @@ } }, { - "id": 3162, + "id": 5245, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3163, + "id": 5246, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -25864,30 +26182,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", "line": 24, "character": 10 } ] }, { - "id": 3164, + "id": 5247, "name": "updateVideoUrl", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3165, + "id": 5248, "name": "updateVideoUrl", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 3166, + "id": 5249, "name": "id", "kind": 32768, "kindString": "Parameter", @@ -25906,7 +26225,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", "line": 28, "character": 16 } @@ -25918,31 +26237,31 @@ "title": "Constructors", "kind": 512, "children": [ - 3158 + 5241 ] }, { "title": "Properties", "kind": 1024, "children": [ - 3156, - 3155, - 3159, - 3157 + 5239, + 5238, + 5242, + 5240 ] }, { "title": "Methods", "kind": 2048, "children": [ - 3162, - 3164 + 5245, + 5247 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", "line": 13, "character": 32 } @@ -25960,55 +26279,58 @@ "title": "Classes", "kind": 128, "children": [ - 3154 + 5237 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1521, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache\"", + "id": 2724, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "children": [ { - "id": 1549, + "id": 2752, "name": "AutocompleteCache", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 1568, + "id": 2771, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1570, + "id": 2773, "name": "new AutocompleteCache", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1571, + "id": 2774, "name": "maxBytes", "kind": 32768, "kindString": "Parameter", @@ -26023,30 +26345,31 @@ "type": { "type": "reference", "name": "AutocompleteCache", - "id": 1549 + "id": 2752 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 104, "character": 3 } ] }, { - "id": 1557, + "id": 2760, "name": "byteSize", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 70, "character": 18 } @@ -26058,17 +26381,18 @@ "defaultValue": "0" }, { - "id": 1550, + "id": 2753, "name": "cached", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 65, "character": 16 } @@ -26076,21 +26400,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1551, + "id": 2754, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "indexSignature": [ { - "id": 1552, + "id": 2755, "name": "__index", "kind": 8192, "kindString": "Index signature", "flags": {}, "parameters": [ { - "id": 1553, + "id": 2756, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -26104,13 +26428,13 @@ "type": { "type": "reference", "name": "Cached", - "id": 1522 + "id": 2725 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 65, "character": 17 } @@ -26119,17 +26443,18 @@ } }, { - "id": 1554, + "id": 2757, "name": "default", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 66, "character": 17 } @@ -26137,22 +26462,23 @@ "type": { "type": "reference", "name": "Cached", - "id": 1522 + "id": 2725 }, "defaultValue": " new Cached('default')" }, { - "id": 1555, + "id": 2758, "name": "history", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 67, "character": 17 } @@ -26165,17 +26491,18 @@ "defaultValue": " []" }, { - "id": 1556, + "id": 2759, "name": "historyTuple", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 68, "character": 22 } @@ -26195,7 +26522,7 @@ { "type": "reference", "name": "Cached", - "id": 1522 + "id": 2725 } ] } @@ -26204,18 +26531,19 @@ "defaultValue": "\n [this.default, this.history]" }, { - "id": 1569, + "id": 2772, "name": "maxBytes", "kind": 1024, "kindString": "Property", "flags": { "isConstructorProperty": true, "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 106, "character": 38 } @@ -26226,17 +26554,18 @@ } }, { - "id": 1562, + "id": 2765, "name": "lastAdded", "kind": 262144, "kindString": "Accessor", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "getSignature": [ { - "id": 1563, + "id": 2766, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -26250,24 +26579,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 85, "character": 22 } ] }, { - "id": 1560, + "id": 2763, "name": "lastSearched", "kind": 262144, "kindString": "Accessor", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "getSignature": [ { - "id": 1561, + "id": 2764, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -26280,24 +26610,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 76, "character": 25 } ] }, { - "id": 1558, + "id": 2761, "name": "totalBytes", "kind": 262144, "kindString": "Accessor", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "getSignature": [ { - "id": 1559, + "id": 2762, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -26310,24 +26641,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 72, "character": 23 } ] }, { - "id": 1582, + "id": 2785, "name": "clear", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1583, + "id": 2786, "name": "clear", "kind": 4096, "kindString": "Call signature", @@ -26340,24 +26672,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 135, "character": 14 } ] }, { - "id": 1584, + "id": 2787, "name": "clearAll", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1585, + "id": 2788, "name": "clearAll", "kind": 4096, "kindString": "Call signature", @@ -26370,31 +26703,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 140, "character": 17 } ] }, { - "id": 1572, + "id": 2775, "name": "get", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1573, + "id": 2776, "name": "get", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1574, + "id": 2777, "name": "key", "kind": 32768, "kindString": "Parameter", @@ -26416,31 +26750,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 110, "character": 12 } ] }, { - "id": 1575, + "id": 2778, "name": "insert", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1576, + "id": 2779, "name": "insert", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1577, + "id": 2780, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -26452,7 +26787,7 @@ } }, { - "id": 1578, + "id": 2781, "name": "key", "kind": 32768, "kindString": "Parameter", @@ -26474,31 +26809,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 122, "character": 15 } ] }, { - "id": 1586, + "id": 2789, "name": "insertIntoCache", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1587, + "id": 2790, "name": "insertIntoCache", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1588, + "id": 2791, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -26509,7 +26845,7 @@ } }, { - "id": 1589, + "id": 2792, "name": "key", "kind": 32768, "kindString": "Parameter", @@ -26529,31 +26865,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 145, "character": 25 } ] }, { - "id": 1593, + "id": 2796, "name": "makeSpaceInCache", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1594, + "id": 2797, "name": "makeSpaceInCache", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1595, + "id": 2798, "name": "itemSize", "kind": 32768, "kindString": "Parameter", @@ -26572,31 +26909,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 174, "character": 26 } ] }, { - "id": 1579, + "id": 2782, "name": "remove", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1580, + "id": 2783, "name": "remove", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1581, + "id": 2784, "name": "key", "kind": 32768, "kindString": "Parameter", @@ -26615,31 +26953,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 130, "character": 15 } ] }, { - "id": 1590, + "id": 2793, "name": "updateDefault", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1591, + "id": 2794, "name": "updateDefault", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1592, + "id": 2795, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -26659,32 +26998,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 165, "character": 23 } ] }, { - "id": 1564, + "id": 2767, "name": "arraysEqual", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1565, + "id": 2768, "name": "arraysEqual", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1566, + "id": 2769, "name": "arr1", "kind": 32768, "kindString": "Parameter", @@ -26695,7 +27035,7 @@ } }, { - "id": 1567, + "id": 2770, "name": "arr2", "kind": 32768, "kindString": "Parameter", @@ -26714,7 +27054,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 94, "character": 27 } @@ -26726,81 +27066,83 @@ "title": "Constructors", "kind": 512, "children": [ - 1568 + 2771 ] }, { "title": "Properties", "kind": 1024, "children": [ - 1557, - 1550, - 1554, - 1555, - 1556, - 1569 + 2760, + 2753, + 2757, + 2758, + 2759, + 2772 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 1562, - 1560, - 1558 + 2765, + 2763, + 2761 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1582, - 1584, - 1572, - 1575, - 1586, - 1593, - 1579, - 1590, - 1564 + 2785, + 2787, + 2775, + 2778, + 2789, + 2796, + 2782, + 2793, + 2767 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 64, "character": 30 } ] }, { - "id": 1522, + "id": 2725, "name": "Cached", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 1536, + "id": 2739, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1538, + "id": 2741, "name": "new Cached", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1539, + "id": 2742, "name": "name", "kind": 32768, "kindString": "Parameter", @@ -26811,7 +27153,7 @@ } }, { - "id": 1540, + "id": 2743, "name": "initialValue", "kind": 32768, "kindString": "Parameter", @@ -26827,30 +27169,31 @@ "type": { "type": "reference", "name": "Cached", - "id": 1522 + "id": 2725 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 27, "character": 3 } ] }, { - "id": 1524, + "id": 2727, "name": "_lastValue", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 5, "character": 20 } @@ -26863,17 +27206,18 @@ "defaultValue": " []" }, { - "id": 1523, + "id": 2726, "name": "contents", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 4, "character": 18 } @@ -26886,18 +27230,19 @@ "defaultValue": " []" }, { - "id": 1537, + "id": 2740, "name": "name", "kind": 1024, "kindString": "Property", "flags": { "isConstructorProperty": true, "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 30, "character": 24 } @@ -26908,17 +27253,18 @@ } }, { - "id": 1531, + "id": 2734, "name": "byteSize", "kind": 262144, "kindString": "Accessor", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "getSignature": [ { - "id": 1532, + "id": 2735, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -26931,24 +27277,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 19, "character": 21 } ] }, { - "id": 1527, + "id": 2730, "name": "lastValue", "kind": 262144, "kindString": "Accessor", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "getSignature": [ { - "id": 1528, + "id": 2731, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -26962,24 +27309,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 11, "character": 22 } ] }, { - "id": 1529, + "id": 2732, "name": "length", "kind": 262144, "kindString": "Accessor", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "getSignature": [ { - "id": 1530, + "id": 2733, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -26992,24 +27340,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 15, "character": 19 } ] }, { - "id": 1525, + "id": 2728, "name": "value", "kind": 262144, "kindString": "Accessor", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "getSignature": [ { - "id": 1526, + "id": 2729, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -27028,24 +27377,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 7, "character": 18 } ] }, { - "id": 1544, + "id": 2747, "name": "clear", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1545, + "id": 2748, "name": "clear", "kind": 4096, "kindString": "Call signature", @@ -27058,31 +27408,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 42, "character": 14 } ] }, { - "id": 1546, + "id": 2749, "name": "dedupe", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1547, + "id": 2750, "name": "dedupe", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1548, + "id": 2751, "name": "newContents", "kind": 32768, "kindString": "Parameter", @@ -27102,31 +27453,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 47, "character": 16 } ] }, { - "id": 1541, + "id": 2744, "name": "insert", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1542, + "id": 2745, "name": "insert", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1543, + "id": 2746, "name": "val", "kind": 32768, "kindString": "Parameter", @@ -27147,32 +27499,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 35, "character": 15 } ] }, { - "id": 1533, + "id": 2736, "name": "countBytes", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1534, + "id": 2737, "name": "countBytes", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1535, + "id": 2738, "name": "s", "kind": 32768, "kindString": "Parameter", @@ -27191,7 +27544,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 23, "character": 26 } @@ -27203,42 +27556,42 @@ "title": "Constructors", "kind": 512, "children": [ - 1536 + 2739 ] }, { "title": "Properties", "kind": 1024, "children": [ - 1524, - 1523, - 1537 + 2727, + 2726, + 2740 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 1531, - 1527, - 1529, - 1525 + 2734, + 2730, + 2732, + 2728 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1544, - 1546, - 1541, - 1533 + 2747, + 2749, + 2744, + 2736 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 3, "character": 19 } @@ -27250,36 +27603,38 @@ "title": "Classes", "kind": 128, "children": [ - 1549, - 1522 + 2752, + 2725 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", "line": 1, "character": 0 } ] }, { - "id": 1596, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component\"", + "id": 3879, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "children": [ { - "id": 1597, + "id": 3880, "name": "SamAutocompleteMultiselectComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -27295,23 +27650,24 @@ ], "children": [ { - "id": 1638, + "id": 3921, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1642, + "id": 3925, "name": "new SamAutocompleteMultiselectComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1643, + "id": 3926, "name": "service", "kind": 32768, "kindString": "Parameter", @@ -27329,11 +27685,11 @@ "type": { "type": "reference", "name": "AutocompleteService", - "id": 234 + "id": 1946 } }, { - "id": 1644, + "id": 3927, "name": "ref", "kind": 32768, "kindString": "Parameter", @@ -27344,7 +27700,7 @@ } }, { - "id": 1645, + "id": 3928, "name": "samFormService", "kind": 32768, "kindString": "Parameter", @@ -27352,32 +27708,33 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } } ], "type": { "type": "reference", "name": "SamAutocompleteMultiselectComponent", - "id": 1597 + "id": 3880 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 219, "character": 3 } ] }, { - "id": 1619, + "id": 3902, "name": "addOnIcon", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -27395,7 +27752,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 175, "character": 27 } @@ -27407,12 +27764,13 @@ "defaultValue": "\"fa-chevron-down\"" }, { - "id": 1616, + "id": 3899, "name": "allowAny", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -27430,7 +27788,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 154, "character": 26 } @@ -27442,17 +27800,18 @@ "defaultValue": "false" }, { - "id": 1632, + "id": 3915, "name": "cache", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 209, "character": 15 } @@ -27460,17 +27819,18 @@ "type": { "type": "reference", "name": "AutocompleteCache", - "id": 1549 + "id": 2752 }, "defaultValue": " new AutocompleteCache()" }, { - "id": 1614, + "id": 3897, "name": "categories", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -27489,7 +27849,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 146, "character": 28 } @@ -27507,12 +27867,13 @@ "defaultValue": " []" }, { - "id": 1615, + "id": 3898, "name": "categoryIsSelectable", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -27530,7 +27891,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 150, "character": 38 } @@ -27542,12 +27903,13 @@ "defaultValue": "false" }, { - "id": 1612, + "id": 3895, "name": "control", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -27565,7 +27927,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 133, "character": 25 } @@ -27576,17 +27938,18 @@ } }, { - "id": 1631, + "id": 3914, "name": "debounceTime", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 208, "character": 22 } @@ -27598,12 +27961,13 @@ "defaultValue": "250" }, { - "id": 1617, + "id": 3900, "name": "defaultSearchString", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -27622,7 +27986,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 167, "character": 37 } @@ -27634,12 +27998,13 @@ "defaultValue": "\"\"" }, { - "id": 1622, + "id": 3905, "name": "displayCategory", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -27663,7 +28028,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 192, "character": 33 } @@ -27675,17 +28040,18 @@ "defaultValue": "true" }, { - "id": 1629, + "id": 3912, "name": "displaySpinner", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 206, "character": 23 } @@ -27697,17 +28063,18 @@ "defaultValue": "false" }, { - "id": 1633, + "id": 3916, "name": "endOfList", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 210, "character": 19 } @@ -27719,12 +28086,13 @@ "defaultValue": "true" }, { - "id": 1618, + "id": 3901, "name": "errorMessage", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -27742,7 +28110,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 170, "character": 30 } @@ -27754,12 +28122,13 @@ "defaultValue": "\"\"" }, { - "id": 1599, + "id": 3882, "name": "hiddenText", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -27775,7 +28144,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 86, "character": 37 } @@ -27786,12 +28155,13 @@ } }, { - "id": 1623, + "id": 3906, "name": "hideTextareaLabel", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -27809,7 +28179,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 198, "character": 35 } @@ -27821,12 +28191,13 @@ "defaultValue": "false" }, { - "id": 1610, + "id": 3893, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -27844,7 +28215,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 123, "character": 22 } @@ -27855,17 +28226,18 @@ } }, { - "id": 1625, + "id": 3908, "name": "innerValue", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 202, "character": 19 } @@ -27883,17 +28255,18 @@ "defaultValue": " []" }, { - "id": 1628, + "id": 3911, "name": "inputTimer", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 205, "character": 20 } @@ -27904,17 +28277,18 @@ } }, { - "id": 1626, + "id": 3909, "name": "isDisabled", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 203, "character": 19 } @@ -27926,12 +28300,13 @@ "defaultValue": "false" }, { - "id": 1621, + "id": 3904, "name": "itemTemplate", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -27949,7 +28324,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 185, "character": 30 } @@ -27966,12 +28341,13 @@ } }, { - "id": 1609, + "id": 3892, "name": "label", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -27989,7 +28365,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 118, "character": 23 } @@ -28000,17 +28376,18 @@ } }, { - "id": 1627, + "id": 3910, "name": "list", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 204, "character": 14 } @@ -28022,12 +28399,13 @@ "defaultValue": " []" }, { - "id": 1611, + "id": 3894, "name": "name", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -28045,7 +28423,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 128, "character": 22 } @@ -28056,12 +28434,13 @@ } }, { - "id": 1602, + "id": 3885, "name": "options", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -28079,7 +28458,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 94, "character": 25 } @@ -28097,12 +28476,13 @@ "defaultValue": " []" }, { - "id": 1620, + "id": 3903, "name": "placeholder", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -28120,7 +28500,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 180, "character": 29 } @@ -28132,18 +28512,19 @@ "defaultValue": "\"\"" }, { - "id": 1640, + "id": 3923, "name": "ref", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 222, "character": 15 } @@ -28154,12 +28535,13 @@ } }, { - "id": 1608, + "id": 3891, "name": "required", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -28177,7 +28559,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 113, "character": 26 } @@ -28188,12 +28570,13 @@ } }, { - "id": 1600, + "id": 3883, "name": "resultsList", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -28209,7 +28592,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 87, "character": 39 } @@ -28220,18 +28603,19 @@ } }, { - "id": 1641, + "id": 3924, "name": "samFormService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 223, "character": 26 } @@ -28239,21 +28623,22 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 1624, + "id": 3907, "name": "searchText", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 200, "character": 19 } @@ -28265,14 +28650,15 @@ "defaultValue": "\"\"" }, { - "id": 1639, + "id": 3922, "name": "service", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -28286,7 +28672,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 221, "character": 41 } @@ -28294,16 +28680,17 @@ "type": { "type": "reference", "name": "AutocompleteService", - "id": 234 + "id": 1946 } }, { - "id": 1607, + "id": 3890, "name": "serviceOptions", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -28321,7 +28708,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 108, "character": 32 } @@ -28332,12 +28719,13 @@ } }, { - "id": 1598, + "id": 3881, "name": "textArea", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Gets DOM element for the textarea used for input" @@ -28356,7 +28744,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 85, "character": 33 } @@ -28367,17 +28755,18 @@ } }, { - "id": 1630, + "id": 3913, "name": "textAreaMinHeight", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 207, "character": 27 } @@ -28389,12 +28778,13 @@ "defaultValue": "22" }, { - "id": 1613, + "id": 3896, "name": "useFormService", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -28412,7 +28802,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 137, "character": 32 } @@ -28423,12 +28813,13 @@ } }, { - "id": 1601, + "id": 3884, "name": "wrapper", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -28444,7 +28835,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 88, "character": 34 } @@ -28452,20 +28843,21 @@ "type": { "type": "reference", "name": "LabelWrapper", - "id": 515 + "id": 710 } }, { - "id": 1634, + "id": 3917, "name": "value", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "getSignature": [ { - "id": 1637, + "id": 3920, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -28478,14 +28870,14 @@ ], "setSignature": [ { - "id": 1635, + "id": 3918, "name": "__set", "kind": 1048576, "kindString": "Set signature", "flags": {}, "parameters": [ { - "id": 1636, + "id": 3919, "name": "val", "kind": 32768, "kindString": "Parameter", @@ -28504,36 +28896,37 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 212, "character": 11 }, { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 217, "character": 11 } ] }, { - "id": 1697, + "id": 3980, "name": "addSelectedClass", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1698, + "id": 3981, "name": "addSelectedClass", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1699, + "id": 3982, "name": "elements", "kind": 32768, "kindString": "Parameter", @@ -28544,7 +28937,7 @@ } }, { - "id": 1700, + "id": 3983, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -28563,24 +28956,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 499, "character": 25 } ] }, { - "id": 1701, + "id": 3984, "name": "applyTextAreaWidth", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1702, + "id": 3985, "name": "applyTextAreaWidth", "kind": 4096, "kindString": "Call signature", @@ -28590,7 +28984,7 @@ }, "parameters": [ { - "id": 1703, + "id": 3986, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -28609,24 +29003,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 511, "character": 27 } ] }, { - "id": 1760, + "id": 4043, "name": "blurTextArea", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1761, + "id": 4044, "name": "blurTextArea", "kind": 4096, "kindString": "Call signature", @@ -28639,24 +29034,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 933, "character": 21 } ] }, { - "id": 1704, + "id": 3987, "name": "calculateTextAreaWidth", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1705, + "id": 3988, "name": "calculateTextAreaWidth", "kind": 4096, "kindString": "Call signature", @@ -28667,7 +29063,7 @@ }, "parameters": [ { - "id": 1706, + "id": 3989, "name": "element", "kind": 32768, "kindString": "Parameter", @@ -28686,31 +29082,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 533, "character": 31 } ] }, { - "id": 1762, + "id": 4045, "name": "checkForFocus", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1763, + "id": 4046, "name": "checkForFocus", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1764, + "id": 4047, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -28729,24 +29126,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 937, "character": 22 } ] }, { - "id": 1756, + "id": 4039, "name": "clearSearch", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1757, + "id": 4040, "name": "clearSearch", "kind": 4096, "kindString": "Call signature", @@ -28759,31 +29157,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 920, "character": 20 } ] }, { - "id": 1667, + "id": 3950, "name": "createReturnObject", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1668, + "id": 3951, "name": "createReturnObject", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1669, + "id": 3952, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -28797,7 +29196,7 @@ "type": { "type": "reflection", "declaration": { - "id": 1670, + "id": 3953, "name": "__type", "kind": 65536, "kindString": "Type literal", @@ -28808,24 +29207,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 352, "character": 28 } ] }, { - "id": 1754, + "id": 4037, "name": "deselectAll", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1755, + "id": 4038, "name": "deselectAll", "kind": 4096, "kindString": "Call signature", @@ -28841,24 +29241,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 915, "character": 20 } ] }, { - "id": 1747, + "id": 4030, "name": "deselectItem", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1748, + "id": 4031, "name": "deselectItem", "kind": 4096, "kindString": "Call signature", @@ -28868,7 +29269,7 @@ }, "parameters": [ { - "id": 1749, + "id": 4032, "name": "selectedItem", "kind": 32768, "kindString": "Parameter", @@ -28887,31 +29288,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 883, "character": 21 } ] }, { - "id": 1750, + "id": 4033, "name": "deselectItemOnEnter", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1751, + "id": 4034, "name": "deselectItemOnEnter", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1752, + "id": 4035, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -28922,7 +29324,7 @@ } }, { - "id": 1753, + "id": 4036, "name": "selectedItem", "kind": 32768, "kindString": "Parameter", @@ -28941,24 +29343,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 896, "character": 28 } ] }, { - "id": 1739, + "id": 4022, "name": "displayClearAll", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1740, + "id": 4023, "name": "displayClearAll", "kind": 4096, "kindString": "Call signature", @@ -28971,24 +29374,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 834, "character": 24 } ] }, { - "id": 1733, + "id": 4016, "name": "displayList", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1734, + "id": 4017, "name": "displayList", "kind": 4096, "kindString": "Call signature", @@ -29001,31 +29405,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 811, "character": 20 } ] }, { - "id": 1735, + "id": 4018, "name": "displaySublist", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1736, + "id": 4019, "name": "displaySublist", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1737, + "id": 4020, "name": "category", "kind": 32768, "kindString": "Parameter", @@ -29036,7 +29441,7 @@ } }, { - "id": 1738, + "id": 4021, "name": "categoryIndex", "kind": 32768, "kindString": "Parameter", @@ -29055,24 +29460,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 826, "character": 23 } ] }, { - "id": 1716, + "id": 3999, "name": "fetchFromService", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1717, + "id": 4000, "name": "fetchFromService", "kind": 4096, "kindString": "Call signature", @@ -29082,7 +29488,7 @@ }, "parameters": [ { - "id": 1718, + "id": 4001, "name": "searchString", "kind": 32768, "kindString": "Parameter", @@ -29093,7 +29499,7 @@ } }, { - "id": 1719, + "id": 4002, "name": "options", "kind": 32768, "kindString": "Parameter", @@ -29104,7 +29510,7 @@ } }, { - "id": 1720, + "id": 4003, "name": "context", "kind": 32768, "kindString": "Parameter", @@ -29123,24 +29529,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 632, "character": 25 } ] }, { - "id": 1721, + "id": 4004, "name": "filterOptions", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1722, + "id": 4005, "name": "filterOptions", "kind": 4096, "kindString": "Call signature", @@ -29150,7 +29557,7 @@ }, "parameters": [ { - "id": 1723, + "id": 4006, "name": "str", "kind": 32768, "kindString": "Parameter", @@ -29169,24 +29576,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 674, "character": 22 } ] }, { - "id": 1758, + "id": 4041, "name": "focusTextArea", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1759, + "id": 4042, "name": "focusTextArea", "kind": 4096, "kindString": "Call signature", @@ -29199,31 +29607,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 928, "character": 22 } ] }, { - "id": 1730, + "id": 4013, "name": "getFirstFilteredItem", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1731, + "id": 4014, "name": "getFirstFilteredItem", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1732, + "id": 4015, "name": "array", "kind": 32768, "kindString": "Parameter", @@ -29242,24 +29651,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 803, "character": 29 } ] }, { - "id": 1713, + "id": 3996, "name": "getInternalElementWidth", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1714, + "id": 3997, "name": "getInternalElementWidth", "kind": 4096, "kindString": "Call signature", @@ -29269,7 +29679,7 @@ }, "parameters": [ { - "id": 1715, + "id": 3998, "name": "element", "kind": 32768, "kindString": "Parameter", @@ -29288,24 +29698,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 611, "character": 32 } ] }, { - "id": 1671, + "id": 3954, "name": "getItem", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1672, + "id": 3955, "name": "getItem", "kind": 4096, "kindString": "Call signature", @@ -29318,31 +29729,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 359, "character": 16 } ] }, { - "id": 1673, + "id": 3956, "name": "getItemFromListByIndices", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1674, + "id": 3957, "name": "getItemFromListByIndices", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1675, + "id": 3958, "name": "categoryIndex", "kind": 32768, "kindString": "Parameter", @@ -29353,7 +29765,7 @@ } }, { - "id": 1676, + "id": 3959, "name": "itemIndex", "kind": 32768, "kindString": "Parameter", @@ -29372,24 +29784,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 385, "character": 33 } ] }, { - "id": 1710, + "id": 3993, "name": "getParentContentWidth", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1711, + "id": 3994, "name": "getParentContentWidth", "kind": 4096, "kindString": "Call signature", @@ -29400,7 +29813,7 @@ }, "parameters": [ { - "id": 1712, + "id": 3995, "name": "element", "kind": 32768, "kindString": "Parameter", @@ -29419,24 +29832,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 593, "character": 30 } ] }, { - "id": 1687, + "id": 3970, "name": "getResults", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1688, + "id": 3971, "name": "getResults", "kind": 4096, "kindString": "Call signature", @@ -29449,31 +29863,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 446, "character": 19 } ] }, { - "id": 1689, + "id": 3972, "name": "getSelectedChildIndex", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1690, + "id": 3973, "name": "getSelectedChildIndex", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1691, + "id": 3974, "name": "elements", "kind": 32768, "kindString": "Parameter", @@ -29492,24 +29907,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 460, "character": 30 } ] }, { - "id": 1707, + "id": 3990, "name": "getSelectedContentWidth", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1708, + "id": 3991, "name": "getSelectedContentWidth", "kind": 4096, "kindString": "Call signature", @@ -29520,7 +29936,7 @@ }, "parameters": [ { - "id": 1709, + "id": 3992, "name": "element", "kind": 32768, "kindString": "Parameter", @@ -29545,24 +29961,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 566, "character": 32 } ] }, { - "id": 1651, + "id": 3934, "name": "handleBackspaceEvent", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1652, + "id": 3935, "name": "handleBackspaceEvent", "kind": 4096, "kindString": "Call signature", @@ -29572,7 +29989,7 @@ }, "parameters": [ { - "id": 1653, + "id": 3936, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -29591,31 +30008,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 266, "character": 29 } ] }, { - "id": 1677, + "id": 3960, "name": "handleDownArrow", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1678, + "id": 3961, "name": "handleDownArrow", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1679, + "id": 3962, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -29634,24 +30052,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 389, "character": 24 } ] }, { - "id": 1727, + "id": 4010, "name": "handleEmptyList", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1728, + "id": 4011, "name": "handleEmptyList", "kind": 4096, "kindString": "Call signature", @@ -29661,7 +30080,7 @@ }, "parameters": [ { - "id": 1729, + "id": 4012, "name": "object", "kind": 32768, "kindString": "Parameter", @@ -29681,24 +30100,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 790, "character": 24 } ] }, { - "id": 1657, + "id": 3940, "name": "handleEnterEvent", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1658, + "id": 3941, "name": "handleEnterEvent", "kind": 4096, "kindString": "Call signature", @@ -29709,7 +30129,7 @@ }, "parameters": [ { - "id": 1659, + "id": 3942, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -29728,24 +30148,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 294, "character": 25 } ] }, { - "id": 1654, + "id": 3937, "name": "handleEscapeEvent", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1655, + "id": 3938, "name": "handleEscapeEvent", "kind": 4096, "kindString": "Call signature", @@ -29755,7 +30176,7 @@ }, "parameters": [ { - "id": 1656, + "id": 3939, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -29774,31 +30195,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 279, "character": 26 } ] }, { - "id": 1680, + "id": 3963, "name": "handleUpArrow", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1681, + "id": 3964, "name": "handleUpArrow", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1682, + "id": 3965, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -29817,31 +30239,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 409, "character": 22 } ] }, { - "id": 1648, + "id": 3931, "name": "ngOnChanges", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1649, + "id": 3932, "name": "ngOnChanges", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1650, + "id": 3933, "name": "c", "kind": 32768, "kindString": "Parameter", @@ -29860,24 +30283,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 251, "character": 20 } ] }, { - "id": 1646, + "id": 3929, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1647, + "id": 3930, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -29890,31 +30314,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 226, "character": 17 } ] }, { - "id": 1779, + "id": 4062, "name": "onChangeCallback", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1780, + "id": 4063, "name": "onChangeCallback", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1781, + "id": 4064, "name": "_", "kind": 32768, "kindString": "Parameter", @@ -29933,24 +30358,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 980, "character": 26 } ] }, { - "id": 1782, + "id": 4065, "name": "onTouchedCallback", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1783, + "id": 4066, "name": "onTouchedCallback", "kind": 4096, "kindString": "Call signature", @@ -29963,24 +30389,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 981, "character": 27 } ] }, { - "id": 1683, + "id": 3966, "name": "reachedEndOfList", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1684, + "id": 3967, "name": "reachedEndOfList", "kind": 4096, "kindString": "Call signature", @@ -29995,7 +30422,7 @@ }, "parameters": [ { - "id": 1685, + "id": 3968, "name": "results", "kind": 32768, "kindString": "Parameter", @@ -30009,7 +30436,7 @@ } }, { - "id": 1686, + "id": 3969, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -30031,31 +30458,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 437, "character": 25 } ] }, { - "id": 1770, + "id": 4053, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1771, + "id": 4054, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1772, + "id": 4055, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -30074,31 +30502,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 968, "character": 25 } ] }, { - "id": 1773, + "id": 4056, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1774, + "id": 4057, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1775, + "id": 4058, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -30117,24 +30546,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 972, "character": 26 } ] }, { - "id": 1741, + "id": 4024, "name": "selectItem", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1742, + "id": 4025, "name": "selectItem", "kind": 4096, "kindString": "Call signature", @@ -30144,7 +30574,7 @@ }, "parameters": [ { - "id": 1743, + "id": 4026, "name": "item", "kind": 32768, "kindString": "Parameter", @@ -30163,31 +30593,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 848, "character": 19 } ] }, { - "id": 1744, + "id": 4027, "name": "selectItemByCategory", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1745, + "id": 4028, "name": "selectItemByCategory", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1746, + "id": 4029, "name": "category", "kind": 32768, "kindString": "Parameter", @@ -30206,24 +30637,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 867, "character": 29 } ] }, { - "id": 1660, + "id": 3943, "name": "selectOnEnter", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1661, + "id": 3944, "name": "selectOnEnter", "kind": 4096, "kindString": "Call signature", @@ -30233,7 +30665,7 @@ }, "parameters": [ { - "id": 1662, + "id": 3945, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -30252,31 +30684,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 307, "character": 22 } ] }, { - "id": 1663, + "id": 3946, "name": "selectWithAny", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1664, + "id": 3947, "name": "selectWithAny", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1665, + "id": 3948, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -30287,7 +30720,7 @@ } }, { - "id": 1666, + "id": 3949, "name": "highlighted", "kind": 32768, "kindString": "Parameter", @@ -30306,31 +30739,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 337, "character": 23 } ] }, { - "id": 1776, + "id": 4059, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1777, + "id": 4060, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1778, + "id": 4061, "name": "isDisabled", "kind": 32768, "kindString": "Parameter", @@ -30349,31 +30783,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 976, "character": 25 } ] }, { - "id": 1692, + "id": 3975, "name": "setSelectedChild", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1693, + "id": 3976, "name": "setSelectedChild", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1694, + "id": 3977, "name": "currentSelectedIndex", "kind": 32768, "kindString": "Parameter", @@ -30384,7 +30819,7 @@ } }, { - "id": 1695, + "id": 3978, "name": "direction", "kind": 32768, "kindString": "Parameter", @@ -30395,7 +30830,7 @@ } }, { - "id": 1696, + "id": 3979, "name": "elements", "kind": 32768, "kindString": "Parameter", @@ -30414,24 +30849,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 476, "character": 25 } ] }, { - "id": 1724, + "id": 4007, "name": "sortByCategory", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1725, + "id": 4008, "name": "sortByCategory", "kind": 4096, "kindString": "Call signature", @@ -30441,7 +30877,7 @@ }, "parameters": [ { - "id": 1726, + "id": 4009, "name": "results", "kind": 32768, "kindString": "Parameter", @@ -30472,24 +30908,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 739, "character": 23 } ] }, { - "id": 1765, + "id": 4048, "name": "updateMarked", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1766, + "id": 4049, "name": "updateMarked", "kind": 4096, "kindString": "Call signature", @@ -30502,24 +30939,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 942, "character": 21 } ] }, { - "id": 1767, + "id": 4050, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1768, + "id": 4051, "name": "writeValue", "kind": 4096, "kindString": "Call signature", @@ -30529,7 +30967,7 @@ }, "parameters": [ { - "id": 1769, + "id": 4052, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -30548,19 +30986,20 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 959, "character": 19 } ] }, { - "id": 1603, + "id": 3886, "name": "keyValueConfig", "kind": 2097152, "kindString": "Object literal", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -30578,16 +31017,17 @@ ], "children": [ { - "id": 1604, + "id": 3887, "name": "keyProperty", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 101, "character": 15 } @@ -30599,16 +31039,17 @@ "defaultValue": "\"key\"" }, { - "id": 1606, + "id": 3889, "name": "parentCategoryProperty", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 103, "character": 26 } @@ -30620,16 +31061,17 @@ "defaultValue": "\"category\"" }, { - "id": 1605, + "id": 3888, "name": "valueProperty", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 102, "character": 17 } @@ -30646,15 +31088,15 @@ "title": "Variables", "kind": 32, "children": [ - 1604, - 1606, - 1605 + 3887, + 3889, + 3888 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 100, "character": 32 } @@ -30670,120 +31112,120 @@ "title": "Constructors", "kind": 512, "children": [ - 1638 + 3921 ] }, { "title": "Properties", "kind": 1024, "children": [ - 1619, - 1616, - 1632, - 1614, - 1615, - 1612, - 1631, - 1617, - 1622, - 1629, - 1633, - 1618, - 1599, - 1623, - 1610, - 1625, - 1628, - 1626, - 1621, - 1609, - 1627, - 1611, - 1602, - 1620, - 1640, - 1608, - 1600, - 1641, - 1624, - 1639, - 1607, - 1598, - 1630, - 1613, - 1601 + 3902, + 3899, + 3915, + 3897, + 3898, + 3895, + 3914, + 3900, + 3905, + 3912, + 3916, + 3901, + 3882, + 3906, + 3893, + 3908, + 3911, + 3909, + 3904, + 3892, + 3910, + 3894, + 3885, + 3903, + 3923, + 3891, + 3883, + 3924, + 3907, + 3922, + 3890, + 3881, + 3913, + 3896, + 3884 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 1634 + 3917 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1697, - 1701, - 1760, - 1704, - 1762, - 1756, - 1667, - 1754, - 1747, - 1750, - 1739, - 1733, - 1735, - 1716, - 1721, - 1758, - 1730, - 1713, - 1671, - 1673, - 1710, - 1687, - 1689, - 1707, - 1651, - 1677, - 1727, - 1657, - 1654, - 1680, - 1648, - 1646, - 1779, - 1782, - 1683, - 1770, - 1773, - 1741, - 1744, - 1660, - 1663, - 1776, - 1692, - 1724, - 1765, - 1767 + 3980, + 3984, + 4043, + 3987, + 4045, + 4039, + 3950, + 4037, + 4030, + 4033, + 4022, + 4016, + 4018, + 3999, + 4004, + 4041, + 4013, + 3996, + 3954, + 3956, + 3993, + 3970, + 3972, + 3990, + 3934, + 3960, + 4010, + 3940, + 3937, + 3963, + 3931, + 3929, + 4062, + 4065, + 3966, + 4053, + 4056, + 4024, + 4027, + 3943, + 3946, + 4059, + 3975, + 4007, + 4048, + 4050 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 1603 + 3886 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 80, "character": 48 } @@ -30796,26 +31238,28 @@ ] }, { - "id": 1784, + "id": 4067, "name": "KeyValueConfig", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 1788, + "id": 4071, "name": "categoryProperty", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 989, "character": 18 } @@ -30826,16 +31270,17 @@ } }, { - "id": 1785, + "id": 4068, "name": "keyProperty", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 986, "character": 13 } @@ -30846,17 +31291,18 @@ } }, { - "id": 1789, + "id": 4072, "name": "parentCategoryProperty", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 990, "character": 24 } @@ -30867,17 +31313,18 @@ } }, { - "id": 1787, + "id": 4070, "name": "subheadProperty", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 988, "character": 17 } @@ -30888,16 +31335,17 @@ } }, { - "id": 1786, + "id": 4069, "name": "valueProperty", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 987, "character": 15 } @@ -30913,17 +31361,17 @@ "title": "Properties", "kind": 1024, "children": [ - 1788, - 1785, - 1789, - 1787, - 1786 + 4071, + 4068, + 4072, + 4070, + 4069 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 985, "character": 31 } @@ -30935,42 +31383,44 @@ "title": "Classes", "kind": 128, "children": [ - 1597 + 3880 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 1784 + 4067 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1790, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/index\"", + "id": 4073, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/index.ts", "children": [ { - "id": 1791, + "id": 4074, "name": "SamAutocompleteMultiselectModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -30986,7 +31436,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/index.ts", "line": 24, "character": 45 } @@ -30998,35 +31448,37 @@ "title": "Classes", "kind": 128, "children": [ - 1791 + 4074 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/index.ts", "line": 1, "character": 0 } ] }, { - "id": 284, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component\"", + "id": 2799, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", "children": [ { - "id": 285, + "id": 2800, "name": "SamAutocompleteComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -31042,23 +31494,24 @@ ], "children": [ { - "id": 333, + "id": 2851, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 337, + "id": 2855, "name": "new SamAutocompleteComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 338, + "id": 2856, "name": "autocompleteService", "kind": 32768, "kindString": "Parameter", @@ -31076,11 +31529,11 @@ "type": { "type": "reference", "name": "AutocompleteService", - "id": 234 + "id": 1946 } }, { - "id": 339, + "id": 2857, "name": "samFormService", "kind": 32768, "kindString": "Parameter", @@ -31088,11 +31541,11 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 340, + "id": 2858, "name": "cdr", "kind": 32768, "kindString": "Parameter", @@ -31106,25 +31559,26 @@ "type": { "type": "reference", "name": "SamAutocompleteComponent", - "id": 285 + "id": 2800 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 191, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 195, "character": 62 } ] }, { - "id": 301, + "id": 2816, "name": "allowAny", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -31142,8 +31596,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 78, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 79, "character": 26 } ], @@ -31154,13 +31608,14 @@ "defaultValue": "false" }, { - "id": 334, + "id": 2852, "name": "autocompleteService", "kind": 1024, "kindString": "Property", "flags": { "isConstructorProperty": true, "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -31175,24 +31630,49 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 193, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 197, "character": 52 } ], "type": { "type": "reference", "name": "AutocompleteService", - "id": 234 + "id": 1946 } }, { - "id": 303, + "id": 2839, + "name": "cache", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 176, + "character": 14 + } + ], + "type": { + "type": "reference", + "name": "AutocompleteCache", + "id": 2752 + }, + "defaultValue": " new AutocompleteCache()" + }, + { + "id": 2818, "name": "categories", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -31210,8 +31690,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 86, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 87, "character": 28 } ], @@ -31222,19 +31702,20 @@ "defaultValue": " []" }, { - "id": 336, + "id": 2854, "name": "cdr", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 195, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 199, "character": 15 } ], @@ -31244,12 +31725,13 @@ } }, { - "id": 304, + "id": 2819, "name": "control", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -31267,8 +31749,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 90, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 91, "character": 25 } ], @@ -31278,18 +31760,42 @@ } }, { - "id": 317, + "id": 2837, + "name": "debounceTime", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 174, + "character": 21 + } + ], + "type": { + "type": "instrinct", + "name": "number" + }, + "defaultValue": "250" + }, + { + "id": 2832, "name": "endOfList", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 166, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 167, "character": 18 } ], @@ -31300,12 +31806,13 @@ "defaultValue": "true" }, { - "id": 307, + "id": 2822, "name": "enterEvent", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -31323,8 +31830,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 105, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 106, "character": 29 } ], @@ -31341,12 +31848,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 306, + "id": 2821, "name": "errorMessage", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -31364,8 +31872,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 99, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 100, "character": 30 } ], @@ -31375,18 +31883,19 @@ } }, { - "id": 321, + "id": 2836, "name": "filteredKeyValuePairs", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 172, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 173, "character": 30 } ], @@ -31396,18 +31905,19 @@ } }, { - "id": 315, + "id": 2830, "name": "hasFocus", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 163, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 164, "character": 17 } ], @@ -31418,18 +31928,19 @@ "defaultValue": "false" }, { - "id": 316, + "id": 2831, "name": "hasServiceError", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 164, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 165, "character": 24 } ], @@ -31440,12 +31951,13 @@ "defaultValue": "false" }, { - "id": 295, + "id": 2810, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -31463,8 +31975,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 65, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 66, "character": 22 } ], @@ -31474,12 +31986,13 @@ } }, { - "id": 309, + "id": 2824, "name": "httpRequest", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -31497,8 +32010,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 156, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 157, "character": 29 } ], @@ -31514,12 +32027,13 @@ } }, { - "id": 293, + "id": 2808, "name": "id", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -31537,8 +32051,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 57, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 58, "character": 20 } ], @@ -31548,18 +32062,19 @@ } }, { - "id": 311, + "id": 2826, "name": "innerValue", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 159, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 160, "character": 19 } ], @@ -31570,12 +32085,13 @@ "defaultValue": "\"\"" }, { - "id": 288, + "id": 2803, "name": "input", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -31591,8 +32107,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 42, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 43, "character": 27 } ], @@ -31602,18 +32118,41 @@ } }, { - "id": 312, + "id": 2838, + "name": "inputTimer", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 175, + "character": 19 + } + ], + "type": { + "type": "instrinct", + "name": "any" + } + }, + { + "id": 2827, "name": "inputValue", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 160, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 161, "character": 19 } ], @@ -31624,12 +32163,13 @@ "defaultValue": "\"\"" }, { - "id": 308, + "id": 2823, "name": "itemTemplate", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Allow to insert a customized template for suggestions to use" @@ -31646,8 +32186,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 109, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 110, "character": 23 } ], @@ -31663,18 +32203,19 @@ } }, { - "id": 327, + "id": 2845, "name": "keyEvents", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 188, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 192, "character": 18 } ], @@ -31691,18 +32232,19 @@ "defaultValue": " new Subject()" }, { - "id": 320, + "id": 2835, "name": "keyValuePairs", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 171, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 172, "character": 22 } ], @@ -31712,12 +32254,13 @@ } }, { - "id": 294, + "id": 2809, "name": "labelText", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -31735,8 +32278,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 61, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 62, "character": 27 } ], @@ -31746,18 +32289,19 @@ } }, { - "id": 319, + "id": 2834, "name": "lastReturnedResults", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 169, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 170, "character": 28 } ], @@ -31773,18 +32317,19 @@ } }, { - "id": 318, + "id": 2833, "name": "lastSearchedValue", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 167, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 168, "character": 26 } ], @@ -31794,12 +32339,13 @@ } }, { - "id": 291, + "id": 2806, "name": "name", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -31817,8 +32363,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 49, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 50, "character": 22 } ], @@ -31828,12 +32374,13 @@ } }, { - "id": 296, + "id": 2811, "name": "options", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -31851,8 +32398,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 69, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 70, "character": 25 } ], @@ -31868,12 +32415,13 @@ } }, { - "id": 305, + "id": 2820, "name": "required", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -31891,8 +32439,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 94, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 95, "character": 26 } ], @@ -31902,18 +32450,19 @@ } }, { - "id": 310, + "id": 2825, "name": "results", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 158, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 159, "character": 16 } ], @@ -31929,18 +32478,19 @@ } }, { - "id": 322, + "id": 2840, "name": "resultsAvailable", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 174, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 178, "character": 25 } ], @@ -31951,12 +32501,13 @@ "defaultValue": "\" results available. Use up and down arrows to scroll through results. Hit enter to select.\"" }, { - "id": 286, + "id": 2801, "name": "resultsList", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -31972,8 +32523,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 40, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 41, "character": 39 } ], @@ -31983,12 +32534,13 @@ } }, { - "id": 287, + "id": 2802, "name": "resultsListKV", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -32004,8 +32556,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 41, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 42, "character": 43 } ], @@ -32015,41 +32567,43 @@ } }, { - "id": 335, + "id": 2853, "name": "samFormService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 194, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 198, "character": 26 } ], "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 314, + "id": 2829, "name": "selectedChild", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 162, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 163, "character": 22 } ], @@ -32059,18 +32613,19 @@ } }, { - "id": 313, + "id": 2828, "name": "selectedInputValue", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 161, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 162, "character": 27 } ], @@ -32080,12 +32635,13 @@ } }, { - "id": 289, + "id": 2804, "name": "srOnly", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -32101,8 +32657,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 43, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 44, "character": 29 } ], @@ -32112,12 +32668,13 @@ } }, { - "id": 292, + "id": 2807, "name": "tabIndex", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -32135,8 +32692,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 53, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 54, "character": 26 } ], @@ -32147,12 +32704,13 @@ "defaultValue": "0" }, { - "id": 302, + "id": 2817, "name": "useFormService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Toggles validations to display with SamFormService events" @@ -32169,8 +32727,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 82, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 83, "character": 25 } ], @@ -32180,12 +32738,13 @@ } }, { - "id": 290, + "id": 2805, "name": "wrapper", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -32201,8 +32760,8 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 44, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 45, "character": 31 } ], @@ -32212,16 +32771,17 @@ } }, { - "id": 354, + "id": 2872, "name": "errors", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "getSignature": [ { - "id": 355, + "id": 2873, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -32234,24 +32794,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 282, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 286, "character": 12 } ] }, { - "id": 323, + "id": 2841, "name": "value", "kind": 262144, "kindString": "Accessor", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "getSignature": [ { - "id": 324, + "id": 2842, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -32264,14 +32825,14 @@ ], "setSignature": [ { - "id": 325, + "id": 2843, "name": "__set", "kind": 1048576, "kindString": "Set signature", "flags": {}, "parameters": [ { - "id": 326, + "id": 2844, "name": "val", "kind": 32768, "kindString": "Parameter", @@ -32290,35 +32851,36 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 177, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 181, "character": 18 }, { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 181, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 185, "character": 18 } ] }, { - "id": 391, + "id": 2909, "name": "checkCategoryIndex", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 392, + "id": 2910, "name": "checkCategoryIndex", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 393, + "id": 2911, "name": "currentItem", "kind": 32768, "kindString": "Parameter", @@ -32337,30 +32899,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 473, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 498, "character": 20 } ] }, { - "id": 416, + "id": 2934, "name": "checkForFocus", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 417, + "id": 2935, "name": "checkForFocus", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 418, + "id": 2936, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -32379,30 +32942,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 592, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 617, "character": 15 } ] }, { - "id": 372, + "id": 2890, "name": "checkLastSearch", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 373, + "id": 2891, "name": "checkLastSearch", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 374, + "id": 2892, "name": "searchString", "kind": 32768, "kindString": "Parameter", @@ -32421,23 +32985,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 371, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 396, "character": 17 } ] }, { - "id": 430, + "id": 2948, "name": "clearDropdown", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 431, + "id": 2949, "name": "clearDropdown", "kind": 4096, "kindString": "Call signature", @@ -32450,23 +33015,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 684, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 709, "character": 15 } ] }, { - "id": 435, + "id": 2953, "name": "clearInput", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 436, + "id": 2954, "name": "clearInput", "kind": 4096, "kindString": "Call signature", @@ -32479,30 +33045,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 697, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 722, "character": 12 } ] }, { - "id": 426, + "id": 2944, "name": "filterKeyValuePairs", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 427, + "id": 2945, "name": "filterKeyValuePairs", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 428, + "id": 2946, "name": "subStr", "kind": 32768, "kindString": "Parameter", @@ -32513,7 +33080,7 @@ } }, { - "id": 429, + "id": 2947, "name": "keyValuePairs", "kind": 32768, "kindString": "Parameter", @@ -32532,30 +33099,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 642, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 667, "character": 21 } ] }, { - "id": 422, + "id": 2940, "name": "filterResults", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 423, + "id": 2941, "name": "filterResults", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 424, + "id": 2942, "name": "subStr", "kind": 32768, "kindString": "Parameter", @@ -32566,7 +33134,7 @@ } }, { - "id": 425, + "id": 2943, "name": "stringArray", "kind": 32768, "kindString": "Parameter", @@ -32597,30 +33165,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 630, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 655, "character": 15 } ] }, { - "id": 410, + "id": 2928, "name": "getSelectedChildIndex", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 411, + "id": 2929, "name": "getSelectedChildIndex", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 412, + "id": 2930, "name": "children", "kind": 32768, "kindString": "Parameter", @@ -32639,23 +33208,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 575, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 600, "character": 23 } ] }, { - "id": 370, + "id": 2888, "name": "handleBackspaceKeyup", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 371, + "id": 2889, "name": "handleBackspaceKeyup", "kind": 4096, "kindString": "Call signature", @@ -32668,30 +33238,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 361, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 386, "character": 22 } ] }, { - "id": 384, + "id": 2902, "name": "incrementIfFirstCategory", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 385, + "id": 2903, "name": "incrementIfFirstCategory", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 386, + "id": 2904, "name": "isFirstCategory", "kind": 32768, "kindString": "Parameter", @@ -32710,30 +33281,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 459, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 484, "character": 26 } ] }, { - "id": 432, + "id": 2950, "name": "inputFocusHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 433, + "id": 2951, "name": "inputFocusHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 434, + "id": 2952, "name": "evt", "kind": 32768, "kindString": "Parameter", @@ -32752,30 +33324,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 690, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 715, "character": 19 } ] }, { - "id": 437, + "id": 2955, "name": "isCategory", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 438, + "id": 2956, "name": "isCategory", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 439, + "id": 2957, "name": "object", "kind": 32768, "kindString": "Parameter", @@ -32794,30 +33367,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 709, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 734, "character": 12 } ] }, { - "id": 400, + "id": 2918, "name": "isFirstItem", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 401, + "id": 2919, "name": "isFirstItem", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 402, + "id": 2920, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -32836,30 +33410,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 543, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 568, "character": 13 } ] }, { - "id": 387, + "id": 2905, "name": "isFirstItemCategory", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 388, + "id": 2906, "name": "isFirstItemCategory", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 389, + "id": 2907, "name": "item", "kind": 32768, "kindString": "Parameter", @@ -32870,7 +33445,7 @@ } }, { - "id": 390, + "id": 2908, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -32889,30 +33464,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 463, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 488, "character": 21 } ] }, { - "id": 358, + "id": 2876, "name": "isKeyValuePair", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 359, + "id": 2877, "name": "isKeyValuePair", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 360, + "id": 2878, "name": "arr", "kind": 32768, "kindString": "Parameter", @@ -32937,30 +33513,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 292, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 296, "character": 16 } ] }, { - "id": 452, + "id": 2970, "name": "itemClass", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 453, + "id": 2971, "name": "itemClass", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 454, + "id": 2972, "name": "obj", "kind": 32768, "kindString": "Parameter", @@ -32974,22 +33551,24 @@ "type": { "type": "reflection", "declaration": { - "id": 455, + "id": 2973, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 456, + "id": 2974, "name": "category", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 749, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 774, "character": 14 } ], @@ -33000,15 +33579,17 @@ "defaultValue": " obj && obj.isCategory" }, { - "id": 458, + "id": 2976, "name": "indented", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 751, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 776, "character": 14 } ], @@ -33019,15 +33600,17 @@ "defaultValue": " hasCategories && notCategory" }, { - "id": 457, + "id": 2975, "name": "selectable", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 750, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 775, "character": 16 } ], @@ -33043,9 +33626,9 @@ "title": "Variables", "kind": 32, "children": [ - 456, - 458, - 457 + 2974, + 2976, + 2975 ] } ] @@ -33055,30 +33638,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 745, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 770, "character": 11 } ] }, { - "id": 381, + "id": 2899, "name": "listExists", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 382, + "id": 2900, "name": "listExists", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 383, + "id": 2901, "name": "list", "kind": 32768, "kindString": "Parameter", @@ -33097,23 +33681,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 452, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 477, "character": 12 } ] }, { - "id": 352, + "id": 2870, "name": "ngAfterViewInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 353, + "id": 2871, "name": "ngAfterViewInit", "kind": 4096, "kindString": "Call signature", @@ -33126,30 +33711,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 274, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 278, "character": 17 } ] }, { - "id": 341, + "id": 2859, "name": "ngOnChanges", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 342, + "id": 2860, "name": "ngOnChanges", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 343, + "id": 2861, "name": "changes", "kind": 32768, "kindString": "Parameter", @@ -33168,23 +33754,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 197, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 201, "character": 13 } ] }, { - "id": 350, + "id": 2868, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 351, + "id": 2869, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -33197,23 +33784,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 251, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 255, "character": 10 } ] }, { - "id": 356, + "id": 2874, "name": "onChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 357, + "id": 2875, "name": "onChange", "kind": 4096, "kindString": "Call signature", @@ -33226,30 +33814,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 286, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 290, "character": 10 } ] }, { - "id": 378, + "id": 2896, "name": "onDownArrowDown", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 379, + "id": 2897, "name": "onDownArrowDown", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 380, + "id": 2898, "name": "list", "kind": 32768, "kindString": "Parameter", @@ -33268,30 +33857,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 410, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 435, "character": 17 } ] }, { - "id": 407, + "id": 2925, "name": "onEnterDown", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 408, + "id": 2926, "name": "onEnterDown", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 409, + "id": 2927, "name": "list", "kind": 32768, "kindString": "Parameter", @@ -33310,30 +33900,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 555, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 580, "character": 13 } ] }, { - "id": 367, + "id": 2885, "name": "onKeyUpUsingService", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 368, + "id": 2886, "name": "onKeyUpUsingService", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 369, + "id": 2887, "name": "searchString", "kind": 32768, "kindString": "Parameter", @@ -33352,30 +33943,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 342, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 346, "character": 21 } ] }, { - "id": 364, + "id": 2882, "name": "onKeyUpWithOptions", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 365, + "id": 2883, "name": "onKeyUpWithOptions", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 366, + "id": 2884, "name": "searchString", "kind": 32768, "kindString": "Parameter", @@ -33394,30 +33986,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 329, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 333, "character": 20 } ] }, { - "id": 375, + "id": 2893, "name": "onKeydown", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 376, + "id": 2894, "name": "onKeydown", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 377, + "id": 2895, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -33436,30 +34029,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 380, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 405, "character": 11 } ] }, { - "id": 361, + "id": 2879, "name": "onKeyup", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 362, + "id": 2880, "name": "onKeyup", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 363, + "id": 2881, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -33478,24 +34072,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 300, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 304, "character": 9 } ] }, { - "id": 328, + "id": 2846, "name": "onTouchedCallback", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 329, + "id": 2847, "name": "onTouchedCallback", "kind": 4096, "kindString": "Call signature", @@ -33508,30 +34103,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 190, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 194, "character": 26 } ] }, { - "id": 397, + "id": 2915, "name": "onUpArrowDown", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 398, + "id": 2916, "name": "onUpArrowDown", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 399, + "id": 2917, "name": "list", "kind": 32768, "kindString": "Parameter", @@ -33550,31 +34146,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 491, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 516, "character": 15 } ] }, { - "id": 330, + "id": 2848, "name": "propogateChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 331, + "id": 2849, "name": "propogateChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 332, + "id": 2850, "name": "_", "kind": 32768, "kindString": "Parameter", @@ -33593,30 +34190,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 191, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 195, "character": 24 } ] }, { - "id": 413, + "id": 2931, "name": "pushSROnlyMessage", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 414, + "id": 2932, "name": "pushSROnlyMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 415, + "id": 2933, "name": "message", "kind": 32768, "kindString": "Parameter", @@ -33635,30 +34233,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 586, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 611, "character": 19 } ] }, { - "id": 443, + "id": 2961, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 444, + "id": 2962, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 445, + "id": 2963, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -33677,30 +34276,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 733, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 758, "character": 18 } ] }, { - "id": 446, + "id": 2964, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 447, + "id": 2965, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 448, + "id": 2966, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -33719,30 +34319,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 737, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 762, "character": 19 } ] }, { - "id": 347, + "id": 2865, "name": "requestError", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 348, + "id": 2866, "name": "requestError", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 349, + "id": 2867, "name": "err", "kind": 32768, "kindString": "Parameter", @@ -33761,30 +34362,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 240, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 244, "character": 14 } ] }, { - "id": 344, + "id": 2862, "name": "requestSuccess", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 345, + "id": 2863, "name": "requestSuccess", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 346, + "id": 2864, "name": "data", "kind": 32768, "kindString": "Parameter", @@ -33803,30 +34405,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 206, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 210, "character": 16 } ] }, { - "id": 449, + "id": 2967, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 450, + "id": 2968, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 451, + "id": 2969, "name": "isDisabled", "kind": 32768, "kindString": "Parameter", @@ -33845,31 +34448,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 741, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 766, "character": 18 } ] }, { - "id": 459, + "id": 2977, "name": "setEndOfList", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 460, + "id": 2978, "name": "setEndOfList", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 461, + "id": 2979, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -33880,7 +34484,7 @@ } }, { - "id": 462, + "id": 2980, "name": "length", "kind": 32768, "kindString": "Parameter", @@ -33899,30 +34503,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 755, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 780, "character": 22 } ] }, { - "id": 394, + "id": 2912, "name": "setMessage", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 395, + "id": 2913, "name": "setMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 396, + "id": 2914, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -33941,30 +34546,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 484, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 509, "character": 12 } ] }, { - "id": 403, + "id": 2921, "name": "setScrollTop", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 404, + "id": 2922, "name": "setScrollTop", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 405, + "id": 2923, "name": "isFirstItemCategory", "kind": 32768, "kindString": "Parameter", @@ -33975,7 +34581,7 @@ } }, { - "id": 406, + "id": 2924, "name": "list", "kind": 32768, "kindString": "Parameter", @@ -33994,30 +34600,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 549, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 574, "character": 14 } ] }, { - "id": 419, + "id": 2937, "name": "setSelected", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 420, + "id": 2938, "name": "setSelected", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 421, + "id": 2939, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -34036,30 +34643,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 606, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 631, "character": 13 } ] }, { - "id": 440, + "id": 2958, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 441, + "id": 2959, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 442, + "id": 2960, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -34078,19 +34686,20 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 717, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 742, "character": 12 } ] }, { - "id": 297, + "id": 2812, "name": "config", "kind": 2097152, "kindString": "Object literal", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -34108,26 +34717,28 @@ ], "children": [ { - "id": 298, + "id": 2813, "name": "keyValueConfig", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 299, + "id": 2814, "name": "keyProperty", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 74, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 75, "character": 35 } ], @@ -34138,17 +34749,18 @@ "defaultValue": "\"key\"" }, { - "id": 300, + "id": 2815, "name": "valueProperty", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 74, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 75, "character": 57 } ], @@ -34164,15 +34776,15 @@ "title": "Variables", "kind": 32, "children": [ - 299, - 300 + 2814, + 2815 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 74, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 75, "character": 20 } ], @@ -34187,14 +34799,14 @@ "title": "Object literals", "kind": 2097152, "children": [ - 298 + 2813 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 73, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 74, "character": 24 } ], @@ -34209,119 +34821,122 @@ "title": "Constructors", "kind": 512, "children": [ - 333 + 2851 ] }, { "title": "Properties", "kind": 1024, "children": [ - 301, - 334, - 303, - 336, - 304, - 317, - 307, - 306, - 321, - 315, - 316, - 295, - 309, - 293, - 311, - 288, - 312, - 308, - 327, - 320, - 294, - 319, - 318, - 291, - 296, - 305, - 310, - 322, - 286, - 287, - 335, - 314, - 313, - 289, - 292, - 302, - 290 + 2816, + 2852, + 2839, + 2818, + 2854, + 2819, + 2837, + 2832, + 2822, + 2821, + 2836, + 2830, + 2831, + 2810, + 2824, + 2808, + 2826, + 2803, + 2838, + 2827, + 2823, + 2845, + 2835, + 2809, + 2834, + 2833, + 2806, + 2811, + 2820, + 2825, + 2840, + 2801, + 2802, + 2853, + 2829, + 2828, + 2804, + 2807, + 2817, + 2805 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 354, - 323 + 2872, + 2841 ] }, { "title": "Methods", "kind": 2048, "children": [ - 391, - 416, - 372, - 430, - 435, - 426, - 422, - 410, - 370, - 384, - 432, - 437, - 400, - 387, - 358, - 452, - 381, - 352, - 341, - 350, - 356, - 378, - 407, - 367, - 364, - 375, - 361, - 328, - 397, - 330, - 413, - 443, - 446, - 347, - 344, - 449, - 459, - 394, - 403, - 419, - 440 + 2909, + 2934, + 2890, + 2948, + 2953, + 2944, + 2940, + 2928, + 2888, + 2902, + 2950, + 2955, + 2918, + 2905, + 2876, + 2970, + 2899, + 2870, + 2859, + 2868, + 2874, + 2896, + 2925, + 2885, + 2882, + 2893, + 2879, + 2846, + 2915, + 2848, + 2931, + 2961, + 2964, + 2865, + 2862, + 2967, + 2977, + 2912, + 2921, + 2937, + 2958 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 297 + 2812 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 38, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 39, "character": 37 } ], @@ -34337,22 +34952,26 @@ ] }, { - "id": 463, + "id": 2981, "name": "AUTOCOMPLETE_VALUE_ACCESSOR", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExternal": true + }, "children": [ { - "id": 466, + "id": 2984, "name": "multi", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 30, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 31, "character": 7 } ], @@ -34363,15 +34982,17 @@ "defaultValue": "true" }, { - "id": 464, + "id": 2982, "name": "provide", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 28, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 29, "character": 9 } ], @@ -34388,15 +35009,17 @@ "defaultValue": " NG_VALUE_ACCESSOR" }, { - "id": 465, + "id": 2983, "name": "useExisting", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 29, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 30, "character": 13 } ], @@ -34418,16 +35041,16 @@ "title": "Variables", "kind": 32, "children": [ - 466, - 464, - 465 + 2984, + 2982, + 2983 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 27, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "line": 28, "character": 33 } ], @@ -34442,42 +35065,44 @@ "title": "Classes", "kind": 128, "children": [ - 285 + 2800 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 463 + 2981 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", "line": 1, "character": 0 } ] }, { - "id": 233, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service\"", + "id": 1945, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", "children": [ { - "id": 234, + "id": 1946, "name": "AutocompleteService", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -34491,23 +35116,24 @@ ], "children": [ { - "id": 238, + "id": 1950, "name": "fetch", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 239, + "id": 1951, "name": "fetch", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 240, + "id": 1952, "name": "val", "kind": 32768, "kindString": "Parameter", @@ -34518,7 +35144,7 @@ } }, { - "id": 241, + "id": 1953, "name": "pageEnd", "kind": 32768, "kindString": "Parameter", @@ -34529,7 +35155,7 @@ } }, { - "id": 242, + "id": 1954, "name": "serviceOptions", "kind": 32768, "kindString": "Parameter", @@ -34556,30 +35182,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", "line": 10, "character": 7 } ] }, { - "id": 235, + "id": 1947, "name": "setFetchMethod", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 236, + "id": 1948, "name": "setFetchMethod", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 237, + "id": 1949, "name": "_", "kind": 32768, "kindString": "Parameter", @@ -34600,7 +35227,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", "line": 6, "character": 16 } @@ -34612,28 +35239,33 @@ "title": "Methods", "kind": 2048, "children": [ - 238, - 235 + 1950, + 1947 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", "line": 5, "character": 32 } ], "implementedBy": [ + { + "type": "reference", + "name": "ACTestService", + "id": 1956 + }, { "type": "reference", "name": "CountryService", - "id": 3199 + "id": 5282 }, { "type": "reference", "name": "StateService", - "id": 3171 + "id": 5254 } ] } @@ -34643,35 +35275,37 @@ "title": "Classes", "kind": 128, "children": [ - 234 + 1946 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", "line": 1, "character": 0 } ] }, { - "id": 759, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/autocomplete/index\"", + "id": 3181, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/autocomplete/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/index.ts", "children": [ { - "id": 760, + "id": 3182, "name": "SamAutocompleteModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -34687,7 +35321,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/index.ts", "line": 31, "character": 34 } @@ -34699,35 +35333,37 @@ "title": "Classes", "kind": 128, "children": [ - 760 + 3182 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/index.ts", "line": 1, "character": 0 } ] }, { - "id": 592, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component\"", + "id": 3014, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "children": [ { - "id": 593, + "id": 3015, "name": "SamAutocompleteComponentRefactor", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -34743,23 +35379,24 @@ ], "children": [ { - "id": 646, + "id": 3068, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 651, + "id": 3073, "name": "new SamAutocompleteComponentRefactor", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 652, + "id": 3074, "name": "_service", "kind": 32768, "kindString": "Parameter", @@ -34777,11 +35414,11 @@ "type": { "type": "reference", "name": "AutocompleteService", - "id": 234 + "id": 1946 } }, { - "id": 653, + "id": 3075, "name": "_cdr", "kind": 32768, "kindString": "Parameter", @@ -34792,7 +35429,7 @@ } }, { - "id": 654, + "id": 3076, "name": "_renderer", "kind": 32768, "kindString": "Parameter", @@ -34803,7 +35440,7 @@ } }, { - "id": 655, + "id": 3077, "name": "samFormService", "kind": 32768, "kindString": "Parameter", @@ -34811,37 +35448,38 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } } ], "type": { "type": "reference", "name": "SamAutocompleteComponentRefactor", - "id": 593 + "id": 3015 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 222, "character": 42 } ] }, { - "id": 645, + "id": 3067, "name": "_blurSubscription", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 222, "character": 27 } @@ -34852,17 +35490,18 @@ } }, { - "id": 634, + "id": 3056, "name": "_cache", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 208, "character": 16 } @@ -34873,17 +35512,18 @@ } }, { - "id": 632, + "id": 3054, "name": "_categoryProperty", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 205, "character": 27 } @@ -34894,18 +35534,19 @@ } }, { - "id": 648, + "id": 3070, "name": "_cdr", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 225, "character": 14 } @@ -34916,17 +35557,18 @@ } }, { - "id": 627, + "id": 3049, "name": "_endOfList", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 192, "character": 20 } @@ -34938,17 +35580,18 @@ "defaultValue": "true" }, { - "id": 635, + "id": 3057, "name": "_filter", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 210, "character": 17 } @@ -34956,21 +35599,21 @@ "type": { "type": "reflection", "declaration": { - "id": 636, + "id": 3058, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 637, + "id": 3059, "name": "__call", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 638, + "id": 3060, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -35004,7 +35647,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 210, "character": 18 } @@ -35013,17 +35656,18 @@ } }, { - "id": 630, + "id": 3052, "name": "_highlightedItemIndex", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 203, "character": 31 } @@ -35034,13 +35678,14 @@ } }, { - "id": 619, + "id": 3041, "name": "_input", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Text input for filtering results" @@ -35059,7 +35704,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 143, "character": 36 } @@ -35070,17 +35715,18 @@ } }, { - "id": 631, + "id": 3053, "name": "_keyValueConfig", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 204, "character": 25 } @@ -35091,13 +35737,14 @@ } }, { - "id": 618, + "id": 3040, "name": "_list", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "UL list ViewChild for displaying autocomplete options" @@ -35116,7 +35763,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 138, "character": 34 } @@ -35127,18 +35774,19 @@ } }, { - "id": 649, + "id": 3071, "name": "_renderer", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 226, "character": 19 } @@ -35149,13 +35797,14 @@ } }, { - "id": 620, + "id": 3042, "name": "_screenReaderEl", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Hidden list element with aria assertive that reads\nitems pushed into it as user interacts with component." @@ -35174,7 +35823,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 149, "character": 54 } @@ -35185,17 +35834,18 @@ } }, { - "id": 633, + "id": 3055, "name": "_screenreader", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 207, "character": 23 } @@ -35203,24 +35853,25 @@ "type": { "type": "reference", "name": "ScreenReaderPusher", - "id": 564 + "id": 2986 } }, { - "id": 625, + "id": 3047, "name": "_selectedItem", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Item that is currently highlighted\nfrom user input." }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 184, "character": 23 } @@ -35231,14 +35882,15 @@ } }, { - "id": 647, + "id": 3069, "name": "_service", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -35252,7 +35904,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 224, "character": 42 } @@ -35260,24 +35912,25 @@ "type": { "type": "reference", "name": "AutocompleteService", - "id": 234 + "id": 1946 } }, { - "id": 626, + "id": 3048, "name": "_showSpinner", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Boolean that determines whether\nto display a spinner while results\nare loading" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 190, "character": 22 } @@ -35288,13 +35941,14 @@ } }, { - "id": 622, + "id": 3044, "name": "_value", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Stores value that the user has\nselected from the input.", @@ -35302,7 +35956,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 166, "character": 16 } @@ -35322,12 +35976,13 @@ } }, { - "id": 615, + "id": 3037, "name": "addOnIconClass", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35345,7 +36000,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 122, "character": 32 } @@ -35357,12 +36012,13 @@ "defaultValue": "\"fa-chevron-down\"" }, { - "id": 614, + "id": 3036, "name": "allowAny", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35381,7 +36037,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 118, "character": 26 } @@ -35393,12 +36049,13 @@ "defaultValue": "false" }, { - "id": 611, + "id": 3033, "name": "categories", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35416,7 +36073,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 99, "character": 28 } @@ -35429,12 +36086,13 @@ "defaultValue": " []" }, { - "id": 601, + "id": 3023, "name": "config", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35452,7 +36110,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 73, "character": 24 } @@ -35463,12 +36121,13 @@ } }, { - "id": 603, + "id": 3025, "name": "control", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35486,7 +36145,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 82, "character": 25 } @@ -35497,12 +36156,13 @@ } }, { - "id": 617, + "id": 3039, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35522,7 +36182,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 133, "character": 36 } @@ -35533,12 +36193,13 @@ } }, { - "id": 624, + "id": 3046, "name": "displayList", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35546,7 +36207,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 179, "character": 20 } @@ -35557,12 +36218,13 @@ } }, { - "id": 629, + "id": 3051, "name": "displaySpinner", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35570,7 +36232,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 202, "character": 23 } @@ -35582,12 +36244,13 @@ "defaultValue": "false" }, { - "id": 616, + "id": 3038, "name": "enterEvent", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35605,7 +36268,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 128, "character": 29 } @@ -35623,12 +36286,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 599, + "id": 3021, "name": "errorMessage", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35646,7 +36310,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 65, "character": 30 } @@ -35657,12 +36321,13 @@ } }, { - "id": 605, + "id": 3027, "name": "filterCallback", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35680,7 +36345,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 91, "character": 32 } @@ -35688,21 +36353,21 @@ "type": { "type": "reflection", "declaration": { - "id": 606, + "id": 3028, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 607, + "id": 3029, "name": "__call", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 608, + "id": 3030, "name": "input", "kind": 32768, "kindString": "Parameter", @@ -35713,7 +36378,7 @@ } }, { - "id": 609, + "id": 3031, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -35747,7 +36412,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 91, "character": 33 } @@ -35756,12 +36421,13 @@ } }, { - "id": 628, + "id": 3050, "name": "filteredOptions", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35769,7 +36435,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 198, "character": 24 } @@ -35787,12 +36453,13 @@ } }, { - "id": 598, + "id": 3020, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35810,7 +36477,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 61, "character": 22 } @@ -35821,12 +36488,13 @@ } }, { - "id": 595, + "id": 3017, "name": "id", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35844,7 +36512,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 49, "character": 20 } @@ -35855,12 +36523,13 @@ } }, { - "id": 623, + "id": 3045, "name": "inputValue", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35868,7 +36537,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 174, "character": 19 } @@ -35879,12 +36548,13 @@ } }, { - "id": 612, + "id": 3034, "name": "isCategorySelectable", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true, "isOptional": true }, @@ -35903,7 +36573,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 105, "character": 38 } @@ -35914,12 +36584,13 @@ } }, { - "id": 596, + "id": 3018, "name": "label", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35937,7 +36608,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 53, "character": 23 } @@ -35948,12 +36619,13 @@ } }, { - "id": 597, + "id": 3019, "name": "labelText", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -35971,7 +36643,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 57, "character": 27 } @@ -35982,12 +36654,13 @@ } }, { - "id": 594, + "id": 3016, "name": "name", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -36005,7 +36678,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 45, "character": 22 } @@ -36016,17 +36689,18 @@ } }, { - "id": 644, + "id": 3066, "name": "onBlurEvent", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 220, "character": 20 } @@ -36044,17 +36718,18 @@ "defaultValue": " new Subject()" }, { - "id": 643, + "id": 3065, "name": "onInputChange", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 219, "character": 22 } @@ -36072,12 +36747,13 @@ "defaultValue": " new Subject()" }, { - "id": 639, + "id": 3061, "name": "onInputEvent", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -36085,7 +36761,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 215, "character": 21 } @@ -36102,17 +36778,18 @@ } }, { - "id": 640, + "id": 3062, "name": "onInputFocus", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 216, "character": 21 } @@ -36130,17 +36807,18 @@ "defaultValue": " new Subject()" }, { - "id": 641, + "id": 3063, "name": "onInputKeydown", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 217, "character": 23 } @@ -36158,17 +36836,18 @@ "defaultValue": " new Subject()" }, { - "id": 642, + "id": 3064, "name": "onInputKeyup", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 218, "character": 21 } @@ -36186,12 +36865,13 @@ "defaultValue": " new Subject()" }, { - "id": 610, + "id": 3032, "name": "options", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -36209,7 +36889,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 95, "character": 25 } @@ -36221,12 +36901,13 @@ } }, { - "id": 600, + "id": 3022, "name": "placeholder", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -36244,7 +36925,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 69, "character": 29 } @@ -36255,12 +36936,13 @@ } }, { - "id": 602, + "id": 3024, "name": "required", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -36278,7 +36960,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 78, "character": 26 } @@ -36290,18 +36972,19 @@ "defaultValue": "false" }, { - "id": 650, + "id": 3072, "name": "samFormService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 227, "character": 24 } @@ -36309,16 +36992,17 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 613, + "id": 3035, "name": "serviceOptions", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -36336,7 +37020,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 109, "character": 32 } @@ -36347,12 +37031,13 @@ } }, { - "id": 604, + "id": 3026, "name": "useFormService", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -36370,7 +37055,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 86, "character": 32 } @@ -36381,13 +37066,14 @@ } }, { - "id": 621, + "id": 3043, "name": "wrapper", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "ViewChild for wrapper. Need this for our hacky label wrapper" @@ -36406,7 +37092,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 153, "character": 39 } @@ -36417,17 +37103,18 @@ } }, { - "id": 702, + "id": 3124, "name": "_addHighlightClass", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 703, + "id": 3125, "name": "_addHighlightClass", "kind": 4096, "kindString": "Call signature", @@ -36437,7 +37124,7 @@ }, "parameters": [ { - "id": 704, + "id": 3126, "name": "li", "kind": 32768, "kindString": "Parameter", @@ -36456,24 +37143,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 579, "character": 28 } ] }, { - "id": 712, + "id": 3134, "name": "_circularDecrement", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 713, + "id": 3135, "name": "_circularDecrement", "kind": 4096, "kindString": "Call signature", @@ -36484,7 +37172,7 @@ }, "parameters": [ { - "id": 714, + "id": 3136, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -36495,7 +37183,7 @@ } }, { - "id": 715, + "id": 3137, "name": "length", "kind": 32768, "kindString": "Parameter", @@ -36514,24 +37202,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 623, "character": 28 } ] }, { - "id": 708, + "id": 3130, "name": "_circularIncrement", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 709, + "id": 3131, "name": "_circularIncrement", "kind": 4096, "kindString": "Call signature", @@ -36542,7 +37231,7 @@ }, "parameters": [ { - "id": 710, + "id": 3132, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -36553,7 +37242,7 @@ } }, { - "id": 711, + "id": 3133, "name": "length", "kind": 32768, "kindString": "Parameter", @@ -36572,31 +37261,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 597, "character": 28 } ] }, { - "id": 737, + "id": 3159, "name": "_dummyFilter", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 738, + "id": 3160, "name": "_dummyFilter", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 739, + "id": 3161, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -36622,24 +37312,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 720, "character": 22 } ] }, { - "id": 721, + "id": 3143, "name": "_getFilterMethod", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 722, + "id": 3144, "name": "_getFilterMethod", "kind": 4096, "kindString": "Call signature", @@ -36650,21 +37341,21 @@ "type": { "type": "reflection", "declaration": { - "id": 723, + "id": 3145, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 724, + "id": 3146, "name": "__call", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 725, + "id": 3147, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -36698,7 +37389,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 667, "character": 29 } @@ -36709,24 +37400,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 667, "character": 26 } ] }, { - "id": 726, + "id": 3148, "name": "_getSimpleFilter", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 727, + "id": 3149, "name": "_getSimpleFilter", "kind": 4096, "kindString": "Call signature", @@ -36737,21 +37429,21 @@ "type": { "type": "reflection", "declaration": { - "id": 728, + "id": 3150, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 729, + "id": 3151, "name": "__call", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 730, + "id": 3152, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -36785,7 +37477,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 686, "character": 29 } @@ -36796,24 +37488,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 686, "character": 26 } ] }, { - "id": 689, + "id": 3111, "name": "_handleDownArrow", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 690, + "id": 3112, "name": "_handleDownArrow", "kind": 4096, "kindString": "Call signature", @@ -36829,24 +37522,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 473, "character": 26 } ] }, { - "id": 686, + "id": 3108, "name": "_handleEnter", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 687, + "id": 3109, "name": "_handleEnter", "kind": 4096, "kindString": "Call signature", @@ -36856,7 +37550,7 @@ }, "parameters": [ { - "id": 688, + "id": 3110, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -36875,24 +37569,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 460, "character": 22 } ] }, { - "id": 691, + "id": 3113, "name": "_handleUpArrow", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 692, + "id": 3114, "name": "_handleUpArrow", "kind": 4096, "kindString": "Call signature", @@ -36908,24 +37603,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 488, "character": 24 } ] }, { - "id": 693, + "id": 3115, "name": "_highlightNextListItem", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 694, + "id": 3116, "name": "_highlightNextListItem", "kind": 4096, "kindString": "Call signature", @@ -36935,7 +37631,7 @@ }, "parameters": [ { - "id": 695, + "id": 3117, "name": "list", "kind": 32768, "kindString": "Parameter", @@ -36949,7 +37645,7 @@ } }, { - "id": 696, + "id": 3118, "name": "direction", "kind": 32768, "kindString": "Parameter", @@ -36971,24 +37667,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 505, "character": 32 } ] }, { - "id": 731, + "id": 3153, "name": "_isArrayOfStrings", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 732, + "id": 3154, "name": "_isArrayOfStrings", "kind": 4096, "kindString": "Call signature", @@ -36998,7 +37695,7 @@ }, "parameters": [ { - "id": 733, + "id": 3155, "name": "array", "kind": 32768, "kindString": "Parameter", @@ -37018,24 +37715,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 695, "character": 27 } ] }, { - "id": 740, + "id": 3162, "name": "_objectsFilter", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 741, + "id": 3163, "name": "_objectsFilter", "kind": 4096, "kindString": "Call signature", @@ -37046,7 +37744,7 @@ }, "parameters": [ { - "id": 742, + "id": 3164, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -37072,24 +37770,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 734, "character": 24 } ] }, { - "id": 705, + "id": 3127, "name": "_removeHighlightClass", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 706, + "id": 3128, "name": "_removeHighlightClass", "kind": 4096, "kindString": "Call signature", @@ -37099,7 +37798,7 @@ }, "parameters": [ { - "id": 707, + "id": 3129, "name": "li", "kind": 32768, "kindString": "Parameter", @@ -37118,24 +37817,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 586, "character": 31 } ] }, { - "id": 699, + "id": 3121, "name": "_removeSelectedClassFromListItems", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 700, + "id": 3122, "name": "_removeSelectedClassFromListItems", "kind": 4096, "kindString": "Call signature", @@ -37145,7 +37845,7 @@ }, "parameters": [ { - "id": 701, + "id": 3123, "name": "list", "kind": 32768, "kindString": "Parameter", @@ -37164,24 +37864,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 566, "character": 43 } ] }, { - "id": 697, + "id": 3119, "name": "_resetListHighlighting", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 698, + "id": 3120, "name": "_resetListHighlighting", "kind": 4096, "kindString": "Call signature", @@ -37197,24 +37898,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 545, "character": 32 } ] }, { - "id": 752, + "id": 3174, "name": "_setInputValue", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 753, + "id": 3175, "name": "_setInputValue", "kind": 4096, "kindString": "Call signature", @@ -37222,7 +37924,7 @@ "comment": {}, "parameters": [ { - "id": 754, + "id": 3176, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -37241,24 +37943,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 826, "character": 24 } ] }, { - "id": 748, + "id": 3170, "name": "_setValue", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 749, + "id": 3171, "name": "_setValue", "kind": 4096, "kindString": "Call signature", @@ -37268,7 +37971,7 @@ }, "typeParameter": [ { - "id": 750, + "id": 3172, "name": "T", "kind": 131072, "kindString": "Type parameter", @@ -37277,7 +37980,7 @@ ], "parameters": [ { - "id": 751, + "id": 3173, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -37296,24 +37999,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 817, "character": 19 } ] }, { - "id": 734, + "id": 3156, "name": "_stringFilter", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 735, + "id": 3157, "name": "_stringFilter", "kind": 4096, "kindString": "Call signature", @@ -37323,7 +38027,7 @@ }, "parameters": [ { - "id": 736, + "id": 3158, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -37349,24 +38053,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 710, "character": 23 } ] }, { - "id": 746, + "id": 3168, "name": "clearComponent", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 747, + "id": 3169, "name": "clearComponent", "kind": 4096, "kindString": "Call signature", @@ -37379,25 +38084,26 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 810, "character": 23 } ] }, { - "id": 716, + "id": 3138, "name": "displayClearButton", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true, "isOptional": true }, "signatures": [ { - "id": 717, + "id": 3139, "name": "displayClearButton", "kind": 4096, "kindString": "Call signature", @@ -37413,24 +38119,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 645, "character": 27 } ] }, { - "id": 718, + "id": 3140, "name": "displayOptionText", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 719, + "id": 3141, "name": "displayOptionText", "kind": 4096, "kindString": "Call signature", @@ -37440,7 +38147,7 @@ }, "parameters": [ { - "id": 720, + "id": 3142, "name": "option", "kind": 32768, "kindString": "Parameter", @@ -37459,24 +38166,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 653, "character": 26 } ] }, { - "id": 681, + "id": 3103, "name": "ngAfterContentInit", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 682, + "id": 3104, "name": "ngAfterContentInit", "kind": 4096, "kindString": "Call signature", @@ -37489,24 +38197,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 432, "character": 27 } ] }, { - "id": 679, + "id": 3101, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 680, + "id": 3102, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -37519,31 +38228,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 251, "character": 17 } ] }, { - "id": 658, + "id": 3080, "name": "onChangeCallback", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 659, + "id": 3081, "name": "onChangeCallback", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 660, + "id": 3082, "name": "_", "kind": 32768, "kindString": "Parameter", @@ -37562,24 +38272,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 230, "character": 25 } ] }, { - "id": 656, + "id": 3078, "name": "onTouchedCallback", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 657, + "id": 3079, "name": "onTouchedCallback", "kind": 4096, "kindString": "Call signature", @@ -37592,24 +38303,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 229, "character": 26 } ] }, { - "id": 683, + "id": 3105, "name": "pipe", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 684, + "id": 3106, "name": "pipe", "kind": 4096, "kindString": "Call signature", @@ -37619,7 +38331,7 @@ }, "parameters": [ { - "id": 685, + "id": 3107, "name": "functions", "kind": 32768, "kindString": "Parameter", @@ -37646,31 +38358,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 450, "character": 13 } ] }, { - "id": 664, + "id": 3086, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 665, + "id": 3087, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 666, + "id": 3088, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -37678,21 +38391,21 @@ "type": { "type": "reflection", "declaration": { - "id": 667, + "id": 3089, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 668, + "id": 3090, "name": "__call", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 669, + "id": 3091, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -37719,7 +38432,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 239, "character": 29 } @@ -37736,31 +38449,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 239, "character": 25 } ] }, { - "id": 670, + "id": 3092, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 671, + "id": 3093, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 672, + "id": 3094, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -37768,21 +38482,21 @@ "type": { "type": "reflection", "declaration": { - "id": 673, + "id": 3095, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 674, + "id": 3096, "name": "__call", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 675, + "id": 3097, "name": "args", "kind": 32768, "kindString": "Parameter", @@ -37809,7 +38523,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 243, "character": 30 } @@ -37826,31 +38540,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 243, "character": 26 } ] }, { - "id": 676, + "id": 3098, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 677, + "id": 3099, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 678, + "id": 3100, "name": "isDisabled", "kind": 32768, "kindString": "Parameter", @@ -37869,24 +38584,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 247, "character": 25 } ] }, { - "id": 743, + "id": 3165, "name": "updateComponentValue", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 744, + "id": 3166, "name": "updateComponentValue", "kind": 4096, "kindString": "Call signature", @@ -37896,7 +38612,7 @@ }, "parameters": [ { - "id": 745, + "id": 3167, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -37915,24 +38631,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 779, "character": 29 } ] }, { - "id": 661, + "id": 3083, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 662, + "id": 3084, "name": "writeValue", "kind": 4096, "kindString": "Call signature", @@ -37942,7 +38659,7 @@ }, "parameters": [ { - "id": 663, + "id": 3085, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -37961,7 +38678,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 235, "character": 19 } @@ -37973,105 +38690,105 @@ "title": "Constructors", "kind": 512, "children": [ - 646 + 3068 ] }, { "title": "Properties", "kind": 1024, "children": [ - 645, - 634, - 632, - 648, - 627, - 635, - 630, - 619, - 631, - 618, - 649, - 620, - 633, - 625, - 647, - 626, - 622, - 615, - 614, - 611, - 601, - 603, - 617, - 624, - 629, - 616, - 599, - 605, - 628, - 598, - 595, - 623, - 612, - 596, - 597, - 594, - 644, - 643, - 639, - 640, - 641, - 642, - 610, - 600, - 602, - 650, - 613, - 604, - 621 + 3067, + 3056, + 3054, + 3070, + 3049, + 3057, + 3052, + 3041, + 3053, + 3040, + 3071, + 3042, + 3055, + 3047, + 3069, + 3048, + 3044, + 3037, + 3036, + 3033, + 3023, + 3025, + 3039, + 3046, + 3051, + 3038, + 3021, + 3027, + 3050, + 3020, + 3017, + 3045, + 3034, + 3018, + 3019, + 3016, + 3066, + 3065, + 3061, + 3062, + 3063, + 3064, + 3032, + 3022, + 3024, + 3072, + 3035, + 3026, + 3043 ] }, { "title": "Methods", "kind": 2048, "children": [ - 702, - 712, - 708, - 737, - 721, - 726, - 689, - 686, - 691, - 693, - 731, - 740, - 705, - 699, - 697, - 752, - 748, - 734, - 746, - 716, - 718, - 681, - 679, - 658, - 656, - 683, - 664, - 670, - 676, - 743, - 661 + 3124, + 3134, + 3130, + 3159, + 3143, + 3148, + 3111, + 3108, + 3113, + 3115, + 3153, + 3162, + 3127, + 3121, + 3119, + 3174, + 3170, + 3156, + 3168, + 3138, + 3140, + 3103, + 3101, + 3080, + 3078, + 3105, + 3086, + 3092, + 3098, + 3165, + 3083 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 40, "character": 45 } @@ -38088,21 +38805,25 @@ ] }, { - "id": 755, + "id": 3177, "name": "AUTOCOMPLETE_VALUE_ACCESSOR", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExternal": true + }, "children": [ { - "id": 758, + "id": 3180, "name": "multi", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 32, "character": 7 } @@ -38114,14 +38835,16 @@ "defaultValue": "true" }, { - "id": 756, + "id": 3178, "name": "provide", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 30, "character": 9 } @@ -38139,14 +38862,16 @@ "defaultValue": " NG_VALUE_ACCESSOR" }, { - "id": 757, + "id": 3179, "name": "useExisting", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 31, "character": 13 } @@ -38169,15 +38894,15 @@ "title": "Variables", "kind": 32, "children": [ - 758, - 756, - 757 + 3180, + 3178, + 3179 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 29, "character": 33 } @@ -38193,62 +38918,65 @@ "title": "Classes", "kind": 128, "children": [ - 593 + 3015 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 755 + 3177 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", "line": 1, "character": 0 } ] }, { - "id": 563, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher\"", + "id": 2985, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", "children": [ { - "id": 564, + "id": 2986, "name": "ScreenReaderPusher", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 565, + "id": 2987, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 568, + "id": 2990, "name": "new ScreenReaderPusher", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 569, + "id": 2991, "name": "_renderer", "kind": 32768, "kindString": "Parameter", @@ -38259,7 +38987,7 @@ } }, { - "id": 570, + "id": 2992, "name": "_uListElement", "kind": 32768, "kindString": "Parameter", @@ -38273,31 +39001,32 @@ "type": { "type": "reference", "name": "ScreenReaderPusher", - "id": 564 + "id": 2986 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", "line": 3, "character": 33 } ] }, { - "id": 566, + "id": 2988, "name": "_renderer", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", "line": 5, "character": 31 } @@ -38308,18 +39037,19 @@ } }, { - "id": 567, + "id": 2989, "name": "_uListElement", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", "line": 6, "character": 25 } @@ -38330,24 +39060,25 @@ } }, { - "id": 576, + "id": 2998, "name": "_generateLI", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 577, + "id": 2999, "name": "_generateLI", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 578, + "id": 3000, "name": "message", "kind": 32768, "kindString": "Parameter", @@ -38366,24 +39097,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", "line": 23, "character": 21 } ] }, { - "id": 574, + "id": 2996, "name": "clearMessages", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 575, + "id": 2997, "name": "clearMessages", "kind": 4096, "kindString": "Call signature", @@ -38396,31 +39128,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", "line": 16, "character": 22 } ] }, { - "id": 571, + "id": 2993, "name": "pushMessage", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 572, + "id": 2994, "name": "pushMessage", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 573, + "id": 2995, "name": "message", "kind": 32768, "kindString": "Parameter", @@ -38439,7 +39172,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", "line": 8, "character": 20 } @@ -38451,30 +39184,30 @@ "title": "Constructors", "kind": 512, "children": [ - 565 + 2987 ] }, { "title": "Properties", "kind": 1024, "children": [ - 566, - 567 + 2988, + 2989 ] }, { "title": "Methods", "kind": 2048, "children": [ - 576, - 574, - 571 + 2998, + 2996, + 2993 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", "line": 3, "character": 31 } @@ -38486,35 +39219,37 @@ "title": "Classes", "kind": 128, "children": [ - 564 + 2986 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", "line": 1, "character": 0 } ] }, { - "id": 761, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component\"", + "id": 3183, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "children": [ { - "id": 762, + "id": 3184, "name": "SamCheckboxComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component is a set of checkboxes" @@ -38533,23 +39268,24 @@ ], "children": [ { - "id": 786, + "id": 3208, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 788, + "id": 3210, "name": "new SamCheckboxComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 789, + "id": 3211, "name": "samFormService", "kind": 32768, "kindString": "Parameter", @@ -38557,37 +39293,38 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } } ], "type": { "type": "reference", "name": "SamCheckboxComponent", - "id": 762 + "id": 3184 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 98, "character": 3 } ] }, { - "id": 776, + "id": 3198, "name": "_ordering", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 87, "character": 19 } @@ -38598,12 +39335,13 @@ } }, { - "id": 771, + "id": 3193, "name": "control", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the angular FormControl" @@ -38620,7 +39358,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 66, "character": 18 } @@ -38631,12 +39369,13 @@ } }, { - "id": 773, + "id": 3195, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets disabled state" @@ -38653,7 +39392,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 74, "character": 19 } @@ -38664,12 +39403,13 @@ } }, { - "id": 769, + "id": 3191, "name": "errorMessage", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the form control error message" @@ -38686,7 +39426,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 58, "character": 23 } @@ -38697,12 +39437,13 @@ } }, { - "id": 770, + "id": 3192, "name": "hasSelectAll", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "If true, an addition checkbox is added that selects all the checkboxes" @@ -38719,7 +39460,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 62, "character": 23 } @@ -38730,12 +39471,13 @@ } }, { - "id": 767, + "id": 3189, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets helpful text for the using the component" @@ -38752,7 +39494,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 50, "character": 15 } @@ -38763,12 +39505,13 @@ } }, { - "id": 765, + "id": 3187, "name": "label", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the label text" @@ -38785,7 +39528,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 42, "character": 16 } @@ -38796,12 +39539,13 @@ } }, { - "id": 763, + "id": 3185, "name": "model", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Deprecated, Sets the bound value of the component" @@ -38818,7 +39562,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 34, "character": 16 } @@ -38830,12 +39574,13 @@ "defaultValue": " []" }, { - "id": 774, + "id": 3196, "name": "modelChange", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Deprecated, Event emitted when the model value changes" @@ -38852,7 +39597,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 78, "character": 23 } @@ -38870,12 +39615,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 766, + "id": 3188, "name": "name", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the semantic description for the component" @@ -38892,7 +39638,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 46, "character": 15 } @@ -38903,12 +39649,13 @@ } }, { - "id": 764, + "id": 3186, "name": "options", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the array of checkbox values and labels (see OptionsType[])" @@ -38925,7 +39672,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 38, "character": 18 } @@ -38934,16 +39681,17 @@ "type": "reference", "isArray": true, "name": "OptionsType", - "id": 152 + "id": 26 } }, { - "id": 768, + "id": 3190, "name": "required", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets required text on component" @@ -38960,7 +39708,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 54, "character": 19 } @@ -38972,18 +39720,19 @@ "defaultValue": "false" }, { - "id": 787, + "id": 3209, "name": "samFormService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 100, "character": 36 } @@ -38991,16 +39740,17 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 772, + "id": 3194, "name": "useFormService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Toggles validations to display with SamFormService events" @@ -39017,7 +39767,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 70, "character": 25 } @@ -39028,12 +39778,13 @@ } }, { - "id": 775, + "id": 3197, "name": "wrapper", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -39050,7 +39801,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 81, "character": 16 } @@ -39058,20 +39809,21 @@ "type": { "type": "reference", "name": "FieldsetWrapper", - "id": 468 + "id": 829 } }, { - "id": 782, + "id": 3204, "name": "value", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "getSignature": [ { - "id": 783, + "id": 3205, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -39084,14 +39836,14 @@ ], "setSignature": [ { - "id": 784, + "id": 3206, "name": "__set", "kind": 1048576, "kindString": "Set signature", "flags": {}, "parameters": [ { - "id": 785, + "id": 3207, "name": "val", "kind": 32768, "kindString": "Parameter", @@ -39110,28 +39862,29 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 90, "character": 11 }, { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 94, "character": 11 } ] }, { - "id": 795, + "id": 3217, "name": "checkAllLabelName", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 796, + "id": 3218, "name": "checkAllLabelName", "kind": 4096, "kindString": "Call signature", @@ -39144,23 +39897,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 141, "character": 19 } ] }, { - "id": 807, + "id": 3229, "name": "emitModel", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 808, + "id": 3230, "name": "emitModel", "kind": 4096, "kindString": "Call signature", @@ -39173,30 +39927,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 184, "character": 11 } ] }, { - "id": 797, + "id": 3219, "name": "isChecked", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 798, + "id": 3220, "name": "isChecked", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 799, + "id": 3221, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -39215,23 +39970,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 145, "character": 11 } ] }, { - "id": 790, + "id": 3212, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 791, + "id": 3213, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -39244,30 +40000,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 102, "character": 10 } ] }, { - "id": 777, + "id": 3199, "name": "onChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 778, + "id": 3200, "name": "onChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 779, + "id": 3201, "name": "c", "kind": 32768, "kindString": "Parameter", @@ -39286,30 +40043,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 88, "character": 10 } ] }, { - "id": 800, + "id": 3222, "name": "onCheckChanged", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 801, + "id": 3223, "name": "onCheckChanged", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 802, + "id": 3224, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -39320,7 +40078,7 @@ } }, { - "id": 803, + "id": 3225, "name": "isChecked", "kind": 32768, "kindString": "Parameter", @@ -39339,30 +40097,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 149, "character": 16 } ] }, { - "id": 804, + "id": 3226, "name": "onSelectAllChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 805, + "id": 3227, "name": "onSelectAllChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 806, + "id": 3228, "name": "isSelectAllChecked", "kind": 32768, "kindString": "Parameter", @@ -39381,23 +40140,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 176, "character": 19 } ] }, { - "id": 780, + "id": 3202, "name": "onTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 781, + "id": 3203, "name": "onTouched", "kind": 4096, "kindString": "Call signature", @@ -39410,30 +40170,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 89, "character": 11 } ] }, { - "id": 809, + "id": 3231, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 810, + "id": 3232, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 811, + "id": 3233, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -39452,30 +40213,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 188, "character": 18 } ] }, { - "id": 812, + "id": 3234, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 813, + "id": 3235, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 814, + "id": 3236, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -39494,30 +40256,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 192, "character": 19 } ] }, { - "id": 815, + "id": 3237, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 816, + "id": 3238, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 817, + "id": 3239, "name": "disabled", "kind": 32768, "kindString": "Parameter", @@ -39536,30 +40299,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 196, "character": 18 } ] }, { - "id": 792, + "id": 3214, "name": "setModelValue", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 793, + "id": 3215, "name": "setModelValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 794, + "id": 3216, "name": "val", "kind": 32768, "kindString": "Parameter", @@ -39578,30 +40342,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 123, "character": 15 } ] }, { - "id": 818, + "id": 3240, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 819, + "id": 3241, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 820, + "id": 3242, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -39620,7 +40385,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 200, "character": 12 } @@ -39632,60 +40397,60 @@ "title": "Constructors", "kind": 512, "children": [ - 786 + 3208 ] }, { "title": "Properties", "kind": 1024, "children": [ - 776, - 771, - 773, - 769, - 770, - 767, - 765, - 763, - 774, - 766, - 764, - 768, - 787, - 772, - 775 + 3198, + 3193, + 3195, + 3191, + 3192, + 3189, + 3187, + 3185, + 3196, + 3188, + 3186, + 3190, + 3209, + 3194, + 3197 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 782 + 3204 ] }, { "title": "Methods", "kind": 2048, "children": [ - 795, - 807, - 797, - 790, - 777, - 800, - 804, - 780, - 809, - 812, - 815, - 792, - 818 + 3217, + 3229, + 3219, + 3212, + 3199, + 3222, + 3226, + 3202, + 3231, + 3234, + 3237, + 3214, + 3240 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 30, "character": 33 } @@ -39703,35 +40468,37 @@ "title": "Classes", "kind": 128, "children": [ - 762 + 3184 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", "line": 1, "character": 0 } ] }, { - "id": 821, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/checkbox/index\"", + "id": 3243, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/checkbox/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/index.ts", "children": [ { - "id": 822, + "id": 3244, "name": "SamCheckboxModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -39747,7 +40514,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/index.ts", "line": 16, "character": 30 } @@ -39759,35 +40526,37 @@ "title": "Classes", "kind": 128, "children": [ - 822 + 3244 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/checkbox/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/checkbox/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1119, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component\"", + "id": 3541, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "children": [ { - "id": 1120, + "id": 3542, "name": "SamDateRangeComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component is a Date entry portion of a form" @@ -39806,23 +40575,24 @@ ], "children": [ { - "id": 1184, + "id": 3606, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1186, + "id": 3608, "name": "new SamDateRangeComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1187, + "id": 3609, "name": "samFormService", "kind": 32768, "kindString": "Parameter", @@ -39830,37 +40600,38 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } } ], "type": { "type": "reference", "name": "SamDateRangeComponent", - "id": 1120 + "id": 3542 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 204, "character": 3 } ] }, { - "id": 1140, + "id": 3562, "name": "DT_INPUT_FORMAT", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 105, "character": 24 } @@ -39872,17 +40643,18 @@ "defaultValue": "\"Y-M-DTH:m\"" }, { - "id": 1138, + "id": 3560, "name": "INPUT_FORMAT", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 103, "character": 21 } @@ -39894,17 +40666,18 @@ "defaultValue": "\"Y-M-D\"" }, { - "id": 1139, + "id": 3561, "name": "OUTPUT_FORMAT", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 104, "character": 22 } @@ -39916,17 +40689,18 @@ "defaultValue": "\"YYYY-MM-DD\"" }, { - "id": 1141, + "id": 3563, "name": "T_OUTPUT_FORMAT", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 106, "character": 24 } @@ -39938,12 +40712,13 @@ "defaultValue": "\"HH:mm\"" }, { - "id": 1133, + "id": 3555, "name": "control", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Passes in the Angular FormControl" @@ -39960,7 +40735,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 85, "character": 18 } @@ -39971,12 +40746,13 @@ } }, { - "id": 1136, + "id": 3558, "name": "defaultValidations", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Toggles default component validations" @@ -39993,7 +40769,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 97, "character": 29 } @@ -40005,12 +40781,13 @@ "defaultValue": "true" }, { - "id": 1132, + "id": 3554, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the disabled status of component, defaults to false" @@ -40027,7 +40804,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 81, "character": 19 } @@ -40039,12 +40816,13 @@ "defaultValue": "false" }, { - "id": 1122, + "id": 3544, "name": "endControl", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -40061,7 +40839,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 37, "character": 44 } @@ -40072,12 +40850,13 @@ } }, { - "id": 1124, + "id": 3546, "name": "endDateComp", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -40094,7 +40873,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 39, "character": 42 } @@ -40105,17 +40884,18 @@ } }, { - "id": 1151, + "id": 3573, "name": "endDateValue", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 120, "character": 22 } @@ -40126,12 +40906,13 @@ } }, { - "id": 1130, + "id": 3552, "name": "fromRequired", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "If set to true, a 'required' designation is shown for start date\nIf default validations are enabled, also enables a validation checking\nthat start date is provided", @@ -40154,7 +40935,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 69, "character": 23 } @@ -40165,12 +40946,13 @@ } }, { - "id": 1128, + "id": 3550, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the helpful hint text" @@ -40187,7 +40969,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 53, "character": 15 } @@ -40199,12 +40981,13 @@ "defaultValue": "\"\"" }, { - "id": 1127, + "id": 3549, "name": "label", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the label text" @@ -40221,7 +41004,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 49, "character": 16 } @@ -40233,12 +41016,13 @@ "defaultValue": "\"\"" }, { - "id": 1129, + "id": 3551, "name": "required", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "If set to true, a 'required' designation is shown for both start and end\ndate. If default validations are enabled, also enables a validation\nchecking that both start and end date are provided.", @@ -40261,7 +41045,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 61, "character": 19 } @@ -40272,18 +41056,19 @@ } }, { - "id": 1185, + "id": 3607, "name": "samFormService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 206, "character": 36 } @@ -40291,16 +41076,17 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 1126, + "id": 3548, "name": "stacked", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the label text" @@ -40317,7 +41103,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 45, "character": 18 } @@ -40329,12 +41115,13 @@ "defaultValue": "false" }, { - "id": 1121, + "id": 3543, "name": "startControl", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -40351,7 +41138,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 36, "character": 48 } @@ -40362,12 +41149,13 @@ } }, { - "id": 1123, + "id": 3545, "name": "startDateComp", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -40384,7 +41172,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 38, "character": 46 } @@ -40395,17 +41183,18 @@ } }, { - "id": 1150, + "id": 3572, "name": "startDateValue", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 119, "character": 24 } @@ -40416,12 +41205,13 @@ } }, { - "id": 1131, + "id": 3553, "name": "toRequired", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "If set to true, a 'required' designation is shown for end date\nIf default validations are enabled, also enables a validation checking that\nend date is provided", @@ -40444,7 +41234,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 77, "character": 21 } @@ -40455,12 +41245,13 @@ } }, { - "id": 1134, + "id": 3556, "name": "type", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Toggles date-time mode" @@ -40477,7 +41268,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 89, "character": 15 } @@ -40489,12 +41280,13 @@ "defaultValue": "\"date\"" }, { - "id": 1135, + "id": 3557, "name": "useFormService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Toggles validations to display with SamFormService events" @@ -40511,7 +41303,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 93, "character": 25 } @@ -40522,12 +41314,13 @@ } }, { - "id": 1137, + "id": 3559, "name": "valueChange", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "(deprecated) Event emitted when value changes" @@ -40544,7 +41337,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 101, "character": 23 } @@ -40562,12 +41355,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1125, + "id": 3547, "name": "wrapper", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -40584,7 +41378,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 40, "character": 38 } @@ -40595,16 +41389,17 @@ } }, { - "id": 1214, + "id": 3636, "name": "dateBlur", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1215, + "id": 3637, "name": "dateBlur", "kind": 4096, "kindString": "Call signature", @@ -40617,23 +41412,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 332, "character": 10 } ] }, { - "id": 1209, + "id": 3631, "name": "dateChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1210, + "id": 3632, "name": "dateChange", "kind": 4096, "kindString": "Call signature", @@ -40646,30 +41442,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 302, "character": 12 } ] }, { - "id": 1206, + "id": 3628, "name": "endDateChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1207, + "id": 3629, "name": "endDateChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1208, + "id": 3630, "name": "evt", "kind": 32768, "kindString": "Parameter", @@ -40688,23 +41485,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 296, "character": 15 } ] }, { - "id": 1196, + "id": 3618, "name": "focusHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1197, + "id": 3619, "name": "focusHandler", "kind": 4096, "kindString": "Call signature", @@ -40717,30 +41515,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 248, "character": 14 } ] }, { - "id": 1200, + "id": 3622, "name": "getDate", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1201, + "id": 3623, "name": "getDate", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1202, + "id": 3624, "name": "model", "kind": 32768, "kindString": "Parameter", @@ -40759,30 +41558,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 286, "character": 9 } ] }, { - "id": 1211, + "id": 3633, "name": "isClean", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1212, + "id": 3634, "name": "isClean", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1213, + "id": 3635, "name": "model", "kind": 32768, "kindString": "Parameter", @@ -40801,23 +41601,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 326, "character": 9 } ] }, { - "id": 1194, + "id": 3616, "name": "ngOnChanges", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1195, + "id": 3617, "name": "ngOnChanges", "kind": 4096, "kindString": "Call signature", @@ -40830,23 +41631,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 244, "character": 13 } ] }, { - "id": 1192, + "id": 3614, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1193, + "id": 3615, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -40859,24 +41661,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 211, "character": 10 } ] }, { - "id": 1188, + "id": 3610, "name": "onChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1189, + "id": 3611, "name": "onChange", "kind": 4096, "kindString": "Call signature", @@ -40889,24 +41692,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 208, "character": 17 } ] }, { - "id": 1190, + "id": 3612, "name": "onTouched", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1191, + "id": 3613, "name": "onTouched", "kind": 4096, "kindString": "Call signature", @@ -40919,23 +41723,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 209, "character": 18 } ] }, { - "id": 1198, + "id": 3620, "name": "parseValueString", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1199, + "id": 3621, "name": "parseValueString", "kind": 4096, "kindString": "Call signature", @@ -40948,30 +41753,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 252, "character": 18 } ] }, { - "id": 1216, + "id": 3638, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1217, + "id": 3639, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1218, + "id": 3640, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -40990,30 +41796,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 338, "character": 18 } ] }, { - "id": 1219, + "id": 3641, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1220, + "id": 3642, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1221, + "id": 3643, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -41032,30 +41839,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 342, "character": 19 } ] }, { - "id": 1222, + "id": 3644, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1223, + "id": 3645, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1224, + "id": 3646, "name": "disabled", "kind": 32768, "kindString": "Parameter", @@ -41074,30 +41882,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 346, "character": 18 } ] }, { - "id": 1203, + "id": 3625, "name": "startDateChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1204, + "id": 3626, "name": "startDateChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1205, + "id": 3627, "name": "evt", "kind": 32768, "kindString": "Parameter", @@ -41116,30 +41925,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 290, "character": 17 } ] }, { - "id": 1225, + "id": 3647, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1226, + "id": 3648, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1227, + "id": 3649, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -41158,32 +41968,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 350, "character": 12 } ] }, { - "id": 1158, + "id": 3580, "name": "dateRangeRequired", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1159, + "id": 3581, "name": "dateRangeRequired", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1160, + "id": 3582, "name": "instance", "kind": 32768, "kindString": "Parameter", @@ -41191,7 +42002,7 @@ "type": { "type": "reference", "name": "SamDateRangeComponent", - "id": 1120 + "id": 3542 } } ], @@ -41203,32 +42014,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 141, "character": 33 } ] }, { - "id": 1152, + "id": 3574, "name": "dateRangeValidation", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1153, + "id": 3575, "name": "dateRangeValidation", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1154, + "id": 3576, "name": "c", "kind": 32768, "kindString": "Parameter", @@ -41242,28 +42054,32 @@ "type": { "type": "reflection", "declaration": { - "id": 1155, + "id": 3577, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1156, + "id": 3578, "name": "dateRangeError", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExternal": true + }, "children": [ { - "id": 1157, + "id": 3579, "name": "message", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 201, "character": 15 } @@ -41280,13 +42096,13 @@ "title": "Variables", "kind": 32, "children": [ - 1157 + 3579 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 200, "character": 20 } @@ -41302,7 +42118,7 @@ "title": "Object literals", "kind": 2097152, "children": [ - 1156 + 3578 ] } ] @@ -41312,25 +42128,26 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 122, "character": 35 } ] }, { - "id": 1179, + "id": 3601, "name": "newError", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1180, + "id": 3602, "name": "newError", "kind": 4096, "kindString": "Call signature", @@ -41338,28 +42155,32 @@ "type": { "type": "reflection", "declaration": { - "id": 1181, + "id": 3603, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1182, + "id": 3604, "name": "dateRangeError", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExternal": true + }, "children": [ { - "id": 1183, + "id": 3605, "name": "message", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 201, "character": 15 } @@ -41376,13 +42197,13 @@ "title": "Variables", "kind": 32, "children": [ - 1183 + 3605 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 200, "character": 20 } @@ -41398,7 +42219,7 @@ "title": "Object literals", "kind": 2097152, "children": [ - 1182 + 3604 ] } ] @@ -41408,32 +42229,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 198, "character": 25 } ] }, { - "id": 1173, + "id": 3595, "name": "validateEnd", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1174, + "id": 3596, "name": "validateEnd", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1175, + "id": 3597, "name": "c", "kind": 32768, "kindString": "Parameter", @@ -41447,28 +42269,32 @@ "type": { "type": "reflection", "declaration": { - "id": 1176, + "id": 3598, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1177, + "id": 3599, "name": "dateRangeError", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExternal": true + }, "children": [ { - "id": 1178, + "id": 3600, "name": "message", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 201, "character": 15 } @@ -41485,13 +42311,13 @@ "title": "Variables", "kind": 32, "children": [ - 1178 + 3600 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 200, "character": 20 } @@ -41507,7 +42333,7 @@ "title": "Object literals", "kind": 2097152, "children": [ - 1177 + 3599 ] } ] @@ -41517,32 +42343,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 186, "character": 28 } ] }, { - "id": 1167, + "id": 3589, "name": "validateStart", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1168, + "id": 3590, "name": "validateStart", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1169, + "id": 3591, "name": "c", "kind": 32768, "kindString": "Parameter", @@ -41556,28 +42383,32 @@ "type": { "type": "reflection", "declaration": { - "id": 1170, + "id": 3592, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1171, + "id": 3593, "name": "dateRangeError", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExternal": true + }, "children": [ { - "id": 1172, + "id": 3594, "name": "message", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 201, "character": 15 } @@ -41594,13 +42425,13 @@ "title": "Variables", "kind": 32, "children": [ - 1172 + 3594 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 200, "character": 20 } @@ -41616,7 +42447,7 @@ "title": "Object literals", "kind": 2097152, "children": [ - 1171 + 3593 ] } ] @@ -41626,32 +42457,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 175, "character": 30 } ] }, { - "id": 1161, + "id": 3583, "name": "validateStartAndEnd", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1162, + "id": 3584, "name": "validateStartAndEnd", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1163, + "id": 3585, "name": "c", "kind": 32768, "kindString": "Parameter", @@ -41665,28 +42497,32 @@ "type": { "type": "reflection", "declaration": { - "id": 1164, + "id": 3586, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 1165, + "id": 3587, "name": "dateRangeError", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExternal": true + }, "children": [ { - "id": 1166, + "id": 3588, "name": "message", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 201, "character": 15 } @@ -41703,13 +42539,13 @@ "title": "Variables", "kind": 32, "children": [ - 1166 + 3588 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 200, "character": 20 } @@ -41725,7 +42561,7 @@ "title": "Object literals", "kind": 2097152, "children": [ - 1165 + 3587 ] } ] @@ -41735,33 +42571,35 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 162, "character": 36 } ] }, { - "id": 1146, + "id": 3568, "name": "endModel", "kind": 2097152, "kindString": "Object literal", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "children": [ { - "id": 1148, + "id": 3570, "name": "day", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 115, "character": 7 } @@ -41773,16 +42611,17 @@ "defaultValue": " undefined" }, { - "id": 1147, + "id": 3569, "name": "month", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 114, "character": 9 } @@ -41794,16 +42633,17 @@ "defaultValue": " undefined" }, { - "id": 1149, + "id": 3571, "name": "year", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 116, "character": 8 } @@ -41820,15 +42660,15 @@ "title": "Variables", "kind": 32, "children": [ - 1148, - 1147, - 1149 + 3570, + 3569, + 3571 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 113, "character": 17 } @@ -41839,26 +42679,28 @@ } }, { - "id": 1142, + "id": 3564, "name": "startModel", "kind": 2097152, "kindString": "Object literal", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "children": [ { - "id": 1144, + "id": 3566, "name": "day", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 110, "character": 7 } @@ -41870,16 +42712,17 @@ "defaultValue": " undefined" }, { - "id": 1143, + "id": 3565, "name": "month", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 109, "character": 9 } @@ -41891,16 +42734,17 @@ "defaultValue": " undefined" }, { - "id": 1145, + "id": 3567, "name": "year", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 111, "character": 8 } @@ -41917,15 +42761,15 @@ "title": "Variables", "kind": 32, "children": [ - 1144, - 1143, - 1145 + 3566, + 3565, + 3567 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 108, "character": 19 } @@ -41941,79 +42785,79 @@ "title": "Constructors", "kind": 512, "children": [ - 1184 + 3606 ] }, { "title": "Properties", "kind": 1024, "children": [ - 1140, - 1138, - 1139, - 1141, - 1133, - 1136, - 1132, - 1122, - 1124, - 1151, - 1130, - 1128, - 1127, - 1129, - 1185, - 1126, - 1121, - 1123, - 1150, - 1131, - 1134, - 1135, - 1137, - 1125 + 3562, + 3560, + 3561, + 3563, + 3555, + 3558, + 3554, + 3544, + 3546, + 3573, + 3552, + 3550, + 3549, + 3551, + 3607, + 3548, + 3543, + 3545, + 3572, + 3553, + 3556, + 3557, + 3559, + 3547 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1214, - 1209, - 1206, - 1196, - 1200, - 1211, - 1194, - 1192, - 1188, - 1190, - 1198, - 1216, - 1219, - 1222, - 1203, - 1225, - 1158, - 1152, - 1179, - 1173, - 1167, - 1161 + 3636, + 3631, + 3628, + 3618, + 3622, + 3633, + 3616, + 3614, + 3610, + 3612, + 3620, + 3638, + 3641, + 3644, + 3625, + 3647, + 3580, + 3574, + 3601, + 3595, + 3589, + 3583 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 1146, - 1142 + 3568, + 3564 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 33, "character": 34 } @@ -42039,52 +42883,55 @@ "title": "Classes", "kind": 128, "children": [ - 1120 + 3542 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1228, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/date-range/index\"", + "id": 3650, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/date-range/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-range/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-range/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1065, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component\"", + "id": 3487, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "children": [ { - "id": 1066, + "id": 3488, "name": "SamDateTimeComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component is a DateTime entry portion of a form" @@ -42103,23 +42950,24 @@ ], "children": [ { - "id": 1083, + "id": 3505, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1085, + "id": 3507, "name": "new SamDateTimeComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1086, + "id": 3508, "name": "samFormService", "kind": 32768, "kindString": "Parameter", @@ -42127,37 +42975,38 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } } ], "type": { "type": "reference", "name": "SamDateTimeComponent", - "id": 1066 + "id": 3488 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 72, "character": 29 } ] }, { - "id": 1067, + "id": 3489, "name": "INPUT_FORMAT", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 34, "character": 21 } @@ -42169,12 +43018,13 @@ "defaultValue": "\"Y-M-DTH:m\"" }, { - "id": 1073, + "id": 3495, "name": "control", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the formControl to check validations and update error messaged" @@ -42191,7 +43041,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 58, "character": 18 } @@ -42202,17 +43052,18 @@ } }, { - "id": 1077, + "id": 3499, "name": "date", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 65, "character": 13 } @@ -42224,12 +43075,13 @@ "defaultValue": " undefined" }, { - "id": 1078, + "id": 3500, "name": "dateComponent", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -42246,7 +43098,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 67, "character": 50 } @@ -42254,16 +43106,17 @@ "type": { "type": "reference", "name": "SamDateComponent", - "id": 824 + "id": 3246 } }, { - "id": 1072, + "id": 3494, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets disabled attribute value for input" @@ -42280,7 +43133,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 54, "character": 19 } @@ -42292,12 +43145,13 @@ "defaultValue": "false" }, { - "id": 1071, + "id": 3493, "name": "errorMessage", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets error message string to display for invalid values" @@ -42314,7 +43168,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 50, "character": 23 } @@ -42325,12 +43179,13 @@ } }, { - "id": 1070, + "id": 3492, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets hint text" @@ -42347,7 +43202,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 46, "character": 15 } @@ -42358,12 +43213,13 @@ } }, { - "id": 1068, + "id": 3490, "name": "label", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets starting value for input" @@ -42380,7 +43236,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 38, "character": 16 } @@ -42391,12 +43247,13 @@ } }, { - "id": 1069, + "id": 3491, "name": "name", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets name attribute value" @@ -42413,7 +43270,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 42, "character": 15 } @@ -42424,17 +43281,18 @@ } }, { - "id": 1081, + "id": 3503, "name": "onChange", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 71, "character": 17 } @@ -42445,17 +43303,18 @@ } }, { - "id": 1082, + "id": 3504, "name": "onTouched", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 72, "character": 18 } @@ -42466,18 +43325,19 @@ } }, { - "id": 1084, + "id": 3506, "name": "samFormService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 74, "character": 36 } @@ -42485,21 +43345,22 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 1076, + "id": 3498, "name": "time", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 64, "character": 13 } @@ -42511,12 +43372,13 @@ "defaultValue": " undefined" }, { - "id": 1079, + "id": 3501, "name": "timeComponent", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -42533,7 +43395,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 68, "character": 50 } @@ -42541,16 +43403,17 @@ "type": { "type": "reference", "name": "SamTimeComponent", - "id": 973 + "id": 3395 } }, { - "id": 1074, + "id": 3496, "name": "useFormService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Toggles validations to display with SamFormService events" @@ -42567,7 +43430,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 62, "character": 25 } @@ -42578,17 +43441,18 @@ } }, { - "id": 1075, + "id": 3497, "name": "value", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 63, "character": 14 } @@ -42599,12 +43463,13 @@ } }, { - "id": 1080, + "id": 3502, "name": "wrapper", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -42621,7 +43486,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 69, "character": 44 } @@ -42632,16 +43497,17 @@ } }, { - "id": 1096, + "id": 3518, "name": "dateBlur", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1097, + "id": 3519, "name": "dateBlur", "kind": 4096, "kindString": "Call signature", @@ -42654,30 +43520,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 128, "character": 10 } ] }, { - "id": 1093, + "id": 3515, "name": "emitChanges", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1094, + "id": 3516, "name": "emitChanges", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1095, + "id": 3517, "name": "val", "kind": 32768, "kindString": "Parameter", @@ -42696,23 +43563,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 119, "character": 13 } ] }, { - "id": 1089, + "id": 3511, "name": "ngOnChanges", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1090, + "id": 3512, "name": "ngOnChanges", "kind": 4096, "kindString": "Call signature", @@ -42725,23 +43593,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 102, "character": 13 } ] }, { - "id": 1087, + "id": 3509, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1088, + "id": 3510, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -42754,23 +43623,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 76, "character": 10 } ] }, { - "id": 1098, + "id": 3520, "name": "onInputChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1099, + "id": 3521, "name": "onInputChange", "kind": 4096, "kindString": "Call signature", @@ -42783,23 +43653,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 132, "character": 15 } ] }, { - "id": 1091, + "id": 3513, "name": "parseValueString", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1092, + "id": 3514, "name": "parseValueString", "kind": 4096, "kindString": "Call signature", @@ -42812,30 +43683,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 106, "character": 18 } ] }, { - "id": 1102, + "id": 3524, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1103, + "id": 3525, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1104, + "id": 3526, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -42854,30 +43726,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 147, "character": 18 } ] }, { - "id": 1105, + "id": 3527, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1106, + "id": 3528, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1107, + "id": 3529, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -42896,23 +43769,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 151, "character": 19 } ] }, { - "id": 1100, + "id": 3522, "name": "resetInput", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1101, + "id": 3523, "name": "resetInput", "kind": 4096, "kindString": "Call signature", @@ -42925,30 +43799,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 142, "character": 12 } ] }, { - "id": 1108, + "id": 3530, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1109, + "id": 3531, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1110, + "id": 3532, "name": "disabled", "kind": 32768, "kindString": "Parameter", @@ -42967,30 +43842,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 155, "character": 18 } ] }, { - "id": 1111, + "id": 3533, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1112, + "id": 3534, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1113, + "id": 3535, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -43009,7 +43885,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 159, "character": 12 } @@ -43021,53 +43897,53 @@ "title": "Constructors", "kind": 512, "children": [ - 1083 + 3505 ] }, { "title": "Properties", "kind": 1024, "children": [ - 1067, - 1073, - 1077, - 1078, - 1072, - 1071, - 1070, - 1068, - 1069, - 1081, - 1082, - 1084, - 1076, - 1079, - 1074, - 1075, - 1080 + 3489, + 3495, + 3499, + 3500, + 3494, + 3493, + 3492, + 3490, + 3491, + 3503, + 3504, + 3506, + 3498, + 3501, + 3496, + 3497, + 3502 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1096, - 1093, - 1089, - 1087, - 1098, - 1091, - 1102, - 1105, - 1100, - 1108, - 1111 + 3518, + 3515, + 3511, + 3509, + 3520, + 3513, + 3524, + 3527, + 3522, + 3530, + 3533 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 32, "character": 33 } @@ -43088,21 +43964,25 @@ ] }, { - "id": 1114, + "id": 3536, "name": "MY_VALUE_ACCESSOR", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExternal": true + }, "children": [ { - "id": 1117, + "id": 3539, "name": "multi", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 21, "character": 7 } @@ -43114,14 +43994,16 @@ "defaultValue": "true" }, { - "id": 1115, + "id": 3537, "name": "provide", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 19, "character": 9 } @@ -43139,14 +44021,16 @@ "defaultValue": " NG_VALUE_ACCESSOR" }, { - "id": 1116, + "id": 3538, "name": "useExisting", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 20, "character": 13 } @@ -43169,15 +44053,15 @@ "title": "Variables", "kind": 32, "children": [ - 1117, - 1115, - 1116 + 3539, + 3537, + 3538 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 18, "character": 23 } @@ -43193,59 +44077,62 @@ "title": "Classes", "kind": 128, "children": [ - 1066 + 3488 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 1114 + 3536 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1118, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/date-time/index\"", + "id": 3540, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/date-time/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date-time/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date-time/index.ts", "line": 1, "character": 0 } ] }, { - "id": 823, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/date/date.component\"", + "id": 3245, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "children": [ { - "id": 824, + "id": 3246, "name": "SamDateComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component is a Date entry portion of a form" @@ -43264,23 +44151,24 @@ ], "children": [ { - "id": 867, + "id": 3289, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 870, + "id": 3292, "name": "new SamDateComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 871, + "id": 3293, "name": "samFormService", "kind": 32768, "kindString": "Parameter", @@ -43288,11 +44176,11 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 872, + "id": 3294, "name": "cdr", "kind": 32768, "kindString": "Parameter", @@ -43306,30 +44194,31 @@ "type": { "type": "reference", "name": "SamDateComponent", - "id": 824 + "id": 3246 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 153, "character": 35 } ] }, { - "id": 847, + "id": 3269, "name": "INPUT_FORMAT", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 98, "character": 21 } @@ -43341,17 +44230,18 @@ "defaultValue": "\"Y-M-D\"" }, { - "id": 848, + "id": 3270, "name": "OUTPUT_FORMAT", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 99, "character": 22 } @@ -43363,17 +44253,18 @@ "defaultValue": "\"YYYY-MM-DD\"" }, { - "id": 842, + "id": 3264, "name": "allowChars", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 91, "character": 19 } @@ -43391,12 +44282,13 @@ "defaultValue": " ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', \n 'Backspace', 'ArrowLeft', 'ArrowRight', 'Tab', 'Delete']" }, { - "id": 837, + "id": 3259, "name": "blur", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -43414,7 +44306,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 84, "character": 23 } @@ -43432,12 +44324,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 836, + "id": 3258, "name": "blurEvent", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -43455,7 +44348,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 80, "character": 28 } @@ -43473,18 +44366,19 @@ "defaultValue": " new EventEmitter()" }, { - "id": 869, + "id": 3291, "name": "cdr", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 156, "character": 15 } @@ -43495,12 +44389,13 @@ } }, { - "id": 833, + "id": 3255, "name": "control", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -43518,7 +44413,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 68, "character": 25 } @@ -43529,12 +44424,13 @@ } }, { - "id": 839, + "id": 3261, "name": "day", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -43551,7 +44447,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 87, "character": 30 } @@ -43562,12 +44458,13 @@ } }, { - "id": 832, + "id": 3254, "name": "defaultValidations", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -43585,7 +44482,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 64, "character": 36 } @@ -43597,12 +44494,13 @@ "defaultValue": "false" }, { - "id": 830, + "id": 3252, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -43620,7 +44518,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 56, "character": 26 } @@ -43632,12 +44530,13 @@ "defaultValue": "false" }, { - "id": 825, + "id": 3247, "name": "errorMessage", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -43655,7 +44554,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 36, "character": 30 } @@ -43667,12 +44566,13 @@ "defaultValue": "\"\"" }, { - "id": 829, + "id": 3251, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -43690,7 +44590,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 52, "character": 22 } @@ -43702,12 +44602,13 @@ "defaultValue": "\"\"" }, { - "id": 827, + "id": 3249, "name": "label", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -43725,7 +44626,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 44, "character": 23 } @@ -43737,17 +44638,18 @@ "defaultValue": "\"\"" }, { - "id": 852, + "id": 3274, "name": "maxDay", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 103, "character": 16 } @@ -43759,17 +44661,18 @@ "defaultValue": "31" }, { - "id": 851, + "id": 3273, "name": "maxMonth", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 102, "character": 18 } @@ -43781,12 +44684,13 @@ "defaultValue": "12" }, { - "id": 838, + "id": 3260, "name": "month", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -43803,7 +44707,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 86, "character": 34 } @@ -43814,12 +44718,13 @@ } }, { - "id": 826, + "id": 3248, "name": "name", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -43837,7 +44742,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 40, "character": 22 } @@ -43849,17 +44754,18 @@ "defaultValue": "\"\"" }, { - "id": 850, + "id": 3272, "name": "nonFebruaryDays", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 101, "character": 25 } @@ -43877,12 +44783,13 @@ "defaultValue": " [30, 31]" }, { - "id": 828, + "id": 3250, "name": "required", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -43900,7 +44807,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 48, "character": 26 } @@ -43912,18 +44819,19 @@ "defaultValue": "false" }, { - "id": 868, + "id": 3290, "name": "samFormService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 155, "character": 36 } @@ -43931,21 +44839,22 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 849, + "id": 3271, "name": "thirtyDayMonths", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 100, "character": 25 } @@ -43963,12 +44872,13 @@ "defaultValue": " [4, 6, 9, 11]" }, { - "id": 834, + "id": 3256, "name": "useFormService", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -43986,7 +44896,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 72, "character": 32 } @@ -43997,12 +44907,13 @@ } }, { - "id": 831, + "id": 3253, "name": "value", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -44020,7 +44931,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 60, "character": 23 } @@ -44031,12 +44942,13 @@ } }, { - "id": 835, + "id": 3257, "name": "valueChange", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -44054,7 +44966,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 76, "character": 30 } @@ -44072,12 +44984,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 841, + "id": 3263, "name": "wrapper", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -44094,7 +45007,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 89, "character": 38 } @@ -44105,12 +45018,13 @@ } }, { - "id": 840, + "id": 3262, "name": "year", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -44127,7 +45041,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 88, "character": 32 } @@ -44138,16 +45052,17 @@ } }, { - "id": 853, + "id": 3275, "name": "inputModel", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "getSignature": [ { - "id": 854, + "id": 3276, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -44155,21 +45070,23 @@ "type": { "type": "reflection", "declaration": { - "id": 855, + "id": 3277, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 856, + "id": 3278, "name": "day", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 107, "character": 9 } @@ -44181,14 +45098,16 @@ "defaultValue": " this.day.nativeElement.value" }, { - "id": 857, + "id": 3279, "name": "month", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 108, "character": 11 } @@ -44200,14 +45119,16 @@ "defaultValue": " this.month.nativeElement.value" }, { - "id": 858, + "id": 3280, "name": "year", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 109, "character": 10 } @@ -44224,9 +45145,9 @@ "title": "Variables", "kind": 32, "children": [ - 856, - 857, - 858 + 3278, + 3279, + 3280 ] } ] @@ -44236,30 +45157,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 105, "character": 16 } ] }, { - "id": 944, + "id": 3366, "name": "_checkCopyPasteChar", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 945, + "id": 3367, "name": "_checkCopyPasteChar", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 946, + "id": 3368, "name": "char", "kind": 32768, "kindString": "Parameter", @@ -44278,30 +45200,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 485, "character": 21 } ] }, { - "id": 950, + "id": 3372, "name": "_getClipboardText", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 951, + "id": 3373, "name": "_getClipboardText", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 952, + "id": 3374, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -44320,30 +45243,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 498, "character": 19 } ] }, { - "id": 956, + "id": 3378, "name": "_isLeapYear", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 957, + "id": 3379, "name": "_isLeapYear", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 958, + "id": 3380, "name": "year", "kind": 32768, "kindString": "Parameter", @@ -44362,30 +45286,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 521, "character": 13 } ] }, { - "id": 947, + "id": 3369, "name": "_keyIsNumber", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 948, + "id": 3370, "name": "_keyIsNumber", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 949, + "id": 3371, "name": "char", "kind": 32768, "kindString": "Parameter", @@ -44404,30 +45329,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 491, "character": 14 } ] }, { - "id": 953, + "id": 3375, "name": "_shouldClearDayInput", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 954, + "id": 3376, "name": "_shouldClearDayInput", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 955, + "id": 3377, "name": "num", "kind": 32768, "kindString": "Parameter", @@ -44446,23 +45372,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 510, "character": 22 } ] }, { - "id": 930, + "id": 3352, "name": "dayName", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 931, + "id": 3353, "name": "dayName", "kind": 4096, "kindString": "Call signature", @@ -44475,30 +45402,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 454, "character": 9 } ] }, { - "id": 879, + "id": 3301, "name": "getDate", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 880, + "id": 3302, "name": "getDate", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 881, + "id": 3303, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -44518,23 +45446,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 221, "character": 9 } ] }, { - "id": 907, + "id": 3329, "name": "getMaxDate", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 908, + "id": 3330, "name": "getMaxDate", "kind": 4096, "kindString": "Call signature", @@ -44547,30 +45476,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 344, "character": 12 } ] }, { - "id": 909, + "id": 3331, "name": "getNumJumpThreshold", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 910, + "id": 3332, "name": "getNumJumpThreshold", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 911, + "id": 3333, "name": "month", "kind": 32768, "kindString": "Parameter", @@ -44598,30 +45528,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 365, "character": 21 } ] }, { - "id": 897, + "id": 3319, "name": "getPossibleNum", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 898, + "id": 3320, "name": "getPossibleNum", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 899, + "id": 3321, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -44632,7 +45563,7 @@ } }, { - "id": 900, + "id": 3322, "name": "key", "kind": 32768, "kindString": "Parameter", @@ -44651,30 +45582,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 297, "character": 16 } ] }, { - "id": 923, + "id": 3345, "name": "isClean", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 924, + "id": 3346, "name": "isClean", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 925, + "id": 3347, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -44694,23 +45626,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 429, "character": 9 } ] }, { - "id": 926, + "id": 3348, "name": "isValid", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 927, + "id": 3349, "name": "isValid", "kind": 4096, "kindString": "Call signature", @@ -44723,23 +45656,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 445, "character": 9 } ] }, { - "id": 928, + "id": 3350, "name": "monthName", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 929, + "id": 3351, "name": "monthName", "kind": 4096, "kindString": "Call signature", @@ -44752,23 +45686,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 450, "character": 11 } ] }, { - "id": 875, + "id": 3297, "name": "ngOnChanges", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 876, + "id": 3298, "name": "ngOnChanges", "kind": 4096, "kindString": "Call signature", @@ -44781,23 +45716,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 195, "character": 13 } ] }, { - "id": 873, + "id": 3295, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 874, + "id": 3296, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -44810,23 +45746,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 158, "character": 10 } ] }, { - "id": 863, + "id": 3285, "name": "onChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 864, + "id": 3286, "name": "onChange", "kind": 4096, "kindString": "Call signature", @@ -44839,30 +45776,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 152, "character": 10 } ] }, { - "id": 920, + "id": 3342, "name": "onChangeHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 921, + "id": 3343, "name": "onChangeHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 922, + "id": 3344, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -44882,30 +45820,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 413, "character": 17 } ] }, { - "id": 901, + "id": 3323, "name": "onDayBlur", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 902, + "id": 3324, "name": "onDayBlur", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 903, + "id": 3325, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -44924,30 +45863,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 311, "character": 11 } ] }, { - "id": 904, + "id": 3326, "name": "onDayInput", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 905, + "id": 3327, "name": "onDayInput", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 906, + "id": 3328, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -44966,30 +45906,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 317, "character": 12 } ] }, { - "id": 885, + "id": 3307, "name": "onDayPaste", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 886, + "id": 3308, "name": "onDayPaste", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 887, + "id": 3309, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -45008,30 +45949,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 239, "character": 12 } ] }, { - "id": 891, + "id": 3313, "name": "onMonthBlur", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 892, + "id": 3314, "name": "onMonthBlur", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 893, + "id": 3315, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -45050,30 +45992,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 262, "character": 13 } ] }, { - "id": 894, + "id": 3316, "name": "onMonthInput", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 895, + "id": 3317, "name": "onMonthInput", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 896, + "id": 3318, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -45092,30 +46035,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 268, "character": 14 } ] }, { - "id": 882, + "id": 3304, "name": "onMonthPaste", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 883, + "id": 3305, "name": "onMonthPaste", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 884, + "id": 3306, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -45134,23 +46078,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 226, "character": 14 } ] }, { - "id": 865, + "id": 3287, "name": "onTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 866, + "id": 3288, "name": "onTouched", "kind": 4096, "kindString": "Call signature", @@ -45163,30 +46108,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 153, "character": 11 } ] }, { - "id": 912, + "id": 3334, "name": "onYearBlur", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 913, + "id": 3335, "name": "onYearBlur", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 914, + "id": 3336, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -45205,30 +46151,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 370, "character": 12 } ] }, { - "id": 915, + "id": 3337, "name": "onYearInput", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 916, + "id": 3338, "name": "onYearInput", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 917, + "id": 3339, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -45247,30 +46194,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 382, "character": 13 } ] }, { - "id": 888, + "id": 3310, "name": "onYearPaste", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 889, + "id": 3311, "name": "onYearPaste", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 890, + "id": 3312, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -45289,23 +46237,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 252, "character": 13 } ] }, { - "id": 877, + "id": 3299, "name": "parseValueString", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 878, + "id": 3300, "name": "parseValueString", "kind": 4096, "kindString": "Call signature", @@ -45318,30 +46267,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 199, "character": 18 } ] }, { - "id": 959, + "id": 3381, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 960, + "id": 3382, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 961, + "id": 3383, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -45360,30 +46310,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 531, "character": 18 } ] }, { - "id": 962, + "id": 3384, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 963, + "id": 3385, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 964, + "id": 3386, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -45402,23 +46353,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 535, "character": 19 } ] }, { - "id": 918, + "id": 3340, "name": "removalKeyHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 919, + "id": 3341, "name": "removalKeyHandler", "kind": 4096, "kindString": "Call signature", @@ -45431,23 +46383,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 408, "character": 19 } ] }, { - "id": 942, + "id": 3364, "name": "resetInput", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 943, + "id": 3365, "name": "resetInput", "kind": 4096, "kindString": "Call signature", @@ -45460,30 +46413,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 479, "character": 12 } ] }, { - "id": 965, + "id": 3387, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 966, + "id": 3388, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 967, + "id": 3389, "name": "disabled", "kind": 32768, "kindString": "Parameter", @@ -45502,30 +46456,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 539, "character": 18 } ] }, { - "id": 939, + "id": 3361, "name": "triggerDayTouch", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 940, + "id": 3362, "name": "triggerDayTouch", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 941, + "id": 3363, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -45544,30 +46499,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 472, "character": 17 } ] }, { - "id": 936, + "id": 3358, "name": "triggerMonthTouch", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 937, + "id": 3359, "name": "triggerMonthTouch", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 938, + "id": 3360, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -45586,23 +46542,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 466, "character": 19 } ] }, { - "id": 934, + "id": 3356, "name": "triggerTouch", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 935, + "id": 3357, "name": "triggerTouch", "kind": 4096, "kindString": "Call signature", @@ -45615,30 +46572,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 462, "character": 14 } ] }, { - "id": 968, + "id": 3390, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 969, + "id": 3391, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 970, + "id": 3392, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -45657,23 +46615,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 543, "character": 12 } ] }, { - "id": 932, + "id": 3354, "name": "yearName", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 933, + "id": 3355, "name": "yearName", "kind": 4096, "kindString": "Call signature", @@ -45686,24 +46645,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 458, "character": 10 } ] }, { - "id": 859, + "id": 3281, "name": "dateRequired", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 860, + "id": 3282, "name": "dateRequired", "kind": 4096, "kindString": "Call signature", @@ -45716,24 +46676,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 113, "character": 21 } ] }, { - "id": 861, + "id": 3283, "name": "dateValidation", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 862, + "id": 3284, "name": "dateValidation", "kind": 4096, "kindString": "Call signature", @@ -45746,33 +46707,35 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 126, "character": 23 } ] }, { - "id": 843, + "id": 3265, "name": "model", "kind": 2097152, "kindString": "Object literal", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "children": [ { - "id": 845, + "id": 3267, "name": "day", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 95, "character": 7 } @@ -45784,16 +46747,17 @@ "defaultValue": " undefined" }, { - "id": 844, + "id": 3266, "name": "month", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 94, "character": 9 } @@ -45805,16 +46769,17 @@ "defaultValue": " undefined" }, { - "id": 846, + "id": 3268, "name": "year", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 96, "character": 8 } @@ -45831,15 +46796,15 @@ "title": "Variables", "kind": 32, "children": [ - 845, - 844, - 846 + 3267, + 3266, + 3268 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 93, "character": 14 } @@ -45855,105 +46820,105 @@ "title": "Constructors", "kind": 512, "children": [ - 867 + 3289 ] }, { "title": "Properties", "kind": 1024, "children": [ - 847, - 848, - 842, - 837, - 836, - 869, - 833, - 839, - 832, - 830, - 825, - 829, - 827, - 852, - 851, - 838, - 826, - 850, - 828, - 868, - 849, - 834, - 831, - 835, - 841, - 840 + 3269, + 3270, + 3264, + 3259, + 3258, + 3291, + 3255, + 3261, + 3254, + 3252, + 3247, + 3251, + 3249, + 3274, + 3273, + 3260, + 3248, + 3272, + 3250, + 3290, + 3271, + 3256, + 3253, + 3257, + 3263, + 3262 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 853 + 3275 ] }, { "title": "Methods", "kind": 2048, "children": [ - 944, - 950, - 956, - 947, - 953, - 930, - 879, - 907, - 909, - 897, - 923, - 926, - 928, - 875, - 873, - 863, - 920, - 901, - 904, - 885, - 891, - 894, - 882, - 865, - 912, - 915, - 888, - 877, - 959, - 962, - 918, - 942, - 965, - 939, - 936, - 934, - 968, - 932, - 859, - 861 + 3366, + 3372, + 3378, + 3369, + 3375, + 3352, + 3301, + 3329, + 3331, + 3319, + 3345, + 3348, + 3350, + 3297, + 3295, + 3285, + 3342, + 3323, + 3326, + 3307, + 3313, + 3316, + 3304, + 3287, + 3334, + 3337, + 3310, + 3299, + 3381, + 3384, + 3340, + 3364, + 3387, + 3361, + 3358, + 3356, + 3390, + 3354, + 3281, + 3283 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 843 + 3265 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 31, "character": 29 } @@ -45979,52 +46944,55 @@ "title": "Classes", "kind": 128, "children": [ - 824 + 3246 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", "line": 1, "character": 0 } ] }, { - "id": 971, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/date/index\"", + "id": 3393, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/date/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/date/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/date/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/date/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/date/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1792, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/index\"", + "id": 4075, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/index.ts", "children": [ { - "id": 1793, + "id": 4076, "name": "SamFormControlsModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -46040,7 +47008,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/index.ts", "line": 57, "character": 34 } @@ -46052,52 +47020,55 @@ "title": "Classes", "kind": 128, "children": [ - 1793 + 4076 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1280, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/number/index\"", + "id": 3702, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/number/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/number/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/number/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1229, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/number/number.component\"", + "id": 3651, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "children": [ { - "id": 1230, + "id": 3652, "name": "SamNumberComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": {}, "decorators": [ @@ -46114,23 +47085,24 @@ ], "children": [ { - "id": 1248, + "id": 3670, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1251, + "id": 3673, "name": "new SamNumberComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1252, + "id": 3674, "name": "samFormService", "kind": 32768, "kindString": "Parameter", @@ -46138,11 +47110,11 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 1253, + "id": 3675, "name": "cdr", "kind": 32768, "kindString": "Parameter", @@ -46156,31 +47128,32 @@ "type": { "type": "reference", "name": "SamNumberComponent", - "id": 1230 + "id": 3652 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 102, "character": 42 } ] }, { - "id": 1250, + "id": 3672, "name": "cdr", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 105, "character": 15 } @@ -46191,12 +47164,13 @@ } }, { - "id": 1240, + "id": 3662, "name": "control", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "sets the form control to trigger label wrapper messages" @@ -46213,7 +47187,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 90, "character": 18 } @@ -46224,12 +47198,13 @@ } }, { - "id": 1238, + "id": 3660, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "sets the disabled state" @@ -46246,7 +47221,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 82, "character": 19 } @@ -46257,12 +47232,13 @@ } }, { - "id": 1237, + "id": 3659, "name": "errorMessage", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "deprecated, sets the error message manually" @@ -46279,7 +47255,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 78, "character": 23 } @@ -46290,12 +47266,13 @@ } }, { - "id": 1236, + "id": 3658, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "sets the hint text" @@ -46312,7 +47289,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 74, "character": 15 } @@ -46323,17 +47300,18 @@ } }, { - "id": 1243, + "id": 3665, "name": "invalidKeys", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 97, "character": 20 } @@ -46351,12 +47329,13 @@ "defaultValue": " ['e', 'E', ',', '-', '+']" }, { - "id": 1232, + "id": 3654, "name": "label", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "sets the label wrapper text" @@ -46373,7 +47352,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 58, "character": 16 } @@ -46384,12 +47363,13 @@ } }, { - "id": 1235, + "id": 3657, "name": "max", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "sets the maximum allowed value" @@ -46406,7 +47386,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 70, "character": 14 } @@ -46417,12 +47397,13 @@ } }, { - "id": 1234, + "id": 3656, "name": "min", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "sets the minimum allowed value" @@ -46439,7 +47420,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 66, "character": 14 } @@ -46450,12 +47431,13 @@ } }, { - "id": 1233, + "id": 3655, "name": "name", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "sets the input name attribute value" @@ -46472,7 +47454,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 62, "character": 15 } @@ -46483,12 +47465,13 @@ } }, { - "id": 1239, + "id": 3661, "name": "required", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "deprecated, toggles the required text in the label wrapper" @@ -46505,7 +47488,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 86, "character": 19 } @@ -46516,18 +47499,19 @@ } }, { - "id": 1249, + "id": 3671, "name": "samFormService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 104, "character": 36 } @@ -46535,16 +47519,17 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 1241, + "id": 3663, "name": "useFormService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Toggles validations to display with SamFormService events" @@ -46561,7 +47546,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 94, "character": 25 } @@ -46572,12 +47557,13 @@ } }, { - "id": 1231, + "id": 3653, "name": "value", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "(deprecated) sets value" @@ -46594,7 +47580,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 54, "character": 16 } @@ -46605,12 +47591,13 @@ } }, { - "id": 1242, + "id": 3664, "name": "wrapper", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -46627,7 +47614,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 96, "character": 41 } @@ -46635,27 +47622,28 @@ "type": { "type": "reference", "name": "LabelWrapper", - "id": 515 + "id": 710 } }, { - "id": 1258, + "id": 3680, "name": "keyDownHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1259, + "id": 3681, "name": "keyDownHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1260, + "id": 3682, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -46674,23 +47662,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 149, "character": 16 } ] }, { - "id": 1256, + "id": 3678, "name": "ngAfterViewInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1257, + "id": 3679, "name": "ngAfterViewInit", "kind": 4096, "kindString": "Call signature", @@ -46703,23 +47692,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 142, "character": 17 } ] }, { - "id": 1254, + "id": 3676, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1255, + "id": 3677, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -46732,24 +47722,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 107, "character": 10 } ] }, { - "id": 1244, + "id": 3666, "name": "onChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1245, + "id": 3667, "name": "onChange", "kind": 4096, "kindString": "Call signature", @@ -46762,30 +47753,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 99, "character": 17 } ] }, { - "id": 1261, + "id": 3683, "name": "onInputChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1262, + "id": 3684, "name": "onInputChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1263, + "id": 3685, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -46804,24 +47796,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 155, "character": 15 } ] }, { - "id": 1246, + "id": 3668, "name": "onTouched", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1247, + "id": 3669, "name": "onTouched", "kind": 4096, "kindString": "Call signature", @@ -46834,30 +47827,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 102, "character": 18 } ] }, { - "id": 1264, + "id": 3686, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1265, + "id": 3687, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1266, + "id": 3688, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -46876,30 +47870,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 160, "character": 18 } ] }, { - "id": 1267, + "id": 3689, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1268, + "id": 3690, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1269, + "id": 3691, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -46918,30 +47913,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 164, "character": 19 } ] }, { - "id": 1270, + "id": 3692, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1271, + "id": 3693, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1272, + "id": 3694, "name": "disabled", "kind": 32768, "kindString": "Parameter", @@ -46960,30 +47956,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 168, "character": 18 } ] }, { - "id": 1273, + "id": 3695, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1274, + "id": 3696, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1275, + "id": 3697, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -47002,7 +47999,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 172, "character": 12 } @@ -47014,50 +48011,50 @@ "title": "Constructors", "kind": 512, "children": [ - 1248 + 3670 ] }, { "title": "Properties", "kind": 1024, "children": [ - 1250, - 1240, - 1238, - 1237, - 1236, - 1243, - 1232, - 1235, - 1234, - 1233, - 1239, - 1249, - 1241, - 1231, - 1242 + 3672, + 3662, + 3660, + 3659, + 3658, + 3665, + 3654, + 3657, + 3656, + 3655, + 3661, + 3671, + 3663, + 3653, + 3664 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1258, - 1256, - 1254, - 1244, - 1261, - 1246, - 1264, - 1267, - 1270, - 1273 + 3680, + 3678, + 3676, + 3666, + 3683, + 3668, + 3686, + 3689, + 3692, + 3695 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 50, "character": 31 } @@ -47070,25 +48067,27 @@ ] }, { - "id": 1276, + "id": 3698, "name": "TEXT_VALUE_ACCESSOR", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 1279, + "id": 3701, "name": "multi", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 22, "character": 7 } @@ -47100,16 +48099,17 @@ "defaultValue": "true" }, { - "id": 1277, + "id": 3699, "name": "provide", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 20, "character": 9 } @@ -47127,16 +48127,17 @@ "defaultValue": " NG_VALUE_ACCESSOR" }, { - "id": 1278, + "id": 3700, "name": "useExisting", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 21, "character": 13 } @@ -47159,15 +48160,15 @@ "title": "Variables", "kind": 32, "children": [ - 1279, - 1277, - 1278 + 3701, + 3699, + 3700 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 19, "character": 32 } @@ -47183,59 +48184,62 @@ "title": "Classes", "kind": 128, "children": [ - 1230 + 3652 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 1276 + 3698 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1315, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/radiobutton/index\"", + "id": 3737, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/radiobutton/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1281, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component\"", + "id": 3703, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "children": [ { - "id": 1282, + "id": 3704, "name": "SamRadioButtonComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component is a set of checkboxes compliant with\nsam.gov standards" @@ -47254,12 +48258,13 @@ ], "children": [ { - "id": 1290, + "id": 3712, "name": "control", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -47277,7 +48282,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 65, "character": 25 } @@ -47288,17 +48293,18 @@ } }, { - "id": 1293, + "id": 3715, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 73, "character": 18 } @@ -47310,12 +48316,13 @@ "defaultValue": " undefined" }, { - "id": 1289, + "id": 3711, "name": "errorMessage", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -47333,7 +48340,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 61, "character": 30 } @@ -47344,12 +48351,13 @@ } }, { - "id": 1287, + "id": 3709, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -47367,7 +48375,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 53, "character": 22 } @@ -47378,12 +48386,13 @@ } }, { - "id": 1285, + "id": 3707, "name": "label", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -47401,7 +48410,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 45, "character": 23 } @@ -47412,12 +48421,13 @@ } }, { - "id": 1283, + "id": 3705, "name": "model", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -47435,7 +48445,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 37, "character": 23 } @@ -47459,12 +48469,13 @@ } }, { - "id": 1291, + "id": 3713, "name": "modelChange", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -47482,7 +48493,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 69, "character": 30 } @@ -47500,12 +48511,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1286, + "id": 3708, "name": "name", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -47523,7 +48535,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 49, "character": 22 } @@ -47534,12 +48546,13 @@ } }, { - "id": 1284, + "id": 3706, "name": "options", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -47557,7 +48570,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 41, "character": 25 } @@ -47566,16 +48579,17 @@ "type": "reference", "isArray": true, "name": "OptionsType", - "id": 152 + "id": 26 } }, { - "id": 1288, + "id": 3710, "name": "required", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -47593,7 +48607,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 57, "character": 26 } @@ -47605,12 +48619,13 @@ "defaultValue": "false" }, { - "id": 1292, + "id": 3714, "name": "wrapper", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -47627,7 +48642,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 71, "character": 44 } @@ -47635,21 +48650,22 @@ "type": { "type": "reference", "name": "FieldsetWrapper", - "id": 468 + "id": 829 } }, { - "id": 1294, + "id": 3716, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1295, + "id": 3717, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -47662,24 +48678,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 76, "character": 17 } ] }, { - "id": 1299, + "id": 3721, "name": "onChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1300, + "id": 3722, "name": "onChange", "kind": 4096, "kindString": "Call signature", @@ -47692,31 +48709,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 99, "character": 17 } ] }, { - "id": 1296, + "id": 3718, "name": "onRadioChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1297, + "id": 3719, "name": "onRadioChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1298, + "id": 3720, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -47735,24 +48753,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 93, "character": 22 } ] }, { - "id": 1301, + "id": 3723, "name": "onTouched", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1302, + "id": 3724, "name": "onTouched", "kind": 4096, "kindString": "Call signature", @@ -47765,31 +48784,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 100, "character": 18 } ] }, { - "id": 1303, + "id": 3725, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1304, + "id": 3726, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1305, + "id": 3727, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -47808,31 +48828,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 102, "character": 25 } ] }, { - "id": 1306, + "id": 3728, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1307, + "id": 3729, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1308, + "id": 3730, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -47851,31 +48872,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 106, "character": 26 } ] }, { - "id": 1309, + "id": 3731, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1310, + "id": 3732, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1311, + "id": 3733, "name": "disabled", "kind": 32768, "kindString": "Parameter", @@ -47894,31 +48916,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 110, "character": 25 } ] }, { - "id": 1312, + "id": 3734, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1313, + "id": 3735, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1314, + "id": 3736, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -47937,7 +48960,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 114, "character": 19 } @@ -47949,37 +48972,37 @@ "title": "Properties", "kind": 1024, "children": [ - 1290, - 1293, - 1289, - 1287, - 1285, - 1283, - 1291, - 1286, - 1284, - 1288, - 1292 + 3712, + 3715, + 3711, + 3709, + 3707, + 3705, + 3713, + 3708, + 3706, + 3710, + 3714 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1294, - 1299, - 1296, - 1301, - 1303, - 1306, - 1309, - 1312 + 3716, + 3721, + 3718, + 3723, + 3725, + 3728, + 3731, + 3734 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 33, "character": 36 } @@ -47991,35 +49014,37 @@ "title": "Classes", "kind": 128, "children": [ - 1282 + 3704 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1372, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/select/index\"", + "id": 3794, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/select/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/select/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/select/index.ts", "children": [ { - "id": 1373, + "id": 3795, "name": "SamSelectModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -48035,7 +49060,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/index.ts", "line": 21, "character": 28 } @@ -48047,35 +49072,37 @@ "title": "Classes", "kind": 128, "children": [ - 1373 + 3795 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1316, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/select/select.component\"", + "id": 3738, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "children": [ { - "id": 1317, + "id": 3739, "name": "SamSelectComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component is a select/options group form control" @@ -48094,23 +49121,24 @@ ], "children": [ { - "id": 1339, + "id": 3761, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1342, + "id": 3764, "name": "new SamSelectComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1343, + "id": 3765, "name": "cdr", "kind": 32768, "kindString": "Parameter", @@ -48131,7 +49159,7 @@ } }, { - "id": 1344, + "id": 3766, "name": "samFormService", "kind": 32768, "kindString": "Parameter", @@ -48139,34 +49167,35 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } } ], "type": { "type": "reference", "name": "SamSelectComponent", - "id": 1317 + "id": 3739 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 92, "character": 32 } ] }, { - "id": 1340, + "id": 3762, "name": "cdr", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -48180,7 +49209,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 94, "character": 37 } @@ -48191,12 +49220,13 @@ } }, { - "id": 1327, + "id": 3749, "name": "control", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -48214,7 +49244,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 77, "character": 25 } @@ -48225,12 +49255,13 @@ } }, { - "id": 1326, + "id": 3748, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -48248,7 +49279,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 73, "character": 26 } @@ -48259,12 +49290,13 @@ } }, { - "id": 1324, + "id": 3746, "name": "errorMessage", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -48282,7 +49314,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 65, "character": 30 } @@ -48293,12 +49325,13 @@ } }, { - "id": 1323, + "id": 3745, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -48316,7 +49349,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 61, "character": 22 } @@ -48327,12 +49360,13 @@ } }, { - "id": 1320, + "id": 3742, "name": "label", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -48350,7 +49384,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 49, "character": 23 } @@ -48361,12 +49395,13 @@ } }, { - "id": 1318, + "id": 3740, "name": "model", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -48384,7 +49419,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 41, "character": 23 } @@ -48408,12 +49443,13 @@ } }, { - "id": 1329, + "id": 3751, "name": "modelChange", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -48431,7 +49467,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 85, "character": 30 } @@ -48449,12 +49485,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1321, + "id": 3743, "name": "name", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -48472,7 +49509,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 53, "character": 22 } @@ -48483,17 +49520,18 @@ } }, { - "id": 1332, + "id": 3754, "name": "onChange", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 91, "character": 18 } @@ -48501,21 +49539,21 @@ "type": { "type": "reflection", "declaration": { - "id": 1333, + "id": 3755, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1334, + "id": 3756, "name": "__call", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1335, + "id": 3757, "name": "_", "kind": 32768, "kindString": "Parameter", @@ -48534,7 +49572,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 91, "character": 19 } @@ -48543,17 +49581,18 @@ } }, { - "id": 1336, + "id": 3758, "name": "onTouched", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 92, "character": 19 } @@ -48561,14 +49600,14 @@ "type": { "type": "reflection", "declaration": { - "id": 1337, + "id": 3759, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "signatures": [ { - "id": 1338, + "id": 3760, "name": "__call", "kind": 4096, "kindString": "Call signature", @@ -48581,7 +49620,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 92, "character": 20 } @@ -48590,12 +49629,13 @@ } }, { - "id": 1319, + "id": 3741, "name": "options", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -48613,7 +49653,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 45, "character": 25 } @@ -48622,16 +49662,17 @@ "type": "reference", "isArray": true, "name": "OptionsType", - "id": 152 + "id": 26 } }, { - "id": 1325, + "id": 3747, "name": "required", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -48649,7 +49690,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 69, "character": 26 } @@ -48660,18 +49701,19 @@ } }, { - "id": 1341, + "id": 3763, "name": "samFormService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 95, "character": 26 } @@ -48679,16 +49721,17 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 1331, + "id": 3753, "name": "select", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -48705,7 +49748,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 89, "character": 36 } @@ -48716,12 +49759,13 @@ } }, { - "id": 1322, + "id": 3744, "name": "tabIndex", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -48739,7 +49783,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 57, "character": 26 } @@ -48751,12 +49795,13 @@ "defaultValue": "0" }, { - "id": 1328, + "id": 3750, "name": "useFormService", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -48774,7 +49819,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 81, "character": 32 } @@ -48785,12 +49830,13 @@ } }, { - "id": 1330, + "id": 3752, "name": "wrapper", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -48807,7 +49853,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 87, "character": 41 } @@ -48815,20 +49861,21 @@ "type": { "type": "reference", "name": "LabelWrapper", - "id": 515 + "id": 710 } }, { - "id": 1347, + "id": 3769, "name": "ngAfterViewInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1348, + "id": 3770, "name": "ngAfterViewInit", "kind": 4096, "kindString": "Call signature", @@ -48841,23 +49888,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 127, "character": 17 } ] }, { - "id": 1345, + "id": 3767, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1346, + "id": 3768, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -48870,23 +49918,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 97, "character": 10 } ] }, { - "id": 1358, + "id": 3780, "name": "onBlur", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1359, + "id": 3781, "name": "onBlur", "kind": 4096, "kindString": "Call signature", @@ -48899,30 +49948,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 151, "character": 8 } ] }, { - "id": 1349, + "id": 3771, "name": "onSelectChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1350, + "id": 3772, "name": "onSelectChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1351, + "id": 3773, "name": "val", "kind": 32768, "kindString": "Parameter", @@ -48941,30 +49991,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 135, "character": 16 } ] }, { - "id": 1360, + "id": 3782, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1361, + "id": 3783, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1362, + "id": 3784, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -48983,30 +50034,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 158, "character": 18 } ] }, { - "id": 1363, + "id": 3785, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1364, + "id": 3786, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1365, + "id": 3787, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -49025,30 +50077,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 162, "character": 19 } ] }, { - "id": 1352, + "id": 3774, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1353, + "id": 3775, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1354, + "id": 3776, "name": "disabled", "kind": 32768, "kindString": "Parameter", @@ -49067,30 +50120,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 143, "character": 18 } ] }, { - "id": 1355, + "id": 3777, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1356, + "id": 3778, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1357, + "id": 3779, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -49109,7 +50163,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 147, "character": 12 } @@ -49121,51 +50175,51 @@ "title": "Constructors", "kind": 512, "children": [ - 1339 + 3761 ] }, { "title": "Properties", "kind": 1024, "children": [ - 1340, - 1327, - 1326, - 1324, - 1323, - 1320, - 1318, - 1329, - 1321, - 1332, - 1336, - 1319, - 1325, - 1341, - 1331, - 1322, - 1328, - 1330 + 3762, + 3749, + 3748, + 3746, + 3745, + 3742, + 3740, + 3751, + 3743, + 3754, + 3758, + 3741, + 3747, + 3763, + 3753, + 3744, + 3750, + 3752 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1347, - 1345, - 1358, - 1349, - 1360, - 1363, - 1352, - 1355 + 3769, + 3767, + 3780, + 3771, + 3782, + 3785, + 3774, + 3777 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 36, "character": 31 } @@ -49182,14 +50236,16 @@ ] }, { - "id": 1366, + "id": 3788, "name": "noop", "kind": 64, "kindString": "Function", - "flags": {}, + "flags": { + "isExternal": true + }, "signatures": [ { - "id": 1367, + "id": 3789, "name": "noop", "kind": 4096, "kindString": "Call signature", @@ -49202,28 +50258,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 21, "character": 10 } ] }, { - "id": 1368, + "id": 3790, "name": "MY_VALUE_ACCESSOR", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExternal": true + }, "children": [ { - "id": 1371, + "id": 3793, "name": "multi", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 25, "character": 7 } @@ -49235,14 +50295,16 @@ "defaultValue": "true" }, { - "id": 1369, + "id": 3791, "name": "provide", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 23, "character": 9 } @@ -49260,14 +50322,16 @@ "defaultValue": " NG_VALUE_ACCESSOR" }, { - "id": 1370, + "id": 3792, "name": "useExisting", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 24, "character": 13 } @@ -49290,15 +50354,15 @@ "title": "Variables", "kind": 32, "children": [ - 1371, - 1369, - 1370 + 3793, + 3791, + 3792 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 22, "character": 23 } @@ -49314,49 +50378,51 @@ "title": "Classes", "kind": 128, "children": [ - 1317 + 3739 ] }, { "title": "Functions", "kind": 64, "children": [ - 1366 + 3788 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 1368 + 3790 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1428, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/text/index\"", + "id": 3850, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/text/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/text/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/text/index.ts", "children": [ { - "id": 1429, + "id": 3851, "name": "SamTextInputModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -49372,7 +50438,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/index.ts", "line": 17, "character": 31 } @@ -49384,35 +50450,37 @@ "title": "Classes", "kind": 128, "children": [ - 1429 + 3851 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1374, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/text/text.component\"", + "id": 3796, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "children": [ { - "id": 1375, + "id": 3797, "name": "SamTextComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component provides a text input form control" @@ -49431,23 +50499,24 @@ ], "children": [ { - "id": 1396, + "id": 3818, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1399, + "id": 3821, "name": "new SamTextComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1400, + "id": 3822, "name": "samFormService", "kind": 32768, "kindString": "Parameter", @@ -49455,11 +50524,11 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 1401, + "id": 3823, "name": "cdr", "kind": 32768, "kindString": "Parameter", @@ -49473,25 +50542,26 @@ "type": { "type": "reference", "name": "SamTextComponent", - "id": 1375 + "id": 3797 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 97, "character": 54 } ] }, { - "id": 1388, + "id": 3810, "name": "blur", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -49509,7 +50579,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 89, "character": 23 } @@ -49527,18 +50597,19 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1398, + "id": 3820, "name": "cdr", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 100, "character": 15 } @@ -49549,12 +50620,13 @@ } }, { - "id": 1383, + "id": 3805, "name": "control", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -49572,7 +50644,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 69, "character": 25 } @@ -49583,12 +50655,13 @@ } }, { - "id": 1381, + "id": 3803, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -49606,7 +50679,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 61, "character": 26 } @@ -49617,12 +50690,13 @@ } }, { - "id": 1380, + "id": 3802, "name": "errorMessage", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -49640,7 +50714,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 57, "character": 30 } @@ -49651,12 +50725,13 @@ } }, { - "id": 1379, + "id": 3801, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -49674,7 +50749,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 53, "character": 22 } @@ -49685,12 +50760,13 @@ } }, { - "id": 1377, + "id": 3799, "name": "label", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -49708,7 +50784,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 45, "character": 23 } @@ -49719,12 +50795,13 @@ } }, { - "id": 1384, + "id": 3806, "name": "maxlength", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -49742,7 +50819,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 73, "character": 27 } @@ -49753,12 +50830,13 @@ } }, { - "id": 1378, + "id": 3800, "name": "name", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -49776,7 +50854,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 49, "character": 22 } @@ -49787,17 +50865,18 @@ } }, { - "id": 1395, + "id": 3817, "name": "ngUnsubscribe", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 97, "character": 23 } @@ -49815,12 +50894,13 @@ "defaultValue": " new Subject()" }, { - "id": 1387, + "id": 3809, "name": "onBlur", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -49838,7 +50918,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 85, "character": 25 } @@ -49856,12 +50936,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1386, + "id": 3808, "name": "placeholder", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -49879,7 +50960,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 81, "character": 29 } @@ -49890,12 +50971,13 @@ } }, { - "id": 1382, + "id": 3804, "name": "required", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -49913,7 +50995,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 65, "character": 26 } @@ -49924,18 +51006,19 @@ } }, { - "id": 1397, + "id": 3819, "name": "samFormService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 99, "character": 36 } @@ -49943,16 +51026,17 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 1385, + "id": 3807, "name": "useFormService", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -49970,7 +51054,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 77, "character": 32 } @@ -49981,12 +51065,13 @@ } }, { - "id": 1376, + "id": 3798, "name": "value", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -50004,7 +51089,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 41, "character": 23 } @@ -50016,12 +51101,13 @@ "defaultValue": "\"\"" }, { - "id": 1389, + "id": 3811, "name": "wrapper", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -50038,7 +51124,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 91, "character": 41 } @@ -50046,21 +51132,22 @@ "type": { "type": "reference", "name": "LabelWrapper", - "id": 515 + "id": 710 } }, { - "id": 1406, + "id": 3828, "name": "ngAfterViewInit", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1407, + "id": 3829, "name": "ngAfterViewInit", "kind": 4096, "kindString": "Call signature", @@ -50073,24 +51160,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 151, "character": 24 } ] }, { - "id": 1404, + "id": 3826, "name": "ngOnDestroy", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1405, + "id": 3827, "name": "ngOnDestroy", "kind": 4096, "kindString": "Call signature", @@ -50103,24 +51191,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 145, "character": 20 } ] }, { - "id": 1402, + "id": 3824, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1403, + "id": 3825, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -50133,31 +51222,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 102, "character": 17 } ] }, { - "id": 1390, + "id": 3812, "name": "onChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1391, + "id": 3813, "name": "onChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1392, + "id": 3814, "name": "c", "kind": 32768, "kindString": "Parameter", @@ -50176,24 +51266,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 94, "character": 17 } ] }, { - "id": 1410, + "id": 3832, "name": "onInputChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1411, + "id": 3833, "name": "onInputChange", "kind": 4096, "kindString": "Call signature", @@ -50206,24 +51297,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 167, "character": 22 } ] }, { - "id": 1408, + "id": 3830, "name": "onLoseFocus", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1409, + "id": 3831, "name": "onLoseFocus", "kind": 4096, "kindString": "Call signature", @@ -50236,24 +51328,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 158, "character": 20 } ] }, { - "id": 1393, + "id": 3815, "name": "onTouched", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1394, + "id": 3816, "name": "onTouched", "kind": 4096, "kindString": "Call signature", @@ -50266,31 +51359,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 95, "character": 18 } ] }, { - "id": 1412, + "id": 3834, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1413, + "id": 3835, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1414, + "id": 3836, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -50309,31 +51403,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 172, "character": 25 } ] }, { - "id": 1415, + "id": 3837, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1416, + "id": 3838, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1417, + "id": 3839, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -50352,31 +51447,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 176, "character": 26 } ] }, { - "id": 1418, + "id": 3840, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1419, + "id": 3841, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1420, + "id": 3842, "name": "disabled", "kind": 32768, "kindString": "Parameter", @@ -50395,31 +51491,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 180, "character": 25 } ] }, { - "id": 1421, + "id": 3843, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1422, + "id": 3844, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1423, + "id": 3845, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -50438,7 +51535,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 184, "character": 19 } @@ -50450,53 +51547,53 @@ "title": "Constructors", "kind": 512, "children": [ - 1396 + 3818 ] }, { "title": "Properties", "kind": 1024, "children": [ - 1388, - 1398, - 1383, - 1381, - 1380, - 1379, - 1377, - 1384, - 1378, - 1395, - 1387, - 1386, - 1382, - 1397, - 1385, - 1376, - 1389 + 3810, + 3820, + 3805, + 3803, + 3802, + 3801, + 3799, + 3806, + 3800, + 3817, + 3809, + 3808, + 3804, + 3819, + 3807, + 3798, + 3811 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1406, - 1404, - 1402, - 1390, - 1410, - 1408, - 1393, - 1412, - 1415, - 1418, - 1421 + 3828, + 3826, + 3824, + 3812, + 3832, + 3830, + 3815, + 3834, + 3837, + 3840, + 3843 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 37, "character": 29 } @@ -50513,25 +51610,27 @@ ] }, { - "id": 1424, + "id": 3846, "name": "TEXT_VALUE_ACCESSOR", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 1427, + "id": 3849, "name": "multi", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 26, "character": 7 } @@ -50543,16 +51642,17 @@ "defaultValue": "true" }, { - "id": 1425, + "id": 3847, "name": "provide", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 24, "character": 9 } @@ -50570,16 +51670,17 @@ "defaultValue": " NG_VALUE_ACCESSOR" }, { - "id": 1426, + "id": 3848, "name": "useExisting", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 25, "character": 13 } @@ -50602,15 +51703,15 @@ "title": "Variables", "kind": 32, "children": [ - 1427, - 1425, - 1426 + 3849, + 3847, + 3848 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 23, "character": 32 } @@ -50626,42 +51727,44 @@ "title": "Classes", "kind": 128, "children": [ - 1375 + 3797 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 1424 + 3846 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1492, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/textarea/index\"", + "id": 877, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/textarea/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/index.ts", "children": [ { - "id": 1493, + "id": 878, "name": "SamTextAreaModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -50677,7 +51780,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/index.ts", "line": 17, "character": 30 } @@ -50689,35 +51792,37 @@ "title": "Classes", "kind": 128, "children": [ - 1493 + 878 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1430, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component\"", + "id": 766, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "children": [ { - "id": 1431, + "id": 767, "name": "SamTextareaComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component provides a textarea input form control" @@ -50736,23 +51841,24 @@ ], "children": [ { - "id": 1455, + "id": 791, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1458, + "id": 794, "name": "new SamTextareaComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 1459, + "id": 795, "name": "cdr", "kind": 32768, "kindString": "Parameter", @@ -50763,7 +51869,7 @@ } }, { - "id": 1460, + "id": 796, "name": "samFormService", "kind": 32768, "kindString": "Parameter", @@ -50771,38 +51877,39 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } } ], "type": { "type": "reference", "name": "SamTextareaComponent", - "id": 1431 + "id": 767 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 108, "character": 42 } ] }, { - "id": 1456, + "id": 792, "name": "cdr", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 110, "character": 25 } @@ -50813,12 +51920,13 @@ } }, { - "id": 1441, + "id": 777, "name": "control", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "sets the form control to update label messages" @@ -50835,7 +51943,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 74, "character": 18 } @@ -50846,12 +51954,13 @@ } }, { - "id": 1437, + "id": 773, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the disabled attribute" @@ -50868,7 +51977,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 57, "character": 19 } @@ -50879,12 +51988,13 @@ } }, { - "id": 1436, + "id": 772, "name": "errorMessage", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the general error message" @@ -50901,7 +52011,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 53, "character": 23 } @@ -50912,12 +52022,13 @@ } }, { - "id": 1446, + "id": 782, "name": "focus", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emits focus event" @@ -50934,7 +52045,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 95, "character": 17 } @@ -50952,12 +52063,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1445, + "id": 781, "name": "focusEvent", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "(deprecated) Emits focus event" @@ -50974,7 +52086,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 91, "character": 22 } @@ -50992,12 +52104,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1435, + "id": 771, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the helpful hint text" @@ -51014,7 +52127,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 49, "character": 15 } @@ -51025,12 +52138,13 @@ } }, { - "id": 1448, + "id": 784, "name": "inputChange", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emits event whenever input event is fired on the textarea" @@ -51047,7 +52161,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 103, "character": 23 } @@ -51065,12 +52179,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1447, + "id": 783, "name": "inputEventChange", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "deprecated, Emits event whenever input event is fired on the textarea" @@ -51087,7 +52202,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 99, "character": 28 } @@ -51105,12 +52220,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1433, + "id": 769, "name": "label", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the label text" @@ -51127,7 +52243,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 41, "character": 16 } @@ -51138,12 +52254,13 @@ } }, { - "id": 1440, + "id": 776, "name": "maxlength", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the maxlength attribute" @@ -51160,7 +52277,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 70, "character": 20 } @@ -51171,12 +52288,13 @@ } }, { - "id": 1434, + "id": 770, "name": "name", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the name attribute" @@ -51193,7 +52311,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 45, "character": 15 } @@ -51204,12 +52322,13 @@ } }, { - "id": 1443, + "id": 779, "name": "placeholder", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Optional text to be displayed when the text area is empty" @@ -51226,7 +52345,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 83, "character": 22 } @@ -51237,12 +52356,13 @@ } }, { - "id": 1438, + "id": 774, "name": "required", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the required attribute" @@ -51259,7 +52379,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 62, "character": 19 } @@ -51270,12 +52390,13 @@ } }, { - "id": 1439, + "id": 775, "name": "requiredFlag", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the required attribute" @@ -51292,7 +52413,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 66, "character": 23 } @@ -51303,18 +52424,19 @@ } }, { - "id": 1457, + "id": 793, "name": "samFormService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 111, "character": 26 } @@ -51322,16 +52444,17 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 1444, + "id": 780, "name": "useFormService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Toggles validations to display with SamFormService events" @@ -51348,7 +52471,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 87, "character": 25 } @@ -51359,12 +52482,13 @@ } }, { - "id": 1432, + "id": 768, "name": "value", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the text input value" @@ -51381,7 +52505,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 37, "character": 16 } @@ -51393,12 +52517,13 @@ "defaultValue": "\"\"" }, { - "id": 1442, + "id": 778, "name": "valueChange", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "deprecated, emits value change events" @@ -51415,7 +52540,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 78, "character": 23 } @@ -51433,12 +52558,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 1449, + "id": 785, "name": "wrapper", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -51454,7 +52580,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 105, "character": 34 } @@ -51462,27 +52588,28 @@ "type": { "type": "reference", "name": "LabelWrapper", - "id": 515 + "id": 710 } }, { - "id": 1471, + "id": 807, "name": "inputEventHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1472, + "id": 808, "name": "inputEventHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1473, + "id": 809, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -51501,23 +52628,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 176, "character": 19 } ] }, { - "id": 1463, + "id": 799, "name": "ngAfterViewInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1464, + "id": 800, "name": "ngAfterViewInit", "kind": 4096, "kindString": "Call signature", @@ -51530,23 +52658,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 156, "character": 17 } ] }, { - "id": 1461, + "id": 797, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1462, + "id": 798, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -51559,23 +52688,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 113, "character": 10 } ] }, { - "id": 1474, + "id": 810, "name": "onBlur", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1475, + "id": 811, "name": "onBlur", "kind": 4096, "kindString": "Call signature", @@ -51588,31 +52718,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 181, "character": 8 } ] }, { - "id": 1450, + "id": 786, "name": "onChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1451, + "id": 787, "name": "onChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1452, + "id": 788, "name": "_", "kind": 32768, "kindString": "Parameter", @@ -51631,30 +52762,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 107, "character": 17 } ] }, { - "id": 1465, + "id": 801, "name": "onFocus", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1466, + "id": 802, "name": "onFocus", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1467, + "id": 803, "name": "$event", "kind": 32768, "kindString": "Parameter", @@ -51673,30 +52805,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 164, "character": 9 } ] }, { - "id": 1468, + "id": 804, "name": "onInputChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1469, + "id": 805, "name": "onInputChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1470, + "id": 806, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -51715,24 +52848,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 169, "character": 15 } ] }, { - "id": 1453, + "id": 789, "name": "onTouched", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1454, + "id": 790, "name": "onTouched", "kind": 4096, "kindString": "Call signature", @@ -51745,30 +52879,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 108, "character": 18 } ] }, { - "id": 1476, + "id": 812, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1477, + "id": 813, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1478, + "id": 814, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -51787,30 +52922,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 187, "character": 18 } ] }, { - "id": 1479, + "id": 815, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1480, + "id": 816, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1481, + "id": 817, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -51829,30 +52965,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 191, "character": 19 } ] }, { - "id": 1482, + "id": 818, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1483, + "id": 819, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1484, + "id": 820, "name": "disabled", "kind": 32768, "kindString": "Parameter", @@ -51871,30 +53008,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 195, "character": 18 } ] }, { - "id": 1485, + "id": 821, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1486, + "id": 822, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1487, + "id": 823, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -51913,7 +53051,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 199, "character": 12 } @@ -51925,57 +53063,57 @@ "title": "Constructors", "kind": 512, "children": [ - 1455 + 791 ] }, { "title": "Properties", "kind": 1024, "children": [ - 1456, - 1441, - 1437, - 1436, - 1446, - 1445, - 1435, - 1448, - 1447, - 1433, - 1440, - 1434, - 1443, - 1438, - 1439, - 1457, - 1444, - 1432, - 1442, - 1449 + 792, + 777, + 773, + 772, + 782, + 781, + 771, + 784, + 783, + 769, + 776, + 770, + 779, + 774, + 775, + 793, + 780, + 768, + 778, + 785 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1471, - 1463, - 1461, - 1474, - 1450, - 1465, - 1468, - 1453, - 1476, - 1479, - 1482, - 1485 + 807, + 799, + 797, + 810, + 786, + 801, + 804, + 789, + 812, + 815, + 818, + 821 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 33, "character": 33 } @@ -51988,25 +53126,27 @@ ] }, { - "id": 1488, + "id": 824, "name": "TEXT_VALUE_ACCESSOR", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 1491, + "id": 827, "name": "multi", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 22, "character": 7 } @@ -52018,16 +53158,17 @@ "defaultValue": "true" }, { - "id": 1489, + "id": 825, "name": "provide", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 20, "character": 9 } @@ -52045,16 +53186,17 @@ "defaultValue": " NG_VALUE_ACCESSOR" }, { - "id": 1490, + "id": 826, "name": "useExisting", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 21, "character": 13 } @@ -52077,15 +53219,15 @@ "title": "Variables", "kind": 32, "children": [ - 1491, - 1489, - 1490 + 827, + 825, + 826 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 19, "character": 32 } @@ -52101,59 +53243,62 @@ "title": "Classes", "kind": 128, "children": [ - 1431 + 767 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 1488 + 824 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1494, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/time/index\"", + "id": 3852, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/time/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/time/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/time/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/index.ts", "line": 1, "character": 0 } ] }, { - "id": 972, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/time/time.component\"", + "id": 3394, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "children": [ { - "id": 973, + "id": 3395, "name": "SamTimeComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Provides a time input form control" @@ -52172,23 +53317,24 @@ ], "children": [ { - "id": 994, + "id": 3416, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 996, + "id": 3418, "name": "new SamTimeComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 997, + "id": 3419, "name": "samFormService", "kind": 32768, "kindString": "Parameter", @@ -52196,36 +53342,37 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } } ], "type": { "type": "reference", "name": "SamTimeComponent", - "id": 973 + "id": 3395 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 80, "character": 61 } ] }, { - "id": 974, + "id": 3396, "name": "INPUT_FORMAT", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 36, "character": 14 } @@ -52237,16 +53384,17 @@ "defaultValue": "\"H:m\"" }, { - "id": 975, + "id": 3397, "name": "OUTPUT_FORMAT", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 37, "character": 15 } @@ -52258,17 +53406,18 @@ "defaultValue": "\"HH:mm\"" }, { - "id": 993, + "id": 3415, "name": "allowChars", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 79, "character": 19 } @@ -52286,17 +53435,18 @@ "defaultValue": " ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', \n 'Backspace', 'ArrowLeft', 'ArrowRight', 'Tab', 'Delete']" }, { - "id": 991, + "id": 3413, "name": "amPm", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 77, "character": 13 } @@ -52308,12 +53458,13 @@ "defaultValue": "\"am\"" }, { - "id": 986, + "id": 3408, "name": "ampmV", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -52330,7 +53481,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 71, "character": 33 } @@ -52341,12 +53492,13 @@ } }, { - "id": 981, + "id": 3403, "name": "control", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -52364,7 +53516,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 62, "character": 25 } @@ -52375,12 +53527,13 @@ } }, { - "id": 977, + "id": 3399, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -52398,7 +53551,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 46, "character": 26 } @@ -52410,17 +53563,18 @@ "defaultValue": "false" }, { - "id": 989, + "id": 3411, "name": "formattedHours", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 75, "character": 23 } @@ -52432,12 +53586,13 @@ "defaultValue": " undefined" }, { - "id": 980, + "id": 3402, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -52455,7 +53610,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 58, "character": 22 } @@ -52466,12 +53621,13 @@ } }, { - "id": 984, + "id": 3406, "name": "hourV", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -52488,7 +53644,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 69, "character": 33 } @@ -52499,17 +53655,18 @@ } }, { - "id": 988, + "id": 3410, "name": "hours", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 74, "character": 14 } @@ -52521,12 +53678,13 @@ "defaultValue": " undefined" }, { - "id": 978, + "id": 3400, "name": "label", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -52544,7 +53702,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 50, "character": 23 } @@ -52555,17 +53713,18 @@ } }, { - "id": 992, + "id": 3414, "name": "minuteBlurFlag", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 78, "character": 23 } @@ -52577,12 +53736,13 @@ "defaultValue": "true" }, { - "id": 985, + "id": 3407, "name": "minuteV", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -52599,7 +53759,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 70, "character": 37 } @@ -52610,17 +53770,18 @@ } }, { - "id": 990, + "id": 3412, "name": "minutes", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 76, "character": 16 } @@ -52632,12 +53793,13 @@ "defaultValue": " undefined" }, { - "id": 979, + "id": 3401, "name": "name", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -52655,7 +53817,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 54, "character": 22 } @@ -52666,12 +53828,13 @@ } }, { - "id": 976, + "id": 3398, "name": "required", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -52689,7 +53852,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 42, "character": 26 } @@ -52701,18 +53864,19 @@ "defaultValue": "false" }, { - "id": 995, + "id": 3417, "name": "samFormService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 82, "character": 36 } @@ -52720,16 +53884,17 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 982, + "id": 3404, "name": "useFormService", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -52747,7 +53912,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 66, "character": 32 } @@ -52758,17 +53923,18 @@ } }, { - "id": 987, + "id": 3409, "name": "value", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 73, "character": 14 } @@ -52780,12 +53946,13 @@ "defaultValue": " undefined" }, { - "id": 983, + "id": 3405, "name": "wrapper", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -52802,7 +53969,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 68, "character": 41 } @@ -52810,27 +53977,28 @@ "type": { "type": "reference", "name": "LabelWrapper", - "id": 515 + "id": 710 } }, { - "id": 1042, + "id": 3464, "name": "_checkCopyPasteChar", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1043, + "id": 3465, "name": "_checkCopyPasteChar", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1044, + "id": 3466, "name": "char", "kind": 32768, "kindString": "Parameter", @@ -52849,30 +54017,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 310, "character": 21 } ] }, { - "id": 1039, + "id": 3461, "name": "_keyIsNumber", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1040, + "id": 3462, "name": "_keyIsNumber", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1041, + "id": 3463, "name": "char", "kind": 32768, "kindString": "Parameter", @@ -52891,23 +54060,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 304, "character": 14 } ] }, { - "id": 1037, + "id": 3459, "name": "amPmName", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1038, + "id": 3460, "name": "amPmName", "kind": 4096, "kindString": "Call signature", @@ -52920,30 +54090,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 300, "character": 10 } ] }, { - "id": 1005, + "id": 3427, "name": "formatHours", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1006, + "id": 3428, "name": "formatHours", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1007, + "id": 3429, "name": "hours", "kind": 32768, "kindString": "Parameter", @@ -52962,23 +54133,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 141, "character": 13 } ] }, { - "id": 1023, + "id": 3445, "name": "getTime", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1024, + "id": 3446, "name": "getTime", "kind": 4096, "kindString": "Call signature", @@ -52991,23 +54163,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 197, "character": 9 } ] }, { - "id": 1033, + "id": 3455, "name": "hourName", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1034, + "id": 3456, "name": "hourName", "kind": 4096, "kindString": "Call signature", @@ -53020,30 +54193,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 292, "character": 10 } ] }, { - "id": 1013, + "id": 3435, "name": "hourTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1014, + "id": 3436, "name": "hourTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1015, + "id": 3437, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -53062,30 +54236,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 170, "character": 13 } ] }, { - "id": 1027, + "id": 3449, "name": "hoursPress", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1028, + "id": 3450, "name": "hoursPress", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1029, + "id": 3451, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -53104,23 +54279,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 228, "character": 12 } ] }, { - "id": 1025, + "id": 3447, "name": "isClean", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1026, + "id": 3448, "name": "isClean", "kind": 4096, "kindString": "Call signature", @@ -53133,23 +54309,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 221, "character": 9 } ] }, { - "id": 1021, + "id": 3443, "name": "isValid", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1022, + "id": 3444, "name": "isValid", "kind": 4096, "kindString": "Call signature", @@ -53162,23 +54339,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 188, "character": 9 } ] }, { - "id": 1035, + "id": 3457, "name": "minuteName", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1036, + "id": 3458, "name": "minuteName", "kind": 4096, "kindString": "Call signature", @@ -53191,30 +54369,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 296, "character": 12 } ] }, { - "id": 1016, + "id": 3438, "name": "minuteTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1017, + "id": 3439, "name": "minuteTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1018, + "id": 3440, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -53233,30 +54412,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 177, "character": 15 } ] }, { - "id": 1030, + "id": 3452, "name": "minutesPress", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1031, + "id": 3453, "name": "minutesPress", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1032, + "id": 3454, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -53275,30 +54455,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 260, "character": 14 } ] }, { - "id": 1000, + "id": 3422, "name": "ngOnChanges", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1001, + "id": 3423, "name": "ngOnChanges", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1002, + "id": 3424, "name": "v", "kind": 32768, "kindString": "Parameter", @@ -53317,23 +54498,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 108, "character": 13 } ] }, { - "id": 998, + "id": 3420, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 999, + "id": 3421, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -53346,23 +54528,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 84, "character": 10 } ] }, { - "id": 1049, + "id": 3471, "name": "onChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1050, + "id": 3472, "name": "onChange", "kind": 4096, "kindString": "Call signature", @@ -53375,30 +54558,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 332, "character": 10 } ] }, { - "id": 1010, + "id": 3432, "name": "onInputChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1011, + "id": 3433, "name": "onInputChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1012, + "id": 3434, "name": "override", "kind": 32768, "kindString": "Parameter", @@ -53417,23 +54601,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 162, "character": 15 } ] }, { - "id": 1051, + "id": 3473, "name": "onTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1052, + "id": 3474, "name": "onTouched", "kind": 4096, "kindString": "Call signature", @@ -53446,23 +54631,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 333, "character": 11 } ] }, { - "id": 1003, + "id": 3425, "name": "parseValueString", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1004, + "id": 3426, "name": "parseValueString", "kind": 4096, "kindString": "Call signature", @@ -53475,30 +54661,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 114, "character": 18 } ] }, { - "id": 1053, + "id": 3475, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1054, + "id": 3476, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1055, + "id": 3477, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -53517,30 +54704,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 335, "character": 18 } ] }, { - "id": 1056, + "id": 3478, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1057, + "id": 3479, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1058, + "id": 3480, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -53559,23 +54747,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 339, "character": 19 } ] }, { - "id": 1045, + "id": 3467, "name": "removalKeyHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1046, + "id": 3468, "name": "removalKeyHandler", "kind": 4096, "kindString": "Call signature", @@ -53588,23 +54777,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 316, "character": 19 } ] }, { - "id": 1047, + "id": 3469, "name": "resetInput", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1048, + "id": 3470, "name": "resetInput", "kind": 4096, "kindString": "Call signature", @@ -53617,23 +54807,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 324, "character": 12 } ] }, { - "id": 1008, + "id": 3430, "name": "selectChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1009, + "id": 3431, "name": "selectChange", "kind": 4096, "kindString": "Call signature", @@ -53646,30 +54837,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 153, "character": 14 } ] }, { - "id": 1059, + "id": 3481, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1060, + "id": 3482, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1061, + "id": 3483, "name": "disabled", "kind": 32768, "kindString": "Parameter", @@ -53688,23 +54880,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 343, "character": 18 } ] }, { - "id": 1019, + "id": 3441, "name": "setTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1020, + "id": 3442, "name": "setTouched", "kind": 4096, "kindString": "Call signature", @@ -53717,30 +54910,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 184, "character": 12 } ] }, { - "id": 1062, + "id": 3484, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 1063, + "id": 3485, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1064, + "id": 3486, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -53759,7 +54953,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 347, "character": 12 } @@ -53771,73 +54965,73 @@ "title": "Constructors", "kind": 512, "children": [ - 994 + 3416 ] }, { "title": "Properties", "kind": 1024, "children": [ - 974, - 975, - 993, - 991, - 986, - 981, - 977, - 989, - 980, - 984, - 988, - 978, - 992, - 985, - 990, - 979, - 976, - 995, - 982, - 987, - 983 + 3396, + 3397, + 3415, + 3413, + 3408, + 3403, + 3399, + 3411, + 3402, + 3406, + 3410, + 3400, + 3414, + 3407, + 3412, + 3401, + 3398, + 3417, + 3404, + 3409, + 3405 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1042, - 1039, - 1037, - 1005, - 1023, - 1033, - 1013, - 1027, - 1025, - 1021, - 1035, - 1016, - 1030, - 1000, - 998, - 1049, - 1010, - 1051, - 1003, - 1053, - 1056, - 1045, - 1047, - 1008, - 1059, - 1019, - 1062 + 3464, + 3461, + 3459, + 3427, + 3445, + 3455, + 3435, + 3449, + 3447, + 3443, + 3457, + 3438, + 3452, + 3422, + 3420, + 3471, + 3432, + 3473, + 3425, + 3475, + 3478, + 3467, + 3469, + 3430, + 3481, + 3441, + 3484 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 34, "character": 29 } @@ -53863,52 +55057,55 @@ "title": "Classes", "kind": 128, "children": [ - 973 + 3395 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", "line": 1, "character": 0 } ] }, { - "id": 1520, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/toggle-switch/index\"", + "id": 3878, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/toggle-switch/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/index.ts", "line": 1, "character": 0 } ] }, { - "id": 1495, - "name": "\"sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component\"", + "id": 3853, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", "children": [ { - "id": 1496, + "id": 3854, "name": "SamToggleSwitchComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "SAM Toggle Switch Component\nCreates a Toggle Switch to use as a form control\nTODO: Add Form Builder support" @@ -53927,12 +55124,13 @@ ], "children": [ { - "id": 1497, + "id": 3855, "name": "disableSwitch", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -53950,7 +55148,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", "line": 34, "character": 31 } @@ -53962,12 +55160,13 @@ "defaultValue": "false" }, { - "id": 1498, + "id": 3856, "name": "isSwitchOn", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -53985,7 +55184,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", "line": 38, "character": 28 } @@ -53997,12 +55196,13 @@ "defaultValue": "false" }, { - "id": 1500, + "id": 3858, "name": "switchStatusChange", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -54020,7 +55220,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", "line": 46, "character": 37 } @@ -54038,12 +55238,13 @@ "defaultValue": "\n new EventEmitter()" }, { - "id": 1499, + "id": 3857, "name": "toggleSwitchText", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -54061,7 +55262,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", "line": 42, "character": 34 } @@ -54073,17 +55274,18 @@ "defaultValue": "\"Toggle Switch\"" }, { - "id": 1504, + "id": 3862, "name": "onChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1505, + "id": 3863, "name": "onChange", "kind": 4096, "kindString": "Call signature", @@ -54096,31 +55298,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", "line": 58, "character": 17 } ] }, { - "id": 1501, + "id": 3859, "name": "onSwitchClick", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1502, + "id": 3860, "name": "onSwitchClick", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1503, + "id": 3861, "name": "val", "kind": 32768, "kindString": "Parameter", @@ -54139,24 +55342,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", "line": 49, "character": 22 } ] }, { - "id": 1506, + "id": 3864, "name": "onTouched", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1507, + "id": 3865, "name": "onTouched", "kind": 4096, "kindString": "Call signature", @@ -54169,31 +55373,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", "line": 59, "character": 18 } ] }, { - "id": 1508, + "id": 3866, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1509, + "id": 3867, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1510, + "id": 3868, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -54212,31 +55417,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", "line": 61, "character": 25 } ] }, { - "id": 1511, + "id": 3869, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1512, + "id": 3870, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1513, + "id": 3871, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -54255,31 +55461,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", "line": 65, "character": 26 } ] }, { - "id": 1514, + "id": 3872, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1515, + "id": 3873, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1516, + "id": 3874, "name": "disabled", "kind": 32768, "kindString": "Parameter", @@ -54298,31 +55505,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", "line": 69, "character": 25 } ] }, { - "id": 1517, + "id": 3875, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 1518, + "id": 3876, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 1519, + "id": 3877, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -54341,7 +55549,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", "line": 73, "character": 19 } @@ -54353,29 +55561,29 @@ "title": "Properties", "kind": 1024, "children": [ - 1497, - 1498, - 1500, - 1499 + 3855, + 3856, + 3858, + 3857 ] }, { "title": "Methods", "kind": 2048, "children": [ - 1504, - 1501, - 1506, - 1508, - 1511, - 1514, - 1517 + 3862, + 3859, + 3864, + 3866, + 3869, + 3872, + 3875 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", "line": 30, "character": 37 } @@ -54393,35 +55601,37 @@ "title": "Classes", "kind": 128, "children": [ - 1496 + 3854 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", "line": 1, "character": 0 } ] }, { - "id": 15, - "name": "\"sam-ui-elements/src/ui-kit/form-service\"", + "id": 756, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-service\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-service.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-service.ts", "children": [ { - "id": 16, + "id": 757, "name": "SamFormService", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -54435,17 +55645,18 @@ ], "children": [ { - "id": 17, + "id": 758, "name": "formEvents", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-service.ts", "line": 19, "character": 21 } @@ -54463,17 +55674,18 @@ "defaultValue": " new Subject()" }, { - "id": 18, + "id": 759, "name": "formEventsUpdated$", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-service.ts", "line": 20, "character": 29 } @@ -54491,24 +55703,25 @@ "defaultValue": " this.formEvents.asObservable()" }, { - "id": 22, + "id": 763, "name": "fireReset", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 23, + "id": 764, "name": "fireReset", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 24, + "id": 765, "name": "rootAbstractControl", "kind": 32768, "kindString": "Parameter", @@ -54528,31 +55741,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-service.ts", "line": 25, "character": 20 } ] }, { - "id": 19, + "id": 760, "name": "fireSubmit", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 20, + "id": 761, "name": "fireSubmit", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 21, + "id": 762, "name": "rootAbstractControl", "kind": 32768, "kindString": "Parameter", @@ -54572,7 +55786,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-service.ts", "line": 22, "character": 21 } @@ -54584,22 +55798,22 @@ "title": "Properties", "kind": 1024, "children": [ - 17, - 18 + 758, + 759 ] }, { "title": "Methods", "kind": 2048, "children": [ - 22, - 19 + 763, + 760 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-service.ts", "line": 18, "character": 27 } @@ -54611,35 +55825,37 @@ "title": "Classes", "kind": 128, "children": [ - 16 + 757 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-service.ts", "line": 1, "character": 0 } ] }, { - "id": 2805, - "name": "\"sam-ui-elements/src/ui-kit/form-templates/index\"", + "id": 4919, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-templates/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-templates/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-templates/index.ts", "children": [ { - "id": 2806, + "id": 4920, "name": "SamFormTemplatesModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -54655,7 +55871,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/index.ts", "line": 27, "character": 35 } @@ -54667,52 +55883,55 @@ "title": "Classes", "kind": 128, "children": [ - 2806 + 4920 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2713, - "name": "\"sam-ui-elements/src/ui-kit/form-templates/name-entry/index\"", + "id": 4827, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-templates/name-entry/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2660, - "name": "\"sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component\"", + "id": 4774, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "children": [ { - "id": 2661, + "id": 4775, "name": "SamNameEntryComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component is a Name entry portion of a form", @@ -54745,16 +55964,17 @@ ], "children": [ { - "id": 2677, + "id": 4791, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 91, "character": 10 } @@ -54766,17 +55986,18 @@ "defaultValue": " undefined" }, { - "id": 2669, + "id": 4783, "name": "fNameErrorMsg", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 69, "character": 22 } @@ -54788,17 +56009,18 @@ "defaultValue": "\"\"" }, { - "id": 2671, + "id": 4785, "name": "lNameErrorMsg", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 71, "character": 22 } @@ -54810,12 +56032,13 @@ "defaultValue": "\"\"" }, { - "id": 2662, + "id": 4776, "name": "legend", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -54833,7 +56056,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 54, "character": 24 } @@ -54845,17 +56068,18 @@ "defaultValue": "\"Name\"" }, { - "id": 2670, + "id": 4784, "name": "mNameErrorMsg", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 70, "character": 22 } @@ -54867,12 +56091,13 @@ "defaultValue": "\"\"" }, { - "id": 2668, + "id": 4782, "name": "prefix", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -54890,7 +56115,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 67, "character": 24 } @@ -54902,17 +56127,18 @@ "defaultValue": "\"\"" }, { - "id": 2672, + "id": 4786, "name": "suffixErrorMsg", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 72, "character": 23 } @@ -54924,17 +56150,18 @@ "defaultValue": "\"\"" }, { - "id": 2673, + "id": 4787, "name": "value", "kind": 262144, "kindString": "Accessor", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "getSignature": [ { - "id": 2674, + "id": 4788, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -54942,20 +56169,20 @@ "type": { "type": "reference", "name": "NameEntryType", - "id": 220 + "id": 94 } } ], "setSignature": [ { - "id": 2675, + "id": 4789, "name": "__set", "kind": 1048576, "kindString": "Set signature", "flags": {}, "parameters": [ { - "id": 2676, + "id": 4790, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -54963,7 +56190,7 @@ "type": { "type": "reference", "name": "NameEntryType", - "id": 220 + "id": 94 } } ], @@ -54975,36 +56202,37 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 74, "character": 18 }, { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 78, "character": 18 } ] }, { - "id": 2685, + "id": 4799, "name": "getIdentifer", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2686, + "id": 4800, "name": "getIdentifer", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2687, + "id": 4801, "name": "str", "kind": 32768, "kindString": "Parameter", @@ -55023,24 +56251,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 127, "character": 21 } ] }, { - "id": 2694, + "id": 4808, "name": "modelChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2695, + "id": 4809, "name": "modelChange", "kind": 4096, "kindString": "Call signature", @@ -55053,24 +56282,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 179, "character": 20 } ] }, { - "id": 2696, + "id": 4810, "name": "onChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2697, + "id": 4811, "name": "onChange", "kind": 4096, "kindString": "Call signature", @@ -55083,24 +56313,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 184, "character": 17 } ] }, { - "id": 2698, + "id": 4812, "name": "onTouched", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2699, + "id": 4813, "name": "onTouched", "kind": 4096, "kindString": "Call signature", @@ -55113,31 +56344,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 185, "character": 18 } ] }, { - "id": 2700, + "id": 4814, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2701, + "id": 4815, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2702, + "id": 4816, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -55156,31 +56388,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 187, "character": 25 } ] }, { - "id": 2703, + "id": 4817, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2704, + "id": 4818, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2705, + "id": 4819, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -55199,31 +56432,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 191, "character": 26 } ] }, { - "id": 2706, + "id": 4820, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2707, + "id": 4821, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2708, + "id": 4822, "name": "disabled", "kind": 32768, "kindString": "Parameter", @@ -55242,24 +56476,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 195, "character": 25 } ] }, { - "id": 2680, + "id": 4794, "name": "setSubmitted", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2681, + "id": 4795, "name": "setSubmitted", "kind": 4096, "kindString": "Call signature", @@ -55272,31 +56507,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 96, "character": 21 } ] }, { - "id": 2682, + "id": 4796, "name": "validate", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2683, + "id": 4797, "name": "validate", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2684, + "id": 4798, "name": "c", "kind": 32768, "kindString": "Parameter", @@ -55315,24 +56551,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 104, "character": 17 } ] }, { - "id": 2688, + "id": 4802, "name": "validateFirstName", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2689, + "id": 4803, "name": "validateFirstName", "kind": 4096, "kindString": "Call signature", @@ -55345,24 +56582,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 135, "character": 26 } ] }, { - "id": 2692, + "id": 4806, "name": "validateLastName", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2693, + "id": 4807, "name": "validateLastName", "kind": 4096, "kindString": "Call signature", @@ -55375,24 +56613,25 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 163, "character": 25 } ] }, { - "id": 2690, + "id": 4804, "name": "validateMiddleName", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2691, + "id": 4805, "name": "validateMiddleName", "kind": 4096, "kindString": "Call signature", @@ -55405,31 +56644,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 151, "character": 27 } ] }, { - "id": 2709, + "id": 4823, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 2710, + "id": 4824, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2711, + "id": 4825, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -55448,19 +56688,20 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 199, "character": 19 } ] }, { - "id": 2663, + "id": 4777, "name": "model", "kind": 2097152, "kindString": "Object literal", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -55478,16 +56719,17 @@ ], "children": [ { - "id": 2664, + "id": 4778, "name": "firstName", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 59, "character": 13 } @@ -55499,16 +56741,17 @@ "defaultValue": "\"\"" }, { - "id": 2666, + "id": 4780, "name": "lastName", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 61, "character": 12 } @@ -55520,16 +56763,17 @@ "defaultValue": "\"\"" }, { - "id": 2665, + "id": 4779, "name": "middleName", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 60, "character": 14 } @@ -55541,16 +56785,17 @@ "defaultValue": "\"\"" }, { - "id": 2667, + "id": 4781, "name": "suffix", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 62, "character": 10 } @@ -55567,16 +56812,16 @@ "title": "Variables", "kind": 32, "children": [ - 2664, - 2666, - 2665, - 2667 + 4778, + 4780, + 4779, + 4781 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 58, "character": 23 } @@ -55587,25 +56832,27 @@ } }, { - "id": 2678, + "id": 4792, "name": "store", "kind": 2097152, "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 2679, + "id": 4793, "name": "suffixes", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 93, "character": 12 } @@ -55622,13 +56869,13 @@ "title": "Variables", "kind": 32, "children": [ - 2679 + 4793 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 92, "character": 7 } @@ -55644,53 +56891,53 @@ "title": "Properties", "kind": 1024, "children": [ - 2677, - 2669, - 2671, - 2662, - 2670, - 2668, - 2672 + 4791, + 4783, + 4785, + 4776, + 4784, + 4782, + 4786 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 2673 + 4787 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2685, - 2694, - 2696, - 2698, - 2700, - 2703, - 2706, - 2680, - 2682, - 2688, - 2692, - 2690, - 2709 + 4799, + 4808, + 4810, + 4812, + 4814, + 4817, + 4820, + 4794, + 4796, + 4802, + 4806, + 4804, + 4823 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 2663, - 2678 + 4777, + 4792 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 50, "character": 34 } @@ -55707,14 +56954,16 @@ ] }, { - "id": 2712, + "id": 4826, "name": "suffixOptions", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 15, "character": 19 } @@ -55731,59 +56980,62 @@ "title": "Classes", "kind": 128, "children": [ - 2661 + 4775 ] }, { "title": "Variables", "kind": 32, "children": [ - 2712 + 4826 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2804, - "name": "\"sam-ui-elements/src/ui-kit/form-templates/phone-entry/index\"", + "id": 4918, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-templates/phone-entry/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2714, - "name": "\"sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component\"", + "id": 4828, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "children": [ { - "id": 2715, + "id": 4829, "name": "SamPhoneEntryComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The component is a Phone entry portion of a form" @@ -55802,23 +57054,24 @@ ], "children": [ { - "id": 2739, + "id": 4853, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2742, + "id": 4856, "name": "new SamPhoneEntryComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2743, + "id": 4857, "name": "samFormService", "kind": 32768, "kindString": "Parameter", @@ -55826,11 +57079,11 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 2744, + "id": 4858, "name": "cdr", "kind": 32768, "kindString": "Parameter", @@ -55844,29 +57097,30 @@ "type": { "type": "reference", "name": "SamPhoneEntryComponent", - "id": 2715 + "id": 4829 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 115, "character": 3 } ] }, { - "id": 2733, + "id": 4847, "name": "badIndex", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 91, "character": 10 } @@ -55884,18 +57138,19 @@ "defaultValue": " []" }, { - "id": 2741, + "id": 4855, "name": "cdr", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 118, "character": 15 } @@ -55906,12 +57161,13 @@ } }, { - "id": 2723, + "id": 4837, "name": "control", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Input to pass in a formControl" @@ -55928,7 +57184,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 69, "character": 18 } @@ -55939,16 +57195,17 @@ } }, { - "id": 2734, + "id": 4848, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 92, "character": 10 } @@ -55960,12 +57217,13 @@ "defaultValue": " undefined" }, { - "id": 2726, + "id": 4840, "name": "emitter", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Event emitter when model changes, outputs a string" @@ -55982,7 +57240,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 81, "character": 19 } @@ -56000,16 +57258,17 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2729, + "id": 4843, "name": "errorMsg", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 86, "character": 10 } @@ -56021,12 +57280,13 @@ "defaultValue": "\"\"" }, { - "id": 2717, + "id": 4831, "name": "hint", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the hint text" @@ -56043,7 +57303,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 43, "character": 15 } @@ -56054,12 +57314,13 @@ } }, { - "id": 2716, + "id": 4830, "name": "label", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The label text to appear above the input" @@ -56076,7 +57337,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 39, "character": 16 } @@ -56088,12 +57349,13 @@ "defaultValue": "\"Phone Number\"" }, { - "id": 2718, + "id": 4832, "name": "model", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Angular model string value, should match the format of the\nphoneNumberTemplate" @@ -56110,7 +57372,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 48, "character": 16 } @@ -56122,12 +57384,13 @@ "defaultValue": "\"\"" }, { - "id": 2722, + "id": 4836, "name": "numbersOnly", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Flag for when model is only numbers" @@ -56144,7 +57407,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 65, "character": 22 } @@ -56155,12 +57418,13 @@ } }, { - "id": 2728, + "id": 4842, "name": "phoneInput", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -56176,7 +57440,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 85, "character": 37 } @@ -56187,16 +57451,17 @@ } }, { - "id": 2732, + "id": 4846, "name": "phoneNumber", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 90, "character": 13 } @@ -56208,16 +57473,17 @@ "defaultValue": " this.phoneNumberTemplate" }, { - "id": 2731, + "id": 4845, "name": "phoneNumberMirror", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 89, "character": 19 } @@ -56229,12 +57495,13 @@ "defaultValue": " this.phoneNumberTemplate" }, { - "id": 2719, + "id": 4833, "name": "phoneNumberTemplate", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "String value that is the phone number should match. Default is\n\"_+(___)___-____\" (underscores denote where numbers are allowed)" @@ -56251,7 +57518,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 53, "character": 30 } @@ -56263,16 +57530,17 @@ "defaultValue": "\"_+(___)___-____\"" }, { - "id": 2730, + "id": 4844, "name": "phoneNumberTemplateLength", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 88, "character": 27 } @@ -56284,12 +57552,13 @@ "defaultValue": " this.phoneNumberTemplate.length" }, { - "id": 2720, + "id": 4834, "name": "prefix", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Prefix name/id attribute values" @@ -56306,7 +57575,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 57, "character": 17 } @@ -56318,12 +57587,13 @@ "defaultValue": "\"\"" }, { - "id": 2721, + "id": 4835, "name": "required", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Flag to determine whether Phone Entry is required for submission" @@ -56340,7 +57610,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 61, "character": 19 } @@ -56352,18 +57622,19 @@ "defaultValue": "false" }, { - "id": 2740, + "id": 4854, "name": "samFormService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 117, "character": 36 } @@ -56371,16 +57642,17 @@ "type": { "type": "reference", "name": "SamFormService", - "id": 16 + "id": 757 } }, { - "id": 2725, + "id": 4839, "name": "useDefaultValidations", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Toggles default validations" @@ -56397,7 +57669,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 77, "character": 32 } @@ -56409,12 +57681,13 @@ "defaultValue": "true" }, { - "id": 2724, + "id": 4838, "name": "useFormService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Toggles validations to display with SamFormService events" @@ -56431,7 +57704,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 73, "character": 25 } @@ -56442,12 +57715,13 @@ } }, { - "id": 2727, + "id": 4841, "name": "wrapper", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -56464,7 +57738,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 84, "character": 16 } @@ -56472,20 +57746,21 @@ "type": { "type": "reference", "name": "LabelWrapper", - "id": 515 + "id": 710 } }, { - "id": 2735, + "id": 4849, "name": "value", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "getSignature": [ { - "id": 2736, + "id": 4850, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -56498,14 +57773,14 @@ ], "setSignature": [ { - "id": 2737, + "id": 4851, "name": "__set", "kind": 1048576, "kindString": "Set signature", "flags": {}, "parameters": [ { - "id": 2738, + "id": 4852, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -56524,28 +57799,29 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 94, "character": 11 }, { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 98, "character": 11 } ] }, { - "id": 2773, + "id": 4887, "name": "emit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2774, + "id": 4888, "name": "emit", "kind": 4096, "kindString": "Call signature", @@ -56558,30 +57834,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 295, "character": 6 } ] }, { - "id": 2752, + "id": 4866, "name": "formatWithTemplate", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2753, + "id": 4867, "name": "formatWithTemplate", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2754, + "id": 4868, "name": "numberStr", "kind": 32768, "kindString": "Parameter", @@ -56600,30 +57877,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 192, "character": 20 } ] }, { - "id": 2755, + "id": 4869, "name": "getIdentifier", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2756, + "id": 4870, "name": "getIdentifier", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2757, + "id": 4871, "name": "str", "kind": 32768, "kindString": "Parameter", @@ -56642,30 +57920,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 201, "character": 15 } ] }, { - "id": 2780, + "id": 4894, "name": "getPositionDecrement", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2781, + "id": 4895, "name": "getPositionDecrement", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2782, + "id": 4896, "name": "pos", "kind": 32768, "kindString": "Parameter", @@ -56684,30 +57963,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 312, "character": 22 } ] }, { - "id": 2777, + "id": 4891, "name": "getPositionIncrement", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2778, + "id": 4892, "name": "getPositionIncrement", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2779, + "id": 4893, "name": "pos", "kind": 32768, "kindString": "Parameter", @@ -56726,30 +58006,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 305, "character": 22 } ] }, { - "id": 2766, + "id": 4880, "name": "handleBackspace", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2767, + "id": 4881, "name": "handleBackspace", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2768, + "id": 4882, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -56760,7 +58041,7 @@ } }, { - "id": 2769, + "id": 4883, "name": "start", "kind": 32768, "kindString": "Parameter", @@ -56771,7 +58052,7 @@ } }, { - "id": 2770, + "id": 4884, "name": "end", "kind": 32768, "kindString": "Parameter", @@ -56790,30 +58071,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 262, "character": 17 } ] }, { - "id": 2761, + "id": 4875, "name": "handleNumber", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2762, + "id": 4876, "name": "handleNumber", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2763, + "id": 4877, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -56824,7 +58106,7 @@ } }, { - "id": 2764, + "id": 4878, "name": "start", "kind": 32768, "kindString": "Parameter", @@ -56835,7 +58117,7 @@ } }, { - "id": 2765, + "id": 4879, "name": "end", "kind": 32768, "kindString": "Parameter", @@ -56854,23 +58136,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 234, "character": 14 } ] }, { - "id": 2747, + "id": 4861, "name": "ngAfterViewInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2748, + "id": 4862, "name": "ngAfterViewInit", "kind": 4096, "kindString": "Call signature", @@ -56883,23 +58166,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 170, "character": 17 } ] }, { - "id": 2745, + "id": 4859, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2746, + "id": 4860, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -56912,23 +58196,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 120, "character": 10 } ] }, { - "id": 2788, + "id": 4902, "name": "onChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2789, + "id": 4903, "name": "onChange", "kind": 4096, "kindString": "Call signature", @@ -56941,23 +58226,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 325, "character": 10 } ] }, { - "id": 2790, + "id": 4904, "name": "onTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2791, + "id": 4905, "name": "onTouched", "kind": 4096, "kindString": "Call signature", @@ -56970,30 +58256,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 326, "character": 11 } ] }, { - "id": 2758, + "id": 4872, "name": "process", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2759, + "id": 4873, "name": "process", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2760, + "id": 4874, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -57012,30 +58299,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 210, "character": 9 } ] }, { - "id": 2792, + "id": 4906, "name": "registerOnChange", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2793, + "id": 4907, "name": "registerOnChange", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2794, + "id": 4908, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -57054,30 +58342,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 328, "character": 18 } ] }, { - "id": 2795, + "id": 4909, "name": "registerOnTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2796, + "id": 4910, "name": "registerOnTouched", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2797, + "id": 4911, "name": "fn", "kind": 32768, "kindString": "Parameter", @@ -57096,30 +58385,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 332, "character": 19 } ] }, { - "id": 2783, + "id": 4897, "name": "replaceAt", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2784, + "id": 4898, "name": "replaceAt", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2785, + "id": 4899, "name": "index", "kind": 32768, "kindString": "Parameter", @@ -57130,7 +58420,7 @@ } }, { - "id": 2786, + "id": 4900, "name": "character", "kind": 32768, "kindString": "Parameter", @@ -57141,7 +58431,7 @@ } }, { - "id": 2787, + "id": 4901, "name": "str", "kind": 32768, "kindString": "Parameter", @@ -57160,30 +58450,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 319, "character": 11 } ] }, { - "id": 2798, + "id": 4912, "name": "setDisabledState", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2799, + "id": 4913, "name": "setDisabledState", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2800, + "id": 4914, "name": "disabled", "kind": 32768, "kindString": "Parameter", @@ -57202,23 +58493,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 336, "character": 18 } ] }, { - "id": 2775, + "id": 4889, "name": "setTouched", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2776, + "id": 4890, "name": "setTouched", "kind": 4096, "kindString": "Call signature", @@ -57231,23 +58523,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 300, "character": 12 } ] }, { - "id": 2771, + "id": 4885, "name": "updateModel", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2772, + "id": 4886, "name": "updateModel", "kind": 4096, "kindString": "Call signature", @@ -57260,30 +58553,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 283, "character": 13 } ] }, { - "id": 2749, + "id": 4863, "name": "validatePhoneNumber", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2750, + "id": 4864, "name": "validatePhoneNumber", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2751, + "id": 4865, "name": "template", "kind": 32768, "kindString": "Parameter", @@ -57302,30 +58596,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 177, "character": 21 } ] }, { - "id": 2801, + "id": 4915, "name": "writeValue", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2802, + "id": 4916, "name": "writeValue", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2803, + "id": 4917, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -57344,7 +58639,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 340, "character": 12 } @@ -57356,73 +58651,73 @@ "title": "Constructors", "kind": 512, "children": [ - 2739 + 4853 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2733, - 2741, - 2723, - 2734, - 2726, - 2729, - 2717, - 2716, - 2718, - 2722, - 2728, - 2732, - 2731, - 2719, - 2730, - 2720, - 2721, - 2740, - 2725, - 2724, - 2727 + 4847, + 4855, + 4837, + 4848, + 4840, + 4843, + 4831, + 4830, + 4832, + 4836, + 4842, + 4846, + 4845, + 4833, + 4844, + 4834, + 4835, + 4854, + 4839, + 4838, + 4841 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 2735 + 4849 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2773, - 2752, - 2755, - 2780, - 2777, - 2766, - 2761, - 2747, - 2745, - 2788, - 2790, - 2758, - 2792, - 2795, - 2783, - 2798, - 2775, - 2771, - 2749, - 2801 + 4887, + 4866, + 4869, + 4894, + 4891, + 4880, + 4875, + 4861, + 4859, + 4902, + 4904, + 4872, + 4906, + 4909, + 4897, + 4912, + 4889, + 4885, + 4863, + 4915 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 35, "character": 35 } @@ -57444,35 +58739,37 @@ "title": "Classes", "kind": 128, "children": [ - 2715 + 4829 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", "line": 1, "character": 0 } ] }, { - "id": 3226, - "name": "\"sam-ui-elements/src/ui-kit/index\"", + "id": 5309, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/index.ts", "children": [ { - "id": 3227, + "id": 5310, "name": "SamUIKitModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -57488,7 +58785,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/index.ts", "line": 44, "character": 27 } @@ -57500,35 +58797,37 @@ "title": "Classes", "kind": 128, "children": [ - 3227 + 5310 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2970, - "name": "\"sam-ui-elements/src/ui-kit/layout/form-only-page.component\"", + "id": 5084, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/layout/form-only-page.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", "children": [ { - "id": 2971, + "id": 5085, "name": "FormOnlyPageTemplateComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -57544,12 +58843,13 @@ ], "children": [ { - "id": 2973, + "id": 5087, "name": "section", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -57567,7 +58867,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", "line": 33, "character": 25 } @@ -57578,12 +58878,13 @@ } }, { - "id": 2972, + "id": 5086, "name": "theme", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -57601,7 +58902,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", "line": 29, "character": 23 } @@ -57621,12 +58922,13 @@ } }, { - "id": 2974, + "id": 5088, "name": "title", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -57644,7 +58946,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", "line": 37, "character": 23 } @@ -57660,15 +58962,15 @@ "title": "Properties", "kind": 1024, "children": [ - 2973, - 2972, - 2974 + 5087, + 5086, + 5088 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", "line": 25, "character": 42 } @@ -57680,35 +58982,37 @@ "title": "Classes", "kind": 128, "children": [ - 2971 + 5085 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2889, - "name": "\"sam-ui-elements/src/ui-kit/layout/grid/column.directive\"", + "id": 5003, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/layout/grid/column.directive\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", "children": [ { - "id": 2890, + "id": 5004, "name": "ColumnDirective", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -57724,23 +59028,24 @@ ], "children": [ { - "id": 2900, + "id": 5014, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2903, + "id": 5017, "name": "new ColumnDirective", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2904, + "id": 5018, "name": "renderer", "kind": 32768, "kindString": "Parameter", @@ -57751,7 +59056,7 @@ } }, { - "id": 2905, + "id": 5019, "name": "el", "kind": 32768, "kindString": "Parameter", @@ -57765,30 +59070,31 @@ "type": { "type": "reference", "name": "ColumnDirective", - "id": 2890 + "id": 5004 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", "line": 53, "character": 3 } ] }, { - "id": 2893, + "id": 5007, "name": "_columnsMap", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", "line": 10, "character": 21 } @@ -57810,17 +59116,18 @@ "defaultValue": " new Map(\n [\n ['1', 'one'],\n ['2', 'two'],\n ['3', 'three'],\n ['4', 'four'],\n ['5', 'five'],\n ['6', 'six'],\n ['7', 'seven'],\n ['8', 'eight'],\n ['9', 'nine'],\n ['10', 'ten'],\n ['11', 'eleven'],\n ['12', 'twelve']\n ]\n )" }, { - "id": 2892, + "id": 5006, "name": "_number", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", "line": 8, "character": 16 } @@ -57831,17 +59138,18 @@ } }, { - "id": 2891, + "id": 5005, "name": "columnsClass", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", "line": 7, "character": 21 } @@ -57852,18 +59160,19 @@ } }, { - "id": 2902, + "id": 5016, "name": "el", "kind": 1024, "kindString": "Property", "flags": { "isConstructorProperty": true, "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", "line": 55, "character": 51 } @@ -57874,18 +59183,19 @@ } }, { - "id": 2901, + "id": 5015, "name": "renderer", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", "line": 55, "character": 30 } @@ -57896,12 +59206,13 @@ } }, { - "id": 2894, + "id": 5008, "name": "number", "kind": 262144, "kindString": "Accessor", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -57918,7 +59229,7 @@ ], "getSignature": [ { - "id": 2897, + "id": 5011, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -57931,14 +59242,14 @@ ], "setSignature": [ { - "id": 2895, + "id": 5009, "name": "__set", "kind": 1048576, "kindString": "Set signature", "flags": {}, "parameters": [ { - "id": 2896, + "id": 5010, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -57957,29 +59268,30 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", "line": 27, "character": 37 }, { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", "line": 40, "character": 19 } ] }, { - "id": 2898, + "id": 5012, "name": "reset", "kind": 2048, "kindString": "Method", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2899, + "id": 5013, "name": "reset", "kind": 4096, "kindString": "Call signature", @@ -57992,7 +59304,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", "line": 44, "character": 15 } @@ -58004,38 +59316,38 @@ "title": "Constructors", "kind": 512, "children": [ - 2900 + 5014 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2893, - 2892, - 2891, - 2902, - 2901 + 5007, + 5006, + 5005, + 5016, + 5015 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 2894 + 5008 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2898 + 5012 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", "line": 6, "character": 28 } @@ -58047,35 +59359,37 @@ "title": "Classes", "kind": 128, "children": [ - 2890 + 5004 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", "line": 1, "character": 0 } ] }, { - "id": 2873, - "name": "\"sam-ui-elements/src/ui-kit/layout/grid/grid.directive\"", + "id": 4987, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/layout/grid/grid.directive\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", "children": [ { - "id": 2874, + "id": 4988, "name": "GridDirective", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -58091,23 +59405,24 @@ ], "children": [ { - "id": 2875, + "id": 4989, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2878, + "id": 4992, "name": "new GridDirective", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2879, + "id": 4993, "name": "renderer", "kind": 32768, "kindString": "Parameter", @@ -58118,7 +59433,7 @@ } }, { - "id": 2880, + "id": 4994, "name": "el", "kind": 32768, "kindString": "Parameter", @@ -58132,31 +59447,32 @@ "type": { "type": "reference", "name": "GridDirective", - "id": 2874 + "id": 4988 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", "line": 6, "character": 28 } ] }, { - "id": 2877, + "id": 4991, "name": "el", "kind": 1024, "kindString": "Property", "flags": { "isConstructorProperty": true, "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", "line": 7, "character": 52 } @@ -58167,18 +59483,19 @@ } }, { - "id": 2876, + "id": 4990, "name": "renderer", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", "line": 7, "character": 31 } @@ -58194,21 +59511,21 @@ "title": "Constructors", "kind": 512, "children": [ - 2875 + 4989 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2877, - 2876 + 4991, + 4990 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", "line": 6, "character": 26 } @@ -58220,35 +59537,37 @@ "title": "Classes", "kind": 128, "children": [ - 2874 + 4988 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", "line": 1, "character": 0 } ] }, { - "id": 2881, - "name": "\"sam-ui-elements/src/ui-kit/layout/grid/row.directive\"", + "id": 4995, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/layout/grid/row.directive\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", "children": [ { - "id": 2882, + "id": 4996, "name": "RowDirective", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -58264,23 +59583,24 @@ ], "children": [ { - "id": 2883, + "id": 4997, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2886, + "id": 5000, "name": "new RowDirective", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2887, + "id": 5001, "name": "renderer", "kind": 32768, "kindString": "Parameter", @@ -58291,7 +59611,7 @@ } }, { - "id": 2888, + "id": 5002, "name": "el", "kind": 32768, "kindString": "Parameter", @@ -58305,31 +59625,32 @@ "type": { "type": "reference", "name": "RowDirective", - "id": 2882 + "id": 4996 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", "line": 6, "character": 27 } ] }, { - "id": 2885, + "id": 4999, "name": "el", "kind": 1024, "kindString": "Property", "flags": { "isConstructorProperty": true, "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", "line": 7, "character": 52 } @@ -58340,18 +59661,19 @@ } }, { - "id": 2884, + "id": 4998, "name": "renderer", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", "line": 7, "character": 31 } @@ -58367,21 +59689,21 @@ "title": "Constructors", "kind": 512, "children": [ - 2883 + 4997 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2885, - 2884 + 4999, + 4998 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", "line": 6, "character": 25 } @@ -58393,35 +59715,37 @@ "title": "Classes", "kind": 128, "children": [ - 2882 + 4996 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", "line": 1, "character": 0 } ] }, { - "id": 2975, - "name": "\"sam-ui-elements/src/ui-kit/layout/index\"", + "id": 5089, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/layout/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/layout/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/layout/index.ts", "children": [ { - "id": 2976, + "id": 5090, "name": "SamLayoutModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "A module for reusable SAM Web Design components" @@ -58440,7 +59764,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/index.ts", "line": 82, "character": 28 } @@ -58452,35 +59776,37 @@ "title": "Classes", "kind": 128, "children": [ - 2976 + 5090 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2951, - "name": "\"sam-ui-elements/src/ui-kit/layout/list-results-message\"", + "id": 5065, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/layout/list-results-message\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", "children": [ { - "id": 2952, + "id": 5066, "name": "ListResultsMessageComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "ListResultsMessageComponent - Lists results message component" @@ -58499,12 +59825,13 @@ ], "children": [ { - "id": 2954, + "id": 5068, "name": "currentPage", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -58519,7 +59846,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/list-results-message.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", "line": 12, "character": 29 } @@ -58530,17 +59857,18 @@ } }, { - "id": 2957, + "id": 5071, "name": "message", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/list-results-message.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", "line": 15, "character": 17 } @@ -58551,12 +59879,13 @@ } }, { - "id": 2955, + "id": 5069, "name": "showing", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -58571,7 +59900,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/list-results-message.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", "line": 13, "character": 25 } @@ -58582,12 +59911,13 @@ } }, { - "id": 2956, + "id": 5070, "name": "suffix", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -58602,7 +59932,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/list-results-message.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", "line": 14, "character": 24 } @@ -58613,12 +59943,13 @@ } }, { - "id": 2953, + "id": 5067, "name": "total", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -58633,7 +59964,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/list-results-message.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", "line": 11, "character": 23 } @@ -58644,16 +59975,17 @@ } }, { - "id": 2958, + "id": 5072, "name": "ngOnChanges", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2959, + "id": 5073, "name": "ngOnChanges", "kind": 4096, "kindString": "Call signature", @@ -58666,7 +59998,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/list-results-message.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", "line": 17, "character": 13 } @@ -58678,24 +60010,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2954, - 2957, - 2955, - 2956, - 2953 + 5068, + 5071, + 5069, + 5070, + 5067 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2958 + 5072 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/list-results-message.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", "line": 10, "character": 40 } @@ -58713,35 +60045,37 @@ "title": "Classes", "kind": 128, "children": [ - 2952 + 5066 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/list-results-message.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", "line": 1, "character": 0 } ] }, { - "id": 2821, - "name": "\"sam-ui-elements/src/ui-kit/layout/page.component\"", + "id": 4935, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/layout/page.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/layout/page.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "children": [ { - "id": 2822, + "id": 4936, "name": "PageTemplateComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -58757,23 +60091,24 @@ ], "children": [ { - "id": 2838, + "id": 4952, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2840, + "id": 4954, "name": "new PageTemplateComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2841, + "id": 4955, "name": "pageService", "kind": 32768, "kindString": "Parameter", @@ -58781,32 +60116,33 @@ "type": { "type": "reference", "name": "PageService", - "id": 2808 + "id": 4922 } } ], "type": { "type": "reference", "name": "PageTemplateComponent", - "id": 2822 + "id": 4936 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 68, "character": 57 } ] }, { - "id": 2828, + "id": 4942, "name": "badge", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -58824,7 +60160,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 34, "character": 23 } @@ -58835,12 +60171,13 @@ } }, { - "id": 2837, + "id": 4951, "name": "breadcrumbChange", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -58858,7 +60195,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 68, "character": 35 } @@ -58876,12 +60213,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2836, + "id": 4950, "name": "breadcrumbOut", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -58899,7 +60237,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 64, "character": 32 } @@ -58917,12 +60255,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2823, + "id": 4937, "name": "breadcrumbs", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -58940,7 +60279,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 14, "character": 29 } @@ -58951,12 +60290,13 @@ } }, { - "id": 2831, + "id": 4945, "name": "caption", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -58974,7 +60314,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 46, "character": 25 } @@ -58985,12 +60325,13 @@ } }, { - "id": 2834, + "id": 4948, "name": "headerOptions", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -59008,7 +60349,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 56, "character": 31 } @@ -59020,18 +60361,19 @@ "defaultValue": "false" }, { - "id": 2839, + "id": 4953, "name": "pageService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 70, "character": 33 } @@ -59039,16 +60381,17 @@ "type": { "type": "reference", "name": "PageService", - "id": 2808 + "id": 4922 } }, { - "id": 2825, + "id": 4939, "name": "section", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -59066,7 +60409,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 22, "character": 25 } @@ -59077,12 +60420,13 @@ } }, { - "id": 2835, + "id": 4949, "name": "stackable", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -59100,7 +60444,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 60, "character": 27 } @@ -59112,12 +60456,13 @@ "defaultValue": "true" }, { - "id": 2824, + "id": 4938, "name": "theme", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -59135,7 +60480,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 18, "character": 23 } @@ -59146,12 +60491,13 @@ } }, { - "id": 2826, + "id": 4940, "name": "title", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -59169,7 +60515,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 26, "character": 23 } @@ -59180,12 +60526,13 @@ } }, { - "id": 2827, + "id": 4941, "name": "titleId", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -59203,7 +60550,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 30, "character": 25 } @@ -59214,12 +60561,13 @@ } }, { - "id": 2829, + "id": 4943, "name": "type", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -59237,7 +60585,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 38, "character": 22 } @@ -59248,12 +60596,13 @@ } }, { - "id": 2830, + "id": 4944, "name": "typeLabel", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -59271,7 +60620,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 42, "character": 27 } @@ -59282,16 +60631,17 @@ } }, { - "id": 2851, + "id": 4965, "name": "mainContentColumns", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "getSignature": [ { - "id": 2852, + "id": 4966, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -59304,23 +60654,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 91, "character": 24 } ] }, { - "id": 2847, + "id": 4961, "name": "sidebar", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "getSignature": [ { - "id": 2848, + "id": 4962, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -59333,23 +60684,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 83, "character": 13 } ] }, { - "id": 2849, + "id": 4963, "name": "sidebarColumns", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "getSignature": [ { - "id": 2850, + "id": 4964, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -59362,30 +60714,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 87, "character": 20 } ] }, { - "id": 2844, + "id": 4958, "name": "breadcrumbHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2845, + "id": 4959, "name": "breadcrumbHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2846, + "id": 4960, "name": "evt", "kind": 32768, "kindString": "Parameter", @@ -59404,23 +60757,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 78, "character": 19 } ] }, { - "id": 2842, + "id": 4956, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2843, + "id": 4957, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -59433,19 +60787,20 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 72, "character": 10 } ] }, { - "id": 2832, + "id": 4946, "name": "options", "kind": 2097152, "kindString": "Object literal", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -59463,16 +60818,17 @@ ], "children": [ { - "id": 2833, + "id": 4947, "name": "badge", "kind": 32, "kindString": "Variable", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 51, "character": 9 } @@ -59489,13 +60845,13 @@ "title": "Variables", "kind": 32, "children": [ - 2833 + 4947 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 50, "character": 25 } @@ -59511,57 +60867,57 @@ "title": "Constructors", "kind": 512, "children": [ - 2838 + 4952 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2828, - 2837, - 2836, - 2823, - 2831, - 2834, - 2839, - 2825, - 2835, - 2824, - 2826, - 2827, - 2829, - 2830 + 4942, + 4951, + 4950, + 4937, + 4945, + 4948, + 4953, + 4939, + 4949, + 4938, + 4940, + 4941, + 4943, + 4944 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 2851, - 2847, - 2849 + 4965, + 4961, + 4963 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2844, - 2842 + 4958, + 4956 ] }, { "title": "Object literals", "kind": 2097152, "children": [ - 2832 + 4946 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 10, "character": 34 } @@ -59579,35 +60935,37 @@ "title": "Classes", "kind": 128, "children": [ - 2822 + 4936 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2807, - "name": "\"sam-ui-elements/src/ui-kit/layout/page.service\"", + "id": 4921, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/layout/page.service\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/layout/page.service.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/layout/page.service.ts", "children": [ { - "id": 2808, + "id": 4922, "name": "PageService", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -59621,16 +60979,17 @@ ], "children": [ { - "id": 2809, + "id": 4923, "name": "_sidebar", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.service.ts", "line": 5, "character": 10 } @@ -59641,16 +61000,17 @@ } }, { - "id": 2810, + "id": 4924, "name": "_wideSidebar", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.service.ts", "line": 6, "character": 14 } @@ -59661,16 +61021,17 @@ } }, { - "id": 2812, + "id": 4926, "name": "mainContentColumns", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.service.ts", "line": 8, "character": 20 } @@ -59681,16 +61042,17 @@ } }, { - "id": 2811, + "id": 4925, "name": "sidebarColumns", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.service.ts", "line": 7, "character": 16 } @@ -59701,16 +61063,17 @@ } }, { - "id": 2813, + "id": 4927, "name": "sidebar", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "getSignature": [ { - "id": 2816, + "id": 4930, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -59723,14 +61086,14 @@ ], "setSignature": [ { - "id": 2814, + "id": 4928, "name": "__set", "kind": 1048576, "kindString": "Set signature", "flags": {}, "parameters": [ { - "id": 2815, + "id": 4929, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -59749,28 +61112,29 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.service.ts", "line": 10, "character": 13 }, { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.service.ts", "line": 24, "character": 13 } ] }, { - "id": 2817, + "id": 4931, "name": "wideSidebar", "kind": 262144, "kindString": "Accessor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "getSignature": [ { - "id": 2820, + "id": 4934, "name": "__get", "kind": 524288, "kindString": "Get signature", @@ -59783,14 +61147,14 @@ ], "setSignature": [ { - "id": 2818, + "id": 4932, "name": "__set", "kind": 1048576, "kindString": "Set signature", "flags": {}, "parameters": [ { - "id": 2819, + "id": 4933, "name": "value", "kind": 32768, "kindString": "Parameter", @@ -59809,12 +61173,12 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.service.ts", "line": 28, "character": 17 }, { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.service.ts", "line": 36, "character": 17 } @@ -59826,24 +61190,24 @@ "title": "Properties", "kind": 1024, "children": [ - 2809, - 2810, - 2812, - 2811 + 4923, + 4924, + 4926, + 4925 ] }, { "title": "Accessors", "kind": 262144, "children": [ - 2813, - 2817 + 4927, + 4931 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.service.ts", "line": 4, "character": 24 } @@ -59855,35 +61219,37 @@ "title": "Classes", "kind": 128, "children": [ - 2808 + 4922 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/page.service.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/page.service.ts", "line": 1, "character": 0 } ] }, { - "id": 2906, - "name": "\"sam-ui-elements/src/ui-kit/layout/pages/form-step.component\"", + "id": 5020, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "children": [ { - "id": 2907, + "id": 5021, "name": "FormStepComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -59899,23 +61265,24 @@ ], "children": [ { - "id": 2931, + "id": 5045, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2933, + "id": 5047, "name": "new FormStepComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2934, + "id": 5048, "name": "cdr", "kind": 32768, "kindString": "Parameter", @@ -59929,25 +61296,26 @@ "type": { "type": "reference", "name": "FormStepComponent", - "id": 2907 + "id": 5021 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 194, "character": 60 } ] }, { - "id": 2925, + "id": 5039, "name": "action", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emitter for general events" @@ -59964,7 +61332,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 174, "character": 18 } @@ -59982,12 +61350,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2924, + "id": 5038, "name": "alerts", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Passes in an Alerts model" @@ -60004,7 +61373,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 170, "character": 17 } @@ -60015,12 +61384,13 @@ } }, { - "id": 2929, + "id": 5043, "name": "breadcrumbChange", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -60038,7 +61408,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 190, "character": 35 } @@ -60056,12 +61426,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2928, + "id": 5042, "name": "breadcrumbOut", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -60079,7 +61450,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 186, "character": 32 } @@ -60097,18 +61468,19 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2932, + "id": 5046, "name": "cdr", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 196, "character": 25 } @@ -60119,12 +61491,13 @@ } }, { - "id": 2908, + "id": 5022, "name": "crumbs", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets breadcrumbs model" @@ -60141,7 +61514,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 106, "character": 17 } @@ -60152,12 +61525,13 @@ } }, { - "id": 2923, + "id": 5037, "name": "hasErrors", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Override to toggle buttons on/off if there are external errors" @@ -60174,7 +61548,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 166, "character": 20 } @@ -60185,12 +61559,13 @@ } }, { - "id": 2914, + "id": 5028, "name": "numberOfSections", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets number of sections" @@ -60207,7 +61582,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 130, "character": 27 } @@ -60218,12 +61593,13 @@ } }, { - "id": 2916, + "id": 5030, "name": "pageTitle", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets page title" @@ -60240,7 +61616,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 138, "character": 20 } @@ -60251,12 +61627,13 @@ } }, { - "id": 2913, + "id": 5027, "name": "sectionIndex", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Used to toggle appearance of back/next buttons" @@ -60273,7 +61650,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 126, "character": 23 } @@ -60284,12 +61661,13 @@ } }, { - "id": 2915, + "id": 5029, "name": "sectionTitle", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets section title" @@ -60306,7 +61684,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 134, "character": 23 } @@ -60317,12 +61695,13 @@ } }, { - "id": 2927, + "id": 5041, "name": "sideNavChange", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emitter for sidenav events" @@ -60339,7 +61718,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 182, "character": 25 } @@ -60357,12 +61736,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2911, + "id": 5025, "name": "sideNavImage", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets sidenav image src" @@ -60379,7 +61759,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 118, "character": 23 } @@ -60390,12 +61770,13 @@ } }, { - "id": 2912, + "id": 5026, "name": "sideNavImageAlt", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets sidenav image alt" @@ -60412,7 +61793,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 122, "character": 26 } @@ -60423,12 +61804,13 @@ } }, { - "id": 2909, + "id": 5023, "name": "sideNavModel", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets sidenav model" @@ -60445,7 +61827,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 110, "character": 23 } @@ -60456,12 +61838,13 @@ } }, { - "id": 2926, + "id": 5040, "name": "sideNavOutput", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "(deprecated) Emitter for sidenav events" @@ -60478,7 +61861,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 178, "character": 25 } @@ -60496,12 +61879,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2910, + "id": 5024, "name": "sideNavSelection", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets sidenav selection" @@ -60518,7 +61902,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 114, "character": 27 } @@ -60529,12 +61913,13 @@ } }, { - "id": 2921, + "id": 5035, "name": "statusBannerExpanded", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the state of the banner" @@ -60551,7 +61936,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 158, "character": 31 } @@ -60563,12 +61948,13 @@ "defaultValue": "false" }, { - "id": 2930, + "id": 5044, "name": "statusBannerExpandedChange", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Emitter for status banner events" @@ -60585,7 +61971,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 194, "character": 38 } @@ -60603,12 +61989,13 @@ "defaultValue": " new EventEmitter()" }, { - "id": 2920, + "id": 5034, "name": "statusBannerLeadingText", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the banner leading text" @@ -60625,7 +62012,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 154, "character": 34 } @@ -60636,12 +62023,13 @@ } }, { - "id": 2919, + "id": 5033, "name": "statusBannerType", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the banner alert type" @@ -60658,7 +62046,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 150, "character": 27 } @@ -60670,12 +62058,13 @@ "defaultValue": "\"error\"" }, { - "id": 2922, + "id": 5036, "name": "tabsComponent", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Passes in a tab component" @@ -60692,7 +62081,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 162, "character": 24 } @@ -60703,12 +62092,13 @@ } }, { - "id": 2917, + "id": 5031, "name": "type", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets form step type" @@ -60725,7 +62115,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 142, "character": 15 } @@ -60736,12 +62126,13 @@ } }, { - "id": 2918, + "id": 5032, "name": "typeLabel", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the page component typelabel input" @@ -60758,7 +62149,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 146, "character": 20 } @@ -60769,23 +62160,24 @@ } }, { - "id": 2937, + "id": 5051, "name": "breadcrumbHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2938, + "id": 5052, "name": "breadcrumbHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2939, + "id": 5053, "name": "evt", "kind": 32768, "kindString": "Parameter", @@ -60804,30 +62196,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 203, "character": 19 } ] }, { - "id": 2940, + "id": 5054, "name": "formAction", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2941, + "id": 5055, "name": "formAction", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2942, + "id": 5056, "name": "evtStr", "kind": 32768, "kindString": "Parameter", @@ -60846,30 +62239,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 208, "character": 12 } ] }, { - "id": 2943, + "id": 5057, "name": "navHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2944, + "id": 5058, "name": "navHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2945, + "id": 5059, "name": "evt", "kind": 32768, "kindString": "Parameter", @@ -60888,23 +62282,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 212, "character": 12 } ] }, { - "id": 2935, + "id": 5049, "name": "ngOnChanges", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2936, + "id": 5050, "name": "ngOnChanges", "kind": 4096, "kindString": "Call signature", @@ -60917,30 +62312,31 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 199, "character": 13 } ] }, { - "id": 2946, + "id": 5060, "name": "toggleButtons", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2947, + "id": 5061, "name": "toggleButtons", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2948, + "id": 5062, "name": "hasErrors", "kind": 32768, "kindString": "Parameter", @@ -60959,7 +62355,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 217, "character": 15 } @@ -60971,54 +62367,54 @@ "title": "Constructors", "kind": 512, "children": [ - 2931 + 5045 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2925, - 2924, - 2929, - 2928, - 2932, - 2908, - 2923, - 2914, - 2916, - 2913, - 2915, - 2927, - 2911, - 2912, - 2909, - 2926, - 2910, - 2921, - 2930, - 2920, - 2919, - 2922, - 2917, - 2918 + 5039, + 5038, + 5043, + 5042, + 5046, + 5022, + 5037, + 5028, + 5030, + 5027, + 5029, + 5041, + 5025, + 5026, + 5023, + 5040, + 5024, + 5035, + 5044, + 5034, + 5033, + 5036, + 5031, + 5032 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2937, - 2940, - 2943, - 2935, - 2946 + 5051, + 5054, + 5057, + 5049, + 5060 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 102, "character": 30 } @@ -61036,35 +62432,37 @@ "title": "Classes", "kind": 128, "children": [ - 2907 + 5021 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2862, - "name": "\"sam-ui-elements/src/ui-kit/layout/results.component\"", + "id": 4976, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/layout/results.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/layout/results.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/layout/results.component.ts", "children": [ { - "id": 2863, + "id": 4977, "name": "ResultsTemplateComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -61080,12 +62478,13 @@ ], "children": [ { - "id": 2865, + "id": 4979, "name": "currentPage", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61103,7 +62502,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/results.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/results.component.ts", "line": 18, "character": 29 } @@ -61114,12 +62513,13 @@ } }, { - "id": 2868, + "id": 4982, "name": "listMessageSuffix", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61137,7 +62537,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/results.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/results.component.ts", "line": 34, "character": 35 } @@ -61148,12 +62548,13 @@ } }, { - "id": 2869, + "id": 4983, "name": "pageChange", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61171,7 +62572,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/results.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/results.component.ts", "line": 39, "character": 29 } @@ -61189,12 +62590,13 @@ "defaultValue": "\n new EventEmitter()" }, { - "id": 2867, + "id": 4981, "name": "showing", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61212,7 +62614,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/results.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/results.component.ts", "line": 29, "character": 25 } @@ -61223,12 +62625,13 @@ } }, { - "id": 2864, + "id": 4978, "name": "totalElements", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61246,7 +62649,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/results.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/results.component.ts", "line": 13, "character": 31 } @@ -61257,12 +62660,13 @@ } }, { - "id": 2866, + "id": 4980, "name": "totalPages", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61280,7 +62684,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/results.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/results.component.ts", "line": 24, "character": 28 } @@ -61291,23 +62695,24 @@ } }, { - "id": 2870, + "id": 4984, "name": "pageChangeHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2871, + "id": 4985, "name": "pageChangeHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2872, + "id": 4986, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -61326,7 +62731,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/results.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/results.component.ts", "line": 42, "character": 19 } @@ -61338,25 +62743,25 @@ "title": "Properties", "kind": 1024, "children": [ - 2865, - 2868, - 2869, - 2867, - 2864, - 2866 + 4979, + 4982, + 4983, + 4981, + 4978, + 4980 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2870 + 4984 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/results.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/results.component.ts", "line": 7, "character": 37 } @@ -61368,35 +62773,37 @@ "title": "Classes", "kind": 128, "children": [ - 2863 + 4977 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/results.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/results.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2853, - "name": "\"sam-ui-elements/src/ui-kit/layout/sidebar.component\"", + "id": 4967, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/layout/sidebar.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", "children": [ { - "id": 2854, + "id": 4968, "name": "SidebarTemplateComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -61412,23 +62819,24 @@ ], "children": [ { - "id": 2856, + "id": 4970, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2858, + "id": 4972, "name": "new SidebarTemplateComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 2859, + "id": 4973, "name": "pageService", "kind": 32768, "kindString": "Parameter", @@ -61436,38 +62844,39 @@ "type": { "type": "reference", "name": "PageService", - "id": 2808 + "id": 4922 } } ], "type": { "type": "reference", "name": "SidebarTemplateComponent", - "id": 2854 + "id": 4968 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", "line": 12, "character": 40 } ] }, { - "id": 2857, + "id": 4971, "name": "pageService", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", "line": 14, "character": 33 } @@ -61475,16 +62884,17 @@ "type": { "type": "reference", "name": "PageService", - "id": 2808 + "id": 4922 } }, { - "id": 2855, + "id": 4969, "name": "wide", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61502,7 +62912,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", "line": 12, "character": 22 } @@ -61514,16 +62924,17 @@ "defaultValue": "false" }, { - "id": 2860, + "id": 4974, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2861, + "id": 4975, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -61536,7 +62947,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", "line": 17, "character": 10 } @@ -61548,28 +62959,28 @@ "title": "Constructors", "kind": 512, "children": [ - 2856 + 4970 ] }, { "title": "Properties", "kind": 1024, "children": [ - 2857, - 2855 + 4971, + 4969 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2860 + 4974 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", "line": 8, "character": 37 } @@ -61587,35 +62998,37 @@ "title": "Classes", "kind": 128, "children": [ - 2854 + 4968 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2960, - "name": "\"sam-ui-elements/src/ui-kit/layout/title-and-section.component\"", + "id": 5074, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/layout/title-and-section.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", "children": [ { - "id": 2961, + "id": 5075, "name": "TitleAndSectionComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -61631,12 +63044,13 @@ ], "children": [ { - "id": 2965, + "id": 5079, "name": "badge", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61654,7 +63068,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", "line": 45, "character": 23 } @@ -61665,12 +63079,13 @@ } }, { - "id": 2969, + "id": 5083, "name": "badgeOptions", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61688,7 +63103,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", "line": 61, "character": 30 } @@ -61696,16 +63111,17 @@ "type": { "type": "reference", "name": "BadgeConfig", - "id": 135 + "id": 9 } }, { - "id": 2968, + "id": 5082, "name": "caption", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61723,7 +63139,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", "line": 57, "character": 25 } @@ -61734,12 +63150,13 @@ } }, { - "id": 2964, + "id": 5078, "name": "id", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61757,7 +63174,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", "line": 41, "character": 20 } @@ -61768,12 +63185,13 @@ } }, { - "id": 2962, + "id": 5076, "name": "section", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61791,7 +63209,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", "line": 33, "character": 25 } @@ -61802,12 +63220,13 @@ } }, { - "id": 2963, + "id": 5077, "name": "title", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61825,7 +63244,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", "line": 37, "character": 23 } @@ -61836,12 +63255,13 @@ } }, { - "id": 2966, + "id": 5080, "name": "type", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61859,7 +63279,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", "line": 49, "character": 22 } @@ -61870,12 +63290,13 @@ } }, { - "id": 2967, + "id": 5081, "name": "typeLabel", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "comment": { @@ -61893,7 +63314,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", "line": 53, "character": 27 } @@ -61909,20 +63330,20 @@ "title": "Properties", "kind": 1024, "children": [ - 2965, - 2969, - 2968, - 2964, - 2962, - 2963, - 2966, - 2967 + 5079, + 5083, + 5082, + 5078, + 5076, + 5077, + 5080, + 5081 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", "line": 29, "character": 37 } @@ -61934,49 +63355,52 @@ "title": "Classes", "kind": 128, "children": [ - 2961 + 5075 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", "line": 1, "character": 0 } ] }, { - "id": 147, - "name": "\"sam-ui-elements/src/ui-kit/layout/types\"", + "id": 21, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/layout/types\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/layout/types.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/layout/types.ts", "children": [ { - "id": 148, + "id": 22, "name": "PageConfig", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 150, + "id": 24, "name": "badge", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/types.ts", "line": 5, "character": 7 } @@ -61984,21 +63408,22 @@ "type": { "type": "reference", "name": "BadgeConfig", - "id": 135 + "id": 9 } }, { - "id": 149, + "id": 23, "name": "class", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/types.ts", "line": 4, "character": 7 } @@ -62014,14 +63439,14 @@ "title": "Properties", "kind": 1024, "children": [ - 150, - 149 + 24, + 23 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/types.ts", "line": 3, "character": 27 } @@ -62033,35 +63458,37 @@ "title": "Interfaces", "kind": 256, "children": [ - 148 + 22 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/types.ts", "line": 1, "character": 0 } ] }, { - "id": 2949, - "name": "\"sam-ui-elements/src/ui-kit/layout/workspace/workspace-template.component\"", + "id": 5063, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/layout/workspace/workspace-template.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/layout/workspace/workspace-template.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/layout/workspace/workspace-template.component.ts", "children": [ { - "id": 2950, + "id": 5064, "name": "WorkspaceTemplateComponent", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Example usage:", @@ -62081,7 +63508,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/workspace/workspace-template.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/workspace/workspace-template.component.ts", "line": 16, "character": 39 } @@ -62093,35 +63520,37 @@ "title": "Classes", "kind": 128, "children": [ - 2950 + 5064 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/layout/workspace/workspace-template.component.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/layout/workspace/workspace-template.component.ts", "line": 1, "character": 0 } ] }, { - "id": 2196, - "name": "\"sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe\"", + "id": 681, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe.ts", "children": [ { - "id": 2197, + "id": 682, "name": "DateTimeDisplayPipe", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -62137,23 +63566,24 @@ ], "children": [ { - "id": 2198, + "id": 683, "name": "transform", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2199, + "id": 684, "name": "transform", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2200, + "id": 685, "name": "datetime", "kind": 32768, "kindString": "Parameter", @@ -62172,7 +63602,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe.ts", "line": 7, "character": 11 } @@ -62184,13 +63614,13 @@ "title": "Methods", "kind": 2048, "children": [ - 2198 + 683 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe.ts", "line": 6, "character": 32 } @@ -62208,52 +63638,55 @@ "title": "Classes", "kind": 128, "children": [ - 2197 + 682 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe.ts", "line": 1, "character": 0 } ] }, { - "id": 2201, - "name": "\"sam-ui-elements/src/ui-kit/pipes/date-time-display/index\"", + "id": 686, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/pipes/date-time-display/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/pipes/date-time-display/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/pipes/date-time-display/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/date-time-display/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/date-time-display/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2217, - "name": "\"sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe\"", + "id": 702, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe.ts", "children": [ { - "id": 2218, + "id": 703, "name": "FilesizePipe", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -62269,23 +63702,24 @@ ], "children": [ { - "id": 2219, + "id": 704, "name": "transform", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2220, + "id": 705, "name": "transform", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2221, + "id": 706, "name": "size", "kind": 32768, "kindString": "Parameter", @@ -62304,7 +63738,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe.ts", "line": 7, "character": 11 } @@ -62316,13 +63750,13 @@ "title": "Methods", "kind": 2048, "children": [ - 2219 + 704 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe.ts", "line": 5, "character": 25 } @@ -62340,35 +63774,37 @@ "title": "Classes", "kind": 128, "children": [ - 2218 + 703 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe.ts", "line": 1, "character": 0 } ] }, { - "id": 2222, - "name": "\"sam-ui-elements/src/ui-kit/pipes/index\"", + "id": 707, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/pipes/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/pipes/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/pipes/index.ts", "children": [ { - "id": 2223, + "id": 708, "name": "SamPipesModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -62384,7 +63820,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/index.ts", "line": 25, "character": 27 } @@ -62396,35 +63832,37 @@ "title": "Classes", "kind": 128, "children": [ - 2223 + 708 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2208, - "name": "\"sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe\"", + "id": 693, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", "children": [ { - "id": 2209, + "id": 694, "name": "ShortDatePipe", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -62440,17 +63878,18 @@ ], "children": [ { - "id": 2212, + "id": 697, "name": "differentYearFormat", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", "line": 10, "character": 28 } @@ -62462,17 +63901,18 @@ "defaultValue": "\"MMM DD YYYY h:mmA\"" }, { - "id": 2210, + "id": 695, "name": "sameDayFormat", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", "line": 8, "character": 22 } @@ -62484,17 +63924,18 @@ "defaultValue": "\"h:mmA\"" }, { - "id": 2211, + "id": 696, "name": "sameYearFormat", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isPublic": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", "line": 9, "character": 23 } @@ -62506,23 +63947,24 @@ "defaultValue": "\"MMM DD h:mmA\"" }, { - "id": 2213, + "id": 698, "name": "transform", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2214, + "id": 699, "name": "transform", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2215, + "id": 700, "name": "dateStr", "kind": 32768, "kindString": "Parameter", @@ -62533,7 +63975,7 @@ } }, { - "id": 2216, + "id": 701, "name": "fakeNow", "kind": 32768, "kindString": "Parameter", @@ -62554,7 +63996,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", "line": 14, "character": 11 } @@ -62566,22 +64008,22 @@ "title": "Properties", "kind": 1024, "children": [ - 2212, - 2210, - 2211 + 697, + 695, + 696 ] }, { "title": "Methods", "kind": 2048, "children": [ - 2213 + 698 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", "line": 7, "character": 26 } @@ -62599,52 +64041,55 @@ "title": "Classes", "kind": 128, "children": [ - 2209 + 694 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", "line": 1, "character": 0 } ] }, { - "id": 2207, - "name": "\"sam-ui-elements/src/ui-kit/pipes/time-ago/index\"", + "id": 692, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/pipes/time-ago/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/pipes/time-ago/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/pipes/time-ago/index.ts", "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/time-ago/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/time-ago/index.ts", "line": 1, "character": 0 } ] }, { - "id": 2202, - "name": "\"sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe\"", + "id": 687, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe.ts", "children": [ { - "id": 2203, + "id": 688, "name": "TimeAgoPipe", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -62660,23 +64105,24 @@ ], "children": [ { - "id": 2204, + "id": 689, "name": "transform", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 2205, + "id": 690, "name": "transform", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 2206, + "id": 691, "name": "datetime", "kind": 32768, "kindString": "Parameter", @@ -62695,7 +64141,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe.ts", "line": 11, "character": 11 } @@ -62707,13 +64153,13 @@ "title": "Methods", "kind": 2048, "children": [ - 2204 + 689 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe.ts", "line": 10, "character": 24 } @@ -62731,35 +64177,37 @@ "title": "Classes", "kind": 128, "children": [ - 2203 + 688 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe.ts", "line": 1, "character": 0 } ] }, { - "id": 3198, - "name": "\"sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive\"", + "id": 5281, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", "children": [ { - "id": 3199, + "id": 5282, "name": "CountryService", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -62773,23 +64221,24 @@ ], "children": [ { - "id": 3200, + "id": 5283, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3202, + "id": 5285, "name": "new CountryService", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 3203, + "id": 5286, "name": "countries", "kind": 32768, "kindString": "Parameter", @@ -62813,7 +64262,7 @@ { "type": "reference", "name": "Country", - "id": 3212 + "id": 5295 } ] } @@ -62822,27 +64271,28 @@ "type": { "type": "reference", "name": "CountryService", - "id": 3199 + "id": 5282 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", "line": 10, "character": 60 } ] }, { - "id": 3201, + "id": 5284, "name": "countries", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -62858,7 +64308,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", "line": 12, "character": 52 } @@ -62870,29 +64320,30 @@ { "type": "reference", "name": "Country", - "id": 3212 + "id": 5295 } ] } }, { - "id": 3206, + "id": 5289, "name": "fetch", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3207, + "id": 5290, "name": "fetch", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 3208, + "id": 5291, "name": "val", "kind": 32768, "kindString": "Parameter", @@ -62903,7 +64354,7 @@ } }, { - "id": 3209, + "id": 5292, "name": "pageEnd", "kind": 32768, "kindString": "Parameter", @@ -62914,7 +64365,7 @@ } }, { - "id": 3210, + "id": 5293, "name": "serviceOptions", "kind": 32768, "kindString": "Parameter", @@ -62941,23 +64392,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", "line": 18, "character": 7 } ] }, { - "id": 3204, + "id": 5287, "name": "setFetchMethod", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3205, + "id": 5288, "name": "setFetchMethod", "kind": 4096, "kindString": "Call signature", @@ -62970,7 +64422,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", "line": 14, "character": 16 } @@ -62982,28 +64434,28 @@ "title": "Constructors", "kind": 512, "children": [ - 3200 + 5283 ] }, { "title": "Properties", "kind": 1024, "children": [ - 3201 + 5284 ] }, { "title": "Methods", "kind": 2048, "children": [ - 3206, - 3204 + 5289, + 5287 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", "line": 10, "character": 27 } @@ -63012,17 +64464,18 @@ { "type": "reference", "name": "AutocompleteService", - "id": 234 + "id": 1946 } ] }, { - "id": 3211, + "id": 5294, "name": "CountryServiceDirective", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -63038,28 +64491,32 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", "line": 39, "character": 36 } ] }, { - "id": 3212, + "id": 5295, "name": "Country", "kind": 256, "kindString": "Interface", - "flags": {}, + "flags": { + "isExternal": true + }, "children": [ { - "id": 3214, + "id": 5297, "name": "code", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", "line": 43, "character": 6 } @@ -63070,14 +64527,16 @@ } }, { - "id": 3213, + "id": 5296, "name": "name", "kind": 1024, "kindString": "Property", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", "line": 42, "character": 6 } @@ -63093,14 +64552,14 @@ "title": "Properties", "kind": 1024, "children": [ - 3214, - 3213 + 5297, + 5296 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", "line": 41, "character": 17 } @@ -63112,43 +64571,45 @@ "title": "Classes", "kind": 128, "children": [ - 3199, - 3211 + 5282, + 5294 ] }, { "title": "Interfaces", "kind": 256, "children": [ - 3212 + 5295 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", "line": 1, "character": 0 } ] }, { - "id": 3215, - "name": "\"sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index\"", + "id": 5298, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", "children": [ { - "id": 3216, + "id": 5299, "name": "CountryServiceDirectiveModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -63164,21 +64625,23 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", "line": 265, "character": 42 } ] }, { - "id": 3221, + "id": 5304, "name": "COUNTRIES", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", "line": 251, "character": 15 } @@ -63190,14 +64653,16 @@ "defaultValue": " new OpaqueToken('COUNTRIES')" }, { - "id": 3217, + "id": 5300, "name": "countriesList", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", "line": 5, "character": 19 } @@ -63209,21 +64674,23 @@ { "type": "reflection", "declaration": { - "id": 3218, + "id": 5301, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3220, + "id": 5303, "name": "code", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", "line": 6, "character": 32 } @@ -63235,14 +64702,16 @@ "defaultValue": "\"AF\"" }, { - "id": 3219, + "id": 5302, "name": "name", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", "line": 6, "character": 9 } @@ -63259,8 +64728,8 @@ "title": "Variables", "kind": 32, "children": [ - 3220, - 3219 + 5303, + 5302 ] } ] @@ -63276,43 +64745,45 @@ "title": "Classes", "kind": 128, "children": [ - 3216 + 5299 ] }, { "title": "Variables", "kind": 32, "children": [ - 3221, - 3217 + 5304, + 5300 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", "line": 1, "character": 0 } ] }, { - "id": 3222, - "name": "\"sam-ui-elements/src/ui-kit/service-directives/autocomplete/index\"", + "id": 5305, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/service-directives/autocomplete/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/index.ts", "children": [ { - "id": 3223, + "id": 5306, "name": "AutocompleteServiceDirectives", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -63328,7 +64799,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/index.ts", "line": 17, "character": 42 } @@ -63340,35 +64811,37 @@ "title": "Classes", "kind": 128, "children": [ - 3223 + 5306 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/index.ts", "line": 1, "character": 0 } ] }, { - "id": 3186, - "name": "\"sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index\"", + "id": 5269, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", "children": [ { - "id": 3187, + "id": 5270, "name": "StateServiceDirectiveModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -63384,21 +64857,23 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", "line": 86, "character": 40 } ] }, { - "id": 3188, + "id": 5271, "name": "US_STATES", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", "line": 5, "character": 15 } @@ -63410,14 +64885,16 @@ "defaultValue": " new OpaqueToken('US_STATES')" }, { - "id": 3189, + "id": 5272, "name": "US_TERRITORIES", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", "line": 6, "character": 20 } @@ -63429,14 +64906,16 @@ "defaultValue": " new OpaqueToken('US_TERRITORIES')" }, { - "id": 3190, + "id": 5273, "name": "statesList", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", "line": 8, "character": 16 } @@ -63448,21 +64927,23 @@ { "type": "reflection", "declaration": { - "id": 3191, + "id": 5274, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3193, + "id": 5276, "name": "abbreviation", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", "line": 9, "character": 33 } @@ -63474,14 +64955,16 @@ "defaultValue": "\"AL\"" }, { - "id": 3192, + "id": 5275, "name": "name", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", "line": 9, "character": 8 } @@ -63498,8 +64981,8 @@ "title": "Variables", "kind": 32, "children": [ - 3193, - 3192 + 5276, + 5275 ] } ] @@ -63510,14 +64993,16 @@ "defaultValue": " [\n { name: 'Alabama', abbreviation: 'AL'},\n { name: 'Alaska', abbreviation: 'AK'},\n { name: 'Arizona', abbreviation: 'AZ'},\n { name: 'Arkansas', abbreviation: 'AR'},\n { name: 'California', abbreviation: 'CA'},\n { name: 'Colorado', abbreviation: 'CO'},\n { name: 'Connecticut', abbreviation: 'CT'},\n { name: 'Delaware', abbreviation: 'DE'},\n { name: 'District Of Columbia', abbreviation: 'DC'},\n { name: 'Florida', abbreviation: 'FL'},\n { name: 'Georgia', abbreviation: 'GA'},\n { name: 'Hawaii', abbreviation: 'HI'},\n { name: 'Idaho', abbreviation: 'ID'},\n { name: 'Illinois', abbreviation: 'IL'},\n { name: 'Indiana', abbreviation: 'IN'},\n { name: 'Iowa', abbreviation: 'IA'},\n { name: 'Kansas', abbreviation: 'KS'},\n { name: 'Kentucky', abbreviation: 'KY'},\n { name: 'Louisiana', abbreviation: 'LA'},\n { name: 'Maine', abbreviation: 'ME'},\n { name: 'Maryland', abbreviation: 'MD'},\n { name: 'Massachusetts', abbreviation: 'MA'},\n { name: 'Michigan', abbreviation: 'MI'},\n { name: 'Minnesota', abbreviation: 'MN'},\n { name: 'Mississippi', abbreviation: 'MS'},\n { name: 'Missouri', abbreviation: 'MO'},\n { name: 'Montana', abbreviation: 'MT'},\n { name: 'Nebraska', abbreviation: 'NE'},\n { name: 'Nevada', abbreviation: 'NV'},\n { name: 'New Hampshire', abbreviation: 'NH'},\n { name: 'New Jersey', abbreviation: 'NJ'},\n { name: 'New Mexico', abbreviation: 'NM'},\n { name: 'New York', abbreviation: 'NY'},\n { name: 'North Carolina', abbreviation: 'NC'},\n { name: 'North Dakota', abbreviation: 'ND'},\n { name: 'Ohio', abbreviation: 'OH'},\n { name: 'Oklahoma', abbreviation: 'OK'},\n { name: 'Oregon', abbreviation: 'OR'},\n { name: 'Pennsylvania', abbreviation: 'PA'},\n { name: 'Rhode Island', abbreviation: 'RI'},\n { name: 'South Carolina', abbreviation: 'SC'},\n { name: 'South Dakota', abbreviation: 'SD'},\n { name: 'Tennessee', abbreviation: 'TN'},\n { name: 'Texas', abbreviation: 'TX'},\n { name: 'Utah', abbreviation: 'UT'},\n { name: 'Vermont', abbreviation: 'VT'},\n { name: 'Virgin Islands', abbreviation: 'VI'},\n { name: 'Virginia', abbreviation: 'VA'},\n { name: 'Washington', abbreviation: 'WA'},\n { name: 'West Virginia', abbreviation: 'WV'},\n { name: 'Wisconsin', abbreviation: 'WI'},\n { name: 'Wyoming', abbreviation: 'WY' }\n]" }, { - "id": 3194, + "id": 5277, "name": "territoriesList", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", "line": 63, "character": 21 } @@ -63529,21 +65014,23 @@ { "type": "reflection", "declaration": { - "id": 3195, + "id": 5278, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3197, + "id": 5280, "name": "abbreviation", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", "line": 64, "character": 40 } @@ -63555,14 +65042,16 @@ "defaultValue": "\"AS\"" }, { - "id": 3196, + "id": 5279, "name": "name", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", "line": 64, "character": 8 } @@ -63579,8 +65068,8 @@ "title": "Variables", "kind": 32, "children": [ - 3197, - 3196 + 5280, + 5279 ] } ] @@ -63596,45 +65085,47 @@ "title": "Classes", "kind": 128, "children": [ - 3187 + 5270 ] }, { "title": "Variables", "kind": 32, "children": [ - 3188, - 3189, - 3190, - 3194 + 5271, + 5272, + 5273, + 5277 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", "line": 1, "character": 0 } ] }, { - "id": 3170, - "name": "\"sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive\"", + "id": 5253, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", "children": [ { - "id": 3171, + "id": 5254, "name": "StateService", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -63648,23 +65139,24 @@ ], "children": [ { - "id": 3172, + "id": 5255, "name": "constructor", "kind": 512, "kindString": "Constructor", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3175, + "id": 5258, "name": "new StateService", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 3176, + "id": 5259, "name": "states", "kind": 32768, "kindString": "Parameter", @@ -63687,7 +65179,7 @@ } }, { - "id": 3177, + "id": 5260, "name": "territories", "kind": 32768, "kindString": "Parameter", @@ -63713,26 +65205,27 @@ "type": { "type": "reference", "name": "StateService", - "id": 3171 + "id": 5254 } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", "line": 9, "character": 58 } ] }, { - "id": 3173, + "id": 5256, "name": "states", "kind": 1024, "kindString": "Property", "flags": { "isConstructorProperty": true, "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -63749,7 +65242,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", "line": 11, "character": 48 } @@ -63760,13 +65253,14 @@ } }, { - "id": 3174, + "id": 5257, "name": "territories", "kind": 1024, "kindString": "Property", "flags": { "isConstructorProperty": true, "isExported": true, + "isExternal": true, "isPublic": true }, "decorators": [ @@ -63783,7 +65277,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", "line": 12, "character": 48 } @@ -63794,23 +65288,24 @@ } }, { - "id": 3180, + "id": 5263, "name": "fetch", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3181, + "id": 5264, "name": "fetch", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 3182, + "id": 5265, "name": "val", "kind": 32768, "kindString": "Parameter", @@ -63821,7 +65316,7 @@ } }, { - "id": 3183, + "id": 5266, "name": "pageEnd", "kind": 32768, "kindString": "Parameter", @@ -63832,7 +65327,7 @@ } }, { - "id": 3184, + "id": 5267, "name": "serviceOptions", "kind": 32768, "kindString": "Parameter", @@ -63859,23 +65354,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", "line": 18, "character": 7 } ] }, { - "id": 3178, + "id": 5261, "name": "setFetchMethod", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 3179, + "id": 5262, "name": "setFetchMethod", "kind": 4096, "kindString": "Call signature", @@ -63888,7 +65384,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", "line": 14, "character": 16 } @@ -63900,29 +65396,29 @@ "title": "Constructors", "kind": 512, "children": [ - 3172 + 5255 ] }, { "title": "Properties", "kind": 1024, "children": [ - 3173, - 3174 + 5256, + 5257 ] }, { "title": "Methods", "kind": 2048, "children": [ - 3180, - 3178 + 5263, + 5261 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", "line": 9, "character": 25 } @@ -63931,17 +65427,18 @@ { "type": "reference", "name": "AutocompleteService", - "id": 234 + "id": 1946 } ] }, { - "id": 3185, + "id": 5268, "name": "StateServiceDirective", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -63957,7 +65454,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", "line": 50, "character": 34 } @@ -63969,36 +65466,38 @@ "title": "Classes", "kind": 128, "children": [ - 3171, - 3185 + 5254, + 5268 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", "line": 1, "character": 0 } ] }, { - "id": 3224, - "name": "\"sam-ui-elements/src/ui-kit/service-directives/index\"", + "id": 5307, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/service-directives/index\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/service-directives/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/service-directives/index.ts", "children": [ { - "id": 3225, + "id": 5308, "name": "ServiceDirectivesModule", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "decorators": [ { @@ -64014,7 +65513,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/index.ts", "line": 16, "character": 36 } @@ -64026,39 +65525,41 @@ "title": "Classes", "kind": 128, "children": [ - 3225 + 5308 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/service-directives/index.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/service-directives/index.ts", "line": 1, "character": 0 } ] }, { - "id": 579, - "name": "\"sam-ui-elements/src/ui-kit/type-check-helpers\"", + "id": 3001, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/type-check-helpers\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/type-check-helpers.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/type-check-helpers.ts", "children": [ { - "id": 586, + "id": 3008, "name": "isArray", "kind": 64, "kindString": "Function", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 587, + "id": 3009, "name": "isArray", "kind": 4096, "kindString": "Call signature", @@ -64068,7 +65569,7 @@ }, "parameters": [ { - "id": 588, + "id": 3010, "name": "obj", "kind": 32768, "kindString": "Parameter", @@ -64087,23 +65588,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/type-check-helpers.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/type-check-helpers.ts", "line": 18, "character": 23 } ] }, { - "id": 583, + "id": 3005, "name": "isObject", "kind": 64, "kindString": "Function", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 584, + "id": 3006, "name": "isObject", "kind": 4096, "kindString": "Call signature", @@ -64113,7 +65615,7 @@ }, "parameters": [ { - "id": 585, + "id": 3007, "name": "obj", "kind": 32768, "kindString": "Parameter", @@ -64132,23 +65634,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/type-check-helpers.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/type-check-helpers.ts", "line": 11, "character": 24 } ] }, { - "id": 580, + "id": 3002, "name": "isString", "kind": 64, "kindString": "Function", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 581, + "id": 3003, "name": "isString", "kind": 4096, "kindString": "Call signature", @@ -64158,7 +65661,7 @@ }, "parameters": [ { - "id": 582, + "id": 3004, "name": "obj", "kind": 32768, "kindString": "Parameter", @@ -64177,23 +65680,24 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/type-check-helpers.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/type-check-helpers.ts", "line": 4, "character": 24 } ] }, { - "id": 589, + "id": 3011, "name": "safeTypeOf", "kind": 64, "kindString": "Function", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 590, + "id": 3012, "name": "safeTypeOf", "kind": 4096, "kindString": "Call signature", @@ -64203,7 +65707,7 @@ }, "parameters": [ { - "id": 591, + "id": 3013, "name": "obj", "kind": 32768, "kindString": "Parameter", @@ -64222,7 +65726,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/type-check-helpers.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/type-check-helpers.ts", "line": 26, "character": 26 } @@ -64234,54 +65738,57 @@ "title": "Functions", "kind": 64, "children": [ - 586, - 583, - 580, - 589 + 3008, + 3005, + 3002, + 3011 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/type-check-helpers.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/type-check-helpers.ts", "line": 1, "character": 0 } ] }, { - "id": 151, - "name": "\"sam-ui-elements/src/ui-kit/types\"", + "id": 25, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/types\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/types.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/types.ts", "children": [ { - "id": 225, + "id": 99, "name": "AlertType", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 228, + "id": 102, "name": "description", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the alert body text" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 286, "character": 13 } @@ -64292,12 +65799,13 @@ } }, { - "id": 230, + "id": 104, "name": "mustDismiss", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -64305,7 +65813,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 295, "character": 13 } @@ -64316,19 +65824,20 @@ } }, { - "id": 229, + "id": 103, "name": "timer", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets a timeout (in milliseconds) for the alert to dismiss itself. 0 is\ninfinite." }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 291, "character": 7 } @@ -64339,19 +65848,20 @@ } }, { - "id": 226, + "id": 100, "name": "title", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the alert title" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 278, "character": 7 } @@ -64362,19 +65872,20 @@ } }, { - "id": 227, + "id": 101, "name": "type", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the alert type" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 282, "character": 6 } @@ -64390,38 +65901,40 @@ "title": "Properties", "kind": 1024, "children": [ - 228, - 230, - 229, - 226, - 227 + 102, + 104, + 103, + 100, + 101 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 274, "character": 26 } ] }, { - "id": 172, + "id": 46, "name": "AutocompleteConfig", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 173, + "id": 47, "name": "addOnIconClass", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -64429,7 +65942,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 86, "character": 16 } @@ -64440,12 +65953,13 @@ } }, { - "id": 174, + "id": 48, "name": "allowAny", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -64453,7 +65967,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 90, "character": 10 } @@ -64464,12 +65978,13 @@ } }, { - "id": 178, + "id": 52, "name": "categoryProperty", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -64477,7 +65992,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 106, "character": 18 } @@ -64488,12 +66003,13 @@ } }, { - "id": 179, + "id": 53, "name": "isCategorySelectable", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -64501,7 +66017,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 110, "character": 22 } @@ -64512,12 +66028,13 @@ } }, { - "id": 175, + "id": 49, "name": "keyValueConfig", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -64525,7 +66042,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 94, "character": 16 } @@ -64533,16 +66050,17 @@ "type": { "type": "reference", "name": "AutocompleteKeyValueConfig", - "id": 180 + "id": 54 } }, { - "id": 176, + "id": 50, "name": "placeholder", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -64550,7 +66068,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 98, "character": 13 } @@ -64561,12 +66079,13 @@ } }, { - "id": 177, + "id": 51, "name": "serviceOptions", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -64574,7 +66093,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 102, "character": 16 } @@ -64590,40 +66109,42 @@ "title": "Properties", "kind": 1024, "children": [ - 173, - 174, - 178, - 179, - 175, - 176, - 177 + 47, + 48, + 52, + 53, + 49, + 50, + 51 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 82, "character": 35 } ] }, { - "id": 157, + "id": 31, "name": "AutocompleteDropdownButton", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 159, + "id": 33, "name": "class", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -64631,7 +66152,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 31, "character": 7 } @@ -64642,12 +66163,13 @@ } }, { - "id": 160, + "id": 34, "name": "icon", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -64655,7 +66177,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 35, "character": 6 } @@ -64663,16 +66185,17 @@ "type": { "type": "reference", "name": "AutocompleteDropdownButtonIcon", - "id": 161 + "id": 35 } }, { - "id": 158, + "id": 32, "name": "label", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -64680,7 +66203,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 27, "character": 7 } @@ -64696,43 +66219,45 @@ "title": "Properties", "kind": 1024, "children": [ - 159, - 160, - 158 + 33, + 34, + 32 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 23, "character": 43 } ] }, { - "id": 161, + "id": 35, "name": "AutocompleteDropdownButtonIcon", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 163, + "id": 37, "name": "altText", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "String for alt icon text for screen readers" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 46, "character": 9 } @@ -64743,19 +66268,20 @@ } }, { - "id": 162, + "id": 36, "name": "class", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "String for icon clas (font-awesome, glphicon, etc)" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 42, "character": 7 } @@ -64771,42 +66297,44 @@ "title": "Properties", "kind": 1024, "children": [ - 163, - 162 + 37, + 36 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 38, "character": 47 } ] }, { - "id": 180, + "id": 54, "name": "AutocompleteKeyValueConfig", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 181, + "id": 55, "name": "keyProperty", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The lookup value for the option" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 117, "character": 13 } @@ -64817,19 +66345,20 @@ } }, { - "id": 182, + "id": 56, "name": "valueProperty", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The human-readable value of the option" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 121, "character": 15 } @@ -64845,42 +66374,44 @@ "title": "Properties", "kind": 1024, "children": [ - 181, - 182 + 55, + 56 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 113, "character": 43 } ] }, { - "id": 183, + "id": 57, "name": "DownloadPackageType", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 187, + "id": 61, "name": "access", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the packages access property" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 142, "character": 8 } @@ -64888,23 +66419,24 @@ "type": { "type": "reference", "name": "AccessType", - "id": 231 + "id": 105 } }, { - "id": 190, + "id": 64, "name": "accordionState", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the initial state of package accordion" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 154, "character": 16 } @@ -64912,23 +66444,24 @@ "type": { "type": "reference", "name": "ExpansionType", - "id": 232 + "id": 106 } }, { - "id": 191, + "id": 65, "name": "downloadUrl", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the download url for the whole package" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 158, "character": 13 } @@ -64939,19 +66472,20 @@ } }, { - "id": 185, + "id": 59, "name": "name", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the package name" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 134, "character": 6 } @@ -64962,19 +66496,20 @@ } }, { - "id": 184, + "id": 58, "name": "packageId", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets a package id value" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 130, "character": 11 } @@ -64985,19 +66520,20 @@ } }, { - "id": 188, + "id": 62, "name": "postedDate", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the posted date property" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 146, "character": 12 } @@ -65008,19 +66544,20 @@ } }, { - "id": 189, + "id": 63, "name": "resources", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the resources in the package" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 150, "character": 11 } @@ -65029,23 +66566,24 @@ "type": "reference", "isArray": true, "name": "DownloadResourceType", - "id": 192 + "id": 66 } }, { - "id": 186, + "id": 60, "name": "type", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the package type" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 138, "character": 6 } @@ -65061,48 +66599,50 @@ "title": "Properties", "kind": 1024, "children": [ - 187, - 190, - 191, - 185, - 184, - 188, - 189, - 186 + 61, + 64, + 65, + 59, + 58, + 62, + 63, + 60 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 126, "character": 36 } ] }, { - "id": 192, + "id": 66, "name": "DownloadResourceType", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 195, + "id": 69, "name": "description", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the resource description" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 172, "character": 13 } @@ -65113,19 +66653,20 @@ } }, { - "id": 197, + "id": 71, "name": "downloadUrl", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the resource download url" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 180, "character": 13 } @@ -65136,19 +66677,20 @@ } }, { - "id": 194, + "id": 68, "name": "name", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the resource name" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 168, "character": 6 } @@ -65159,19 +66701,20 @@ } }, { - "id": 193, + "id": 67, "name": "resourceId", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets a resource id value" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 164, "character": 12 } @@ -65182,19 +66725,20 @@ } }, { - "id": 196, + "id": 70, "name": "size", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the resource filesize" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 176, "character": 6 } @@ -65205,19 +66749,20 @@ } }, { - "id": 198, + "id": 72, "name": "typeInfo", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the resource type information" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 184, "character": 10 } @@ -65225,7 +66770,7 @@ "type": { "type": "reference", "name": "DownloadResourceTypeInfoType", - "id": 199 + "id": 73 } } ], @@ -65234,46 +66779,48 @@ "title": "Properties", "kind": 1024, "children": [ - 195, - 197, - 194, - 193, - 196, - 198 + 69, + 71, + 68, + 67, + 70, + 72 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 160, "character": 37 } ] }, { - "id": 199, + "id": 73, "name": "DownloadResourceTypeInfoType", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 201, + "id": 75, "name": "iconClass", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the font awesome icon to use for the resource" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 194, "character": 11 } @@ -65284,19 +66831,20 @@ } }, { - "id": 200, + "id": 74, "name": "name", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the resource type name" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 190, "character": 6 } @@ -65312,35 +66860,37 @@ "title": "Properties", "kind": 1024, "children": [ - 201, - 200 + 75, + 74 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 186, "character": 45 } ] }, { - "id": 164, + "id": 38, "name": "HistoryNodeType", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 171, + "id": 45, "name": "ariaLabel", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -65348,7 +66898,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 77, "character": 11 } @@ -65359,19 +66909,20 @@ } }, { - "id": 166, + "id": 40, "name": "date", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Date value for node" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 57, "character": 6 } @@ -65382,12 +66933,13 @@ } }, { - "id": 170, + "id": 44, "name": "description", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -65395,7 +66947,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 73, "character": 13 } @@ -65406,19 +66958,20 @@ } }, { - "id": 165, + "id": 39, "name": "id", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Identifier for node" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 53, "character": 4 } @@ -65429,12 +66982,13 @@ } }, { - "id": 168, + "id": 42, "name": "queryParams", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -65442,7 +66996,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 65, "character": 13 } @@ -65453,12 +67007,13 @@ } }, { - "id": 169, + "id": 43, "name": "title", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -65466,7 +67021,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 69, "character": 7 } @@ -65477,12 +67032,13 @@ } }, { - "id": 167, + "id": 41, "name": "url", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -65490,7 +67046,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 61, "character": 5 } @@ -65506,44 +67062,46 @@ "title": "Properties", "kind": 1024, "children": [ - 171, - 166, - 170, - 165, - 168, - 169, - 167 + 45, + 40, + 44, + 39, + 42, + 43, + 41 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 49, "character": 32 } ] }, { - "id": 215, + "id": 89, "name": "IBreadcrumb", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 218, + "id": 92, "name": "breadcrumb", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 251, "character": 12 } @@ -65554,17 +67112,18 @@ } }, { - "id": 219, + "id": 93, "name": "queryParams", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 252, "character": 13 } @@ -65575,17 +67134,18 @@ } }, { - "id": 216, + "id": 90, "name": "url", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 249, "character": 5 } @@ -65596,17 +67156,18 @@ } }, { - "id": 217, + "id": 91, "name": "urlmock", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 250, "character": 9 } @@ -65622,44 +67183,46 @@ "title": "Properties", "kind": 1024, "children": [ - 218, - 219, - 216, - 217 + 92, + 93, + 90, + 91 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 248, "character": 28 } ] }, { - "id": 220, + "id": 94, "name": "NameEntryType", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 221, + "id": 95, "name": "firstName", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the first name field" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 259, "character": 11 } @@ -65670,19 +67233,20 @@ } }, { - "id": 223, + "id": 97, "name": "lastName", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the last name field" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 267, "character": 10 } @@ -65693,19 +67257,20 @@ } }, { - "id": 222, + "id": 96, "name": "middleName", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the middle name field" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 263, "character": 12 } @@ -65716,19 +67281,20 @@ } }, { - "id": 224, + "id": 98, "name": "suffix", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "Sets the suffix field" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 271, "character": 8 } @@ -65744,37 +67310,39 @@ "title": "Properties", "kind": 1024, "children": [ - 221, - 223, - 222, - 224 + 95, + 97, + 96, + 98 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 255, "character": 30 } ] }, { - "id": 152, + "id": 26, "name": "OptionsType", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 156, + "id": 30, "name": "disabled", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -65782,7 +67350,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 20, "character": 10 } @@ -65793,19 +67361,20 @@ } }, { - "id": 154, + "id": 28, "name": "label", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The visible text for the input or option" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 12, "character": 7 } @@ -65816,19 +67385,20 @@ } }, { - "id": 155, + "id": 29, "name": "name", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The machine readable description of the input" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 16, "character": 6 } @@ -65839,19 +67409,20 @@ } }, { - "id": 153, + "id": 27, "name": "value", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "comment": { "shortText": "The model value" }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 8, "character": 7 } @@ -65876,37 +67447,39 @@ "title": "Properties", "kind": 1024, "children": [ - 156, - 154, - 155, - 153 + 30, + 28, + 29, + 27 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 4, "character": 28 } ] }, { - "id": 202, + "id": 76, "name": "PointOfContactType", "kind": 256, "kindString": "Interface", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 205, + "id": 79, "name": "address", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -65914,7 +67487,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 209, "character": 9 } @@ -65925,12 +67498,13 @@ } }, { - "id": 206, + "id": 80, "name": "address2", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -65938,7 +67512,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 213, "character": 10 } @@ -65949,12 +67523,13 @@ } }, { - "id": 207, + "id": 81, "name": "city", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -65962,7 +67537,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 217, "character": 6 } @@ -65973,12 +67548,13 @@ } }, { - "id": 210, + "id": 84, "name": "email", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -65986,7 +67562,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 229, "character": 7 } @@ -65997,12 +67573,13 @@ } }, { - "id": 213, + "id": 87, "name": "fax", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -66010,7 +67587,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 241, "character": 5 } @@ -66021,12 +67598,13 @@ } }, { - "id": 203, + "id": 77, "name": "fullName", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -66034,7 +67612,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 201, "character": 10 } @@ -66045,12 +67623,13 @@ } }, { - "id": 211, + "id": 85, "name": "phone", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -66058,7 +67637,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 233, "character": 7 } @@ -66069,12 +67648,13 @@ } }, { - "id": 212, + "id": 86, "name": "phone2", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -66082,7 +67662,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 237, "character": 8 } @@ -66093,12 +67673,13 @@ } }, { - "id": 208, + "id": 82, "name": "state", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -66106,7 +67687,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 221, "character": 7 } @@ -66117,12 +67698,13 @@ } }, { - "id": 204, + "id": 78, "name": "title", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -66130,7 +67712,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 205, "character": 7 } @@ -66141,12 +67723,13 @@ } }, { - "id": 214, + "id": 88, "name": "website", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -66154,7 +67737,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 245, "character": 9 } @@ -66165,12 +67748,13 @@ } }, { - "id": 209, + "id": 83, "name": "zip", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, + "isExternal": true, "isOptional": true }, "comment": { @@ -66178,7 +67762,7 @@ }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 225, "character": 5 } @@ -66194,40 +67778,41 @@ "title": "Properties", "kind": 1024, "children": [ - 205, - 206, - 207, - 210, - 213, - 203, - 211, - 212, - 208, - 204, - 214, - 209 + 79, + 80, + 81, + 84, + 87, + 77, + 85, + 86, + 82, + 78, + 88, + 83 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 197, "character": 35 } ] }, { - "id": 231, + "id": 105, "name": "AccessType", "kind": 4194304, "kindString": "Type alias", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 124, "character": 22 } @@ -66247,16 +67832,17 @@ } }, { - "id": 232, + "id": 106, "name": "ExpansionType", "kind": 4194304, "kindString": "Type alias", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 125, "character": 25 } @@ -66281,59 +67867,61 @@ "title": "Interfaces", "kind": 256, "children": [ - 225, - 172, - 157, - 161, - 180, - 183, - 192, - 199, - 164, - 215, - 220, - 152, - 202 + 99, + 46, + 31, + 35, + 54, + 57, + 66, + 73, + 38, + 89, + 94, + 26, + 76 ] }, { "title": "Type aliases", "kind": 4194304, "children": [ - 231, - 232 + 105, + 106 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/types.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/types.ts", "line": 1, "character": 0 } ] }, { - "id": 279, - "name": "\"sam-ui-elements/src/ui-kit/utilities/are-equal/are-equal\"", + "id": 2719, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/utilities/are-equal/are-equal\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/utilities/are-equal/are-equal.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/utilities/are-equal/are-equal.ts", "children": [ { - "id": 280, + "id": 2720, "name": "areEqual", "kind": 64, "kindString": "Function", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 281, + "id": 2721, "name": "areEqual", "kind": 4096, "kindString": "Call signature", @@ -66344,7 +67932,7 @@ }, "parameters": [ { - "id": 282, + "id": 2722, "name": "item1", "kind": 32768, "kindString": "Parameter", @@ -66358,7 +67946,7 @@ } }, { - "id": 283, + "id": 2723, "name": "item2", "kind": 32768, "kindString": "Parameter", @@ -66380,7 +67968,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/are-equal/are-equal.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/are-equal/are-equal.ts", "line": 9, "character": 24 } @@ -66392,57 +67980,60 @@ "title": "Functions", "kind": 64, "children": [ - 280 + 2720 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/are-equal/are-equal.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/are-equal/are-equal.ts", "line": 1, "character": 0 } ] }, { - "id": 243, - "name": "\"sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper\"", + "id": 2683, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", "children": [ { - "id": 244, + "id": 2684, "name": "KeyHelper", "kind": 128, "kindString": "Class", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, "children": [ { - "id": 255, + "id": 2695, "name": "_isArrowDown", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 256, + "id": 2696, "name": "_isArrowDown", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 257, + "id": 2697, "name": "e", "kind": 32768, "kindString": "Parameter", @@ -66470,32 +68061,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", "line": 57, "character": 29 } ] }, { - "id": 258, + "id": 2698, "name": "_isArrowLeft", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 259, + "id": 2699, "name": "_isArrowLeft", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 260, + "id": 2700, "name": "e", "kind": 32768, "kindString": "Parameter", @@ -66523,32 +68115,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", "line": 70, "character": 29 } ] }, { - "id": 261, + "id": 2701, "name": "_isArrowRight", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 262, + "id": 2702, "name": "_isArrowRight", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 263, + "id": 2703, "name": "e", "kind": 32768, "kindString": "Parameter", @@ -66576,32 +68169,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", "line": 83, "character": 30 } ] }, { - "id": 252, + "id": 2692, "name": "_isArrowUp", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 253, + "id": 2693, "name": "_isArrowUp", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 254, + "id": 2694, "name": "e", "kind": 32768, "kindString": "Parameter", @@ -66629,32 +68223,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", "line": 44, "character": 27 } ] }, { - "id": 276, + "id": 2716, "name": "_isBackspace", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 277, + "id": 2717, "name": "_isBackspace", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 278, + "id": 2718, "name": "e", "kind": 32768, "kindString": "Parameter", @@ -66682,32 +68277,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", "line": 147, "character": 29 } ] }, { - "id": 249, + "id": 2689, "name": "_isEnter", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 250, + "id": 2690, "name": "_isEnter", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 251, + "id": 2691, "name": "e", "kind": 32768, "kindString": "Parameter", @@ -66735,32 +68331,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", "line": 31, "character": 25 } ] }, { - "id": 267, + "id": 2707, "name": "_isEscape", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 268, + "id": 2708, "name": "_isEscape", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 269, + "id": 2709, "name": "e", "kind": 32768, "kindString": "Parameter", @@ -66788,32 +68385,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", "line": 108, "character": 26 } ] }, { - "id": 273, + "id": 2713, "name": "_isShift", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 274, + "id": 2714, "name": "_isShift", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 275, + "id": 2715, "name": "e", "kind": 32768, "kindString": "Parameter", @@ -66841,32 +68439,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", "line": 134, "character": 25 } ] }, { - "id": 270, + "id": 2710, "name": "_isSpace", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 271, + "id": 2711, "name": "_isSpace", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 272, + "id": 2712, "name": "e", "kind": 32768, "kindString": "Parameter", @@ -66894,32 +68493,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", "line": 121, "character": 25 } ] }, { - "id": 264, + "id": 2704, "name": "_isTab", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isPrivate": true, - "isExported": true + "isExported": true, + "isExternal": true }, "signatures": [ { - "id": 265, + "id": 2705, "name": "_isTab", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 266, + "id": 2706, "name": "e", "kind": 32768, "kindString": "Parameter", @@ -66947,32 +68547,33 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", "line": 96, "character": 23 } ] }, { - "id": 245, + "id": 2685, "name": "is", "kind": 2048, "kindString": "Method", "flags": { "isStatic": true, "isExported": true, + "isExternal": true, "isPublic": true }, "signatures": [ { - "id": 246, + "id": 2686, "name": "is", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 247, + "id": 2687, "name": "validKeyParam", "kind": 32768, "kindString": "Parameter", @@ -66983,7 +68584,7 @@ } }, { - "id": 248, + "id": 2688, "name": "event", "kind": 32768, "kindString": "Parameter", @@ -67011,7 +68612,7 @@ ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", "line": 3, "character": 18 } @@ -67023,23 +68624,23 @@ "title": "Methods", "kind": 2048, "children": [ - 255, - 258, - 261, - 252, - 276, - 249, - 267, - 273, - 270, - 264, - 245 + 2695, + 2698, + 2701, + 2692, + 2716, + 2689, + 2707, + 2713, + 2710, + 2704, + 2685 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", "line": 1, "character": 22 } @@ -67051,3005 +68652,4033 @@ "title": "Classes", "kind": 128, "children": [ - 244 + 2684 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", "line": 1, "character": 0 } ] }, { - "id": 3237, - "name": "\"sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks\"", + "id": 828, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component\"", "kind": 1, "kindString": "External module", "flags": { - "isExported": true + "isExported": true, + "isExternal": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", "children": [ { - "id": 3238, - "name": "ChromeFirefoxMocks", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, + "id": 829, + "name": "FieldsetWrapper", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true, + "isExternal": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'sam-fieldset-wrapper',\n templateUrl: 'fieldset-wrapper.template.html',\n}" + } + } + ], "children": [ { - "id": 3302, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 840, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true, + "isExternal": true + }, + "signatures": [ { - "id": 3303, - "name": "charCode", - "kind": 32, - "kindString": "Variable", + "id": 842, + "name": "new FieldsetWrapper", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 75, - "character": 12 + "id": 843, + "name": "cdr", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "ChangeDetectorRef" + } } ], "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "type": "reference", + "name": "FieldsetWrapper", + "id": 829 + } + } + ], + "sources": [ { - "id": 3304, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 76, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 36, + "character": 28 + } + ] + }, + { + "id": 841, + "name": "cdr", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true, + "isExternal": true + }, + "sources": [ { - "id": 3305, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 77, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 38, + "character": 25 + } + ], + "type": { + "type": "reference", + "name": "ChangeDetectorRef" + } + }, + { + "id": 839, + "name": "checkMore", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true, + "isExternal": true + }, + "sources": [ { - "id": 3306, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 78, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 36, + "character": 19 + } + ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "false" + }, + { + "id": 832, + "name": "errorMessage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "comment": { + "shortText": "set the error message" + }, + "decorators": [ { - "id": 3307, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 79, - "character": 17 - } - ], + "name": "Input", "type": { - "type": "instrinct", - "name": "undefined" + "type": "reference", + "name": "Input" }, - "defaultValue": " undefined" - }, + "arguments": {} + } + ], + "sources": [ { - "id": 3308, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 80, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 26, + "character": 30 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + } + }, + { + "id": 831, + "name": "hint", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "comment": { + "shortText": "sets the hint text" + }, + "decorators": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3303, - 3304, - 3305, - 3306, - 3307, - 3308 - ] + "name": "Input", + "type": { + "type": "reference", + "name": "Input" + }, + "arguments": {} } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 74, - "character": 11 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 22, + "character": 22 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" } }, { - "id": 3253, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 834, + "name": "hintContainer", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "decorators": [ { - "id": 3254, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 19, - "character": 12 - } - ], + "name": "ViewChild", "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "ViewChild" }, - "defaultValue": "0" - }, + "arguments": { + "selector": "'hintContainer'" + } + } + ], + "sources": [ { - "id": 3255, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 20, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 31, + "character": 50 + } + ], + "type": { + "type": "instrinct", + "name": "any" + } + }, + { + "id": 830, + "name": "label", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "comment": { + "shortText": "sets the label text" + }, + "decorators": [ { - "id": 3256, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 21, - "character": 7 - } - ], + "name": "Input", "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Input" }, - "defaultValue": "\"ArrowDown\"" - }, + "arguments": {} + } + ], + "sources": [ { - "id": 3257, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 22, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 18, + "character": 23 + } + ], + "type": { + "type": "instrinct", + "name": "string" + } + }, + { + "id": 838, + "name": "lineLimit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true, + "isExternal": true + }, + "sources": [ { - "id": 3258, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 23, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 35, + "character": 19 + } + ], + "type": { + "type": "instrinct", + "name": "number" + }, + "defaultValue": "2" + }, + { + "id": 837, + "name": "lineSize", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true, + "isExternal": true + }, + "sources": [ { - "id": 3259, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 24, - "character": 9 - } - ], + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 34, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "number" + } + }, + { + "id": 833, + "name": "required", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "comment": { + "shortText": "toggles the required text" + }, + "decorators": [ + { + "name": "Input", "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "Input" }, - "defaultValue": "40" + "arguments": {} } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3254, - 3255, - 3256, - 3257, - 3258, - 3259 - ] + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 30, + "character": 26 } ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "false" + }, + { + "id": 835, + "name": "showToggle", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 18, - "character": 6 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 32, + "character": 19 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "boolean" + }, + "defaultValue": "false" }, { - "id": 3239, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 836, + "name": "toggleOpen", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true, + "isExternal": true + }, + "sources": [ { - "id": 3240, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 3, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 33, + "character": 20 + } + ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "false" + }, + { + "id": 851, + "name": "calcToggle", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ { - "id": 3241, - "name": "code", - "kind": 32, - "kindString": "Variable", + "id": 852, + "name": "calcToggle", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 4, - "character": 8 - } - ], "type": { "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3242, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 5, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 64, + "character": 19 + } + ] + }, + { + "id": 859, + "name": "calculateNumberOfLines", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ { - "id": 3243, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 860, + "name": "calculateNumberOfLines", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 6, - "character": 11 + "id": 861, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", "name": "number" - }, - "defaultValue": "13" - }, + } + } + ], + "sources": [ { - "id": 3244, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 87, + "character": 31 + } + ] + }, + { + "id": 862, + "name": "clearError", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ + { + "id": 863, + "name": "clearError", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 7, - "character": 17 - } - ], "type": { "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3245, - "name": "which", - "kind": 32, - "kindString": "Variable", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 101, + "character": 19 + } + ] + }, + { + "id": 864, + "name": "formatErrors", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ + { + "id": 865, + "name": "formatErrors", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 8, - "character": 9 + "id": 866, + "name": "control", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "AbstractControl" + } } ], "type": { "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3240, - 3241, - 3242, - 3243, - 3244, - 3245 - ] + "name": "void" + } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 2, - "character": 7 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 105, + "character": 21 } - ], - "type": { - "type": "instrinct", - "name": "object" - } + ] }, { - "id": 3281, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 867, + "name": "formatInvalidErrors", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPrivate": true, + "isExported": true, + "isExternal": true + }, + "signatures": [ { - "id": 3282, - "name": "charCode", - "kind": 32, - "kindString": "Variable", + "id": 868, + "name": "formatInvalidErrors", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 51, - "character": 12 + "id": 869, + "name": "control", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3283, - "name": "code", - "kind": 32, - "kindString": "Variable", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 121, + "character": 29 + } + ] + }, + { + "id": 849, + "name": "ngAfterViewChecked", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ + { + "id": 850, + "name": "ngAfterViewChecked", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 52, - "character": 8 - } - ], "type": { "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Escape\"" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3284, - "name": "key", - "kind": 32, - "kindString": "Variable", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 56, + "character": 27 + } + ] + }, + { + "id": 847, + "name": "ngAfterViewInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ + { + "id": 848, + "name": "ngAfterViewInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 53, - "character": 7 - } - ], "type": { "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Escape\"" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3285, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 52, + "character": 24 + } + ] + }, + { + "id": 844, + "name": "ngOnChanges", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ + { + "id": 845, + "name": "ngOnChanges", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 54, - "character": 11 + "id": 846, + "name": "c", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3286, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 55, - "character": 17 - } - ], + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 40, + "character": 20 + } + ] + }, + { + "id": 853, + "name": "onResize", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "decorators": [ + { + "name": "HostListener", "type": { - "type": "instrinct", - "name": "undefined" + "type": "reference", + "name": "HostListener" }, - "defaultValue": " undefined" - }, + "arguments": { + "eventName": "'window:resize'", + "args": "['$event']" + } + } + ], + "signatures": [ { - "id": 3287, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 854, + "name": "onResize", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 56, - "character": 9 + "id": 855, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3282, - 3283, - 3284, - 3285, - 3286, - 3287 - ] + "name": "void" + } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 50, - "character": 5 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 75, + "character": 17 } - ], - "type": { - "type": "instrinct", - "name": "object" - } + ] }, { - "id": 3260, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 870, + "name": "setInvalidError", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPrivate": true, + "isExported": true, + "isExternal": true + }, + "signatures": [ { - "id": 3261, - "name": "charCode", - "kind": 32, - "kindString": "Variable", + "id": 871, + "name": "setInvalidError", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 27, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3262, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 872, + "name": "error", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + }, { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 28, - "character": 8 + "id": 873, + "name": "errorObject", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowLeft\"" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3263, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 29, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowLeft\"" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 140, + "character": 25 + } + ] + }, + { + "id": 856, + "name": "toggleHint", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ { - "id": 3264, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 857, + "name": "toggleHint", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 30, - "character": 11 + "id": 858, + "name": "status", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3265, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 31, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 83, + "character": 19 + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 840 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 841, + 839, + 832, + 831, + 834, + 830, + 838, + 837, + 833, + 835, + 836 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 851, + 859, + 862, + 864, + 867, + 849, + 847, + 844, + 853, + 870, + 856 + ] + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 14, + "character": 28 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 829 + ] + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 874, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/index\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true, + "isExternal": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/index.ts", + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/index.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 875, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/wrappers/index\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true, + "isExternal": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/wrappers/index.ts", + "children": [ + { + "id": 876, + "name": "SamWrapperModule", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true, + "isExternal": true + }, + "decorators": [ + { + "name": "NgModule", + "type": { + "type": "reference", + "name": "NgModule" + }, + "arguments": { + "obj": "{\n imports: [ CommonModule ],\n declarations: [ FieldsetWrapper, LabelWrapper ],\n exports: [ FieldsetWrapper, LabelWrapper ]\n}" + } + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/index.ts", + "line": 12, + "character": 29 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 876 + ] + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/index.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 755, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/index\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true, + "isExternal": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/index.ts", + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/index.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 709, + "name": "\"node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true, + "isExternal": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "children": [ + { + "id": 710, + "name": "LabelWrapper", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true, + "isExternal": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'sam-label-wrapper',\n templateUrl: 'label-wrapper.template.html',\n}" + } + } + ], + "children": [ + { + "id": 724, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true, + "isExternal": true + }, + "signatures": [ { - "id": 3266, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 726, + "name": "new LabelWrapper", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 32, - "character": 9 + "id": 727, + "name": "cdr", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "ChangeDetectorRef" + } } ], "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" + "type": "reference", + "name": "LabelWrapper", + "id": 710 + } } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3261, - 3262, - 3263, - 3264, - 3265, - 3266 - ] + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 47, + "character": 28 } - ], + ] + }, + { + "id": 725, + "name": "cdr", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true, + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 26, - "character": 6 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 49, + "character": 25 } ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "ChangeDetectorRef" } }, { - "id": 3267, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3268, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 35, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3269, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 36, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowRight\"" - }, - { - "id": 3270, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 37, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowRight\"" - }, + "id": 723, + "name": "checkMore", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true, + "isExternal": true + }, + "sources": [ { - "id": 3271, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 38, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 47, + "character": 19 + } + ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "false" + }, + { + "id": 716, + "name": "errorMessage", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "comment": { + "shortText": "set the error message" + }, + "decorators": [ { - "id": 3272, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 39, - "character": 17 - } - ], + "name": "Input", "type": { - "type": "instrinct", - "name": "undefined" + "type": "reference", + "name": "Input" }, - "defaultValue": " undefined" - }, + "arguments": {} + } + ], + "sources": [ { - "id": 3273, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 40, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 39, + "character": 30 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + } + }, + { + "id": 713, + "name": "hint", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "comment": { + "shortText": "sets the hint text" + }, + "decorators": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3268, - 3269, - 3270, - 3271, - 3272, - 3273 - ] + "name": "Input", + "type": { + "type": "reference", + "name": "Input" + }, + "arguments": {} } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 34, - "character": 7 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 27, + "character": 22 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" } }, { - "id": 3295, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 718, + "name": "hintContainer", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "decorators": [ { - "id": 3296, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 67, - "character": 12 - } - ], + "name": "ViewChild", "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "ViewChild" }, - "defaultValue": "0" - }, + "arguments": { + "selector": "'hintContainer'" + } + } + ], + "sources": [ { - "id": 3297, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 68, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ShiftLeft\"" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 42, + "character": 50 + } + ], + "type": { + "type": "instrinct", + "name": "any" + } + }, + { + "id": 711, + "name": "label", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "comment": { + "shortText": "sets the label text" + }, + "decorators": [ { - "id": 3298, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 69, - "character": 7 - } - ], + "name": "Input", "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Input" }, - "defaultValue": "\"Shift\"" - }, + "arguments": {} + } + ], + "sources": [ { - "id": 3299, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 70, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 19, + "character": 23 + } + ], + "type": { + "type": "instrinct", + "name": "string" + } + }, + { + "id": 717, + "name": "labelDiv", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "decorators": [ { - "id": 3300, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 71, - "character": 17 - } - ], + "name": "ViewChild", "type": { - "type": "instrinct", - "name": "undefined" + "type": "reference", + "name": "ViewChild" }, - "defaultValue": " undefined" - }, + "arguments": { + "selector": "'labelDiv'" + } + } + ], + "sources": [ { - "id": 3301, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 72, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 41, + "character": 40 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "any" + } + }, + { + "id": 722, + "name": "lineLimit", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true, + "isExternal": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3296, - 3297, - 3298, - 3299, - 3300, - 3301 - ] + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 46, + "character": 19 } ], + "type": { + "type": "instrinct", + "name": "number" + }, + "defaultValue": "2" + }, + { + "id": 721, + "name": "lineSize", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true, + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 66, - "character": 7 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 45, + "character": 18 } ], "type": { "type": "instrinct", - "name": "object" + "name": "number" } }, { - "id": 3288, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 712, + "name": "name", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "comment": { + "shortText": "sets the name attribute value" + }, + "decorators": [ { - "id": 3289, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 59, - "character": 12 - } - ], + "name": "Input", "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "Input" }, - "defaultValue": "0" - }, + "arguments": {} + } + ], + "sources": [ { - "id": 3290, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 60, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Space\"" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 23, + "character": 22 + } + ], + "type": { + "type": "instrinct", + "name": "string" + } + }, + { + "id": 714, + "name": "required", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "comment": { + "shortText": "deprecated, toggles the required text" + }, + "decorators": [ { - "id": 3291, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 61, - "character": 7 - } - ], + "name": "Input", "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Input" }, - "defaultValue": "\" \"" - }, + "arguments": {} + } + ], + "sources": [ { - "id": 3292, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 62, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 31, + "character": 26 + } + ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "false" + }, + { + "id": 715, + "name": "requiredFlag", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "comment": { + "shortText": "toggles the required text" + }, + "decorators": [ { - "id": 3293, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 63, - "character": 17 - } - ], + "name": "Input", "type": { - "type": "instrinct", - "name": "undefined" + "type": "reference", + "name": "Input" }, - "defaultValue": " undefined" - }, + "arguments": {} + } + ], + "sources": [ { - "id": 3294, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 64, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 35, + "character": 30 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "false" + }, + { + "id": 719, + "name": "showToggle", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3289, - 3290, - 3291, - 3292, - 3293, - 3294 - ] + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 43, + "character": 19 } ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "false" + }, + { + "id": 720, + "name": "toggleOpen", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true, + "isExternal": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 58, - "character": 7 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 44, + "character": 20 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "boolean" + }, + "defaultValue": "false" }, { - "id": 3274, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 735, + "name": "calcToggle", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ { - "id": 3275, - "name": "charCode", - "kind": 32, - "kindString": "Variable", + "id": 736, + "name": "calcToggle", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 43, - "character": 12 - } - ], "type": { "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3276, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 44, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 75, + "character": 19 + } + ] + }, + { + "id": 743, + "name": "calculateNumberOfLines", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ { - "id": 3277, - "name": "key", - "kind": 32, - "kindString": "Variable", + "id": 744, + "name": "calculateNumberOfLines", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 45, - "character": 7 + "id": 745, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, + "name": "number" + } + } + ], + "sources": [ { - "id": 3278, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 46, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - }, + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 98, + "character": 31 + } + ] + }, + { + "id": 749, + "name": "clearError", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ { - "id": 3279, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", + "id": 750, + "name": "clearError", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 47, - "character": 17 - } - ], "type": { "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3280, - "name": "which", - "kind": 32, - "kindString": "Variable", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 146, + "character": 19 + } + ] + }, + { + "id": 746, + "name": "formatErrors", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ + { + "id": 747, + "name": "formatErrors", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 48, - "character": 9 + "id": 748, + "name": "control", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "AbstractControl" + } } ], "type": { "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" + "name": "void" + } } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3275, - 3276, - 3277, - 3278, - 3279, - 3280 - ] + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 112, + "character": 21 + } + ] + }, + { + "id": 733, + "name": "ngAfterViewChecked", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ + { + "id": 734, + "name": "ngAfterViewChecked", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 42, - "character": 5 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 67, + "character": 27 } - ], - "type": { - "type": "instrinct", - "name": "object" - } + ] }, { - "id": 3246, - "name": "up", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 731, + "name": "ngAfterViewInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ { - "id": 3247, - "name": "charCode", - "kind": 32, - "kindString": "Variable", + "id": 732, + "name": "ngAfterViewInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 11, - "character": 12 - } - ], "type": { "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3248, - "name": "code", - "kind": 32, - "kindString": "Variable", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 63, + "character": 24 + } + ] + }, + { + "id": 728, + "name": "ngOnChanges", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ + { + "id": 729, + "name": "ngOnChanges", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 12, - "character": 8 + "id": 730, + "name": "c", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowUp\"" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3249, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 13, - "character": 7 - } - ], + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 51, + "character": 20 + } + ] + }, + { + "id": 737, + "name": "onResize", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "decorators": [ + { + "name": "HostListener", "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "HostListener" }, - "defaultValue": "\"ArrowUp\"" - }, + "arguments": { + "eventName": "'window:resize'", + "args": "['$event']" + } + } + ], + "signatures": [ { - "id": 3250, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 738, + "name": "onResize", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 14, - "character": 11 + "id": 739, + "name": "event", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3251, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 86, + "character": 17 + } + ] + }, + { + "id": 751, + "name": "setInvalidErrors", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPrivate": true, + "isExported": true, + "isExternal": true + }, + "signatures": [ + { + "id": 752, + "name": "setInvalidErrors", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 15, - "character": 17 + "id": 753, + "name": "error", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + }, + { + "id": 754, + "name": "errorObject", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "name": "string" + } + } + ], + "sources": [ { - "id": 3252, - "name": "which", - "kind": 32, - "kindString": "Variable", + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 150, + "character": 26 + } + ] + }, + { + "id": 740, + "name": "toggleHint", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isExternal": true, + "isPublic": true + }, + "signatures": [ + { + "id": 741, + "name": "toggleHint", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 16, - "character": 9 + "id": 742, + "name": "status", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3247, - 3248, - 3249, - 3250, - 3251, - 3252 - ] + "name": "void" + } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 10, - "character": 4 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 94, + "character": 19 } - ], - "type": { - "type": "instrinct", - "name": "object" - } + ] } ], "groups": [ { - "title": "Object literals", - "kind": 2097152, + "title": "Constructors", + "kind": 512, "children": [ - 3302, - 3253, - 3239, - 3281, - 3260, - 3267, - 3295, - 3288, - 3274, - 3246 + 724 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 725, + 723, + 716, + 713, + 718, + 711, + 717, + 722, + 721, + 712, + 714, + 715, + 719, + 720 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 735, + 743, + 749, + 746, + 733, + 731, + 728, + 737, + 751, + 740 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 1, - "character": 24 + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 15, + "character": 25 } ], - "type": { - "type": "instrinct", - "name": "object" - } - }, + "implementedTypes": [ + { + "type": "reference", + "name": "AfterViewChecked" + } + ] + } + ], + "groups": [ { - "id": 3380, - "name": "EdgeMocks", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, + "title": "Classes", + "kind": 128, "children": [ + 710 + ] + } + ], + "sources": [ + { + "fileName": "node_modules/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 278, + "name": "\"src/_docs/baseexample.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/baseexample.component.ts", + "children": [ + { + "id": 279, + "name": "BaseExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ { - "id": 3444, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-base-example',\n template: `

    overwrite me

    `\n}" + } + } + ], + "children": [ + { + "id": 287, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 3445, - "name": "charCode", - "kind": 32, - "kindString": "Variable", + "id": 291, + "name": "new BaseExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 241, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3446, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 292, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 242, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3447, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 293, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 243, - "character": 7 + "id": 294, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + } + ], + "sources": [ { - "id": 3448, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 244, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 36, + "character": 14 + } + ] + }, + { + "id": 288, + "name": "_http", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true + }, + "sources": [ { - "id": 3449, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 245, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 39, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 286, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3450, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 246, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" + "fileName": "src/_docs/baseexample.component.ts", + "line": 36, + "character": 13 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "any" + } + }, + { + "id": 284, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3445, - 3446, - 3447, - 3448, - 3449, - 3450 - ] + "fileName": "src/_docs/baseexample.component.ts", + "line": 27, + "character": 16 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"" + }, + { + "id": 283, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 240, - "character": 11 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": "\"\"" }, { - "id": 3395, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 282, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3396, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 185, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"" + }, + { + "id": 290, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3397, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 186, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 41, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + }, + { + "id": 285, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3398, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 187, - "character": 7 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"Down\"" - }, - { - "id": 3399, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 188, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 3400, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 189, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]" + }, + { + "id": 289, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3401, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 190, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" + "fileName": "src/_docs/baseexample.component.ts", + "line": 40, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 281, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3396, - 3397, - 3398, - 3399, - 3400, - 3401 - ] + "fileName": "src/_docs/baseexample.component.ts", + "line": 24, + "character": 24 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"" + }, + { + "id": 280, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 184, - "character": 6 + "fileName": "src/_docs/baseexample.component.ts", + "line": 23, + "character": 23 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": "\"\"" }, { - "id": 3381, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 300, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3382, - "name": "charCode", - "kind": 32, - "kindString": "Variable", + "id": 301, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 169, - "character": 12 + "id": 302, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "type": "reference", + "name": "Subscription" + } + } + ], + "sources": [ { - "id": 3383, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 170, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ] + }, + { + "id": 295, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3384, - "name": "key", - "kind": 32, - "kindString": "Variable", + "id": 296, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 171, - "character": 7 - } - ], "type": { "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3385, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 172, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ] + }, + { + "id": 297, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3386, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", + "id": 298, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 173, - "character": 17 + "id": 299, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3387, - "name": "which", - "kind": 32, - "kindString": "Variable", + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 287 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 288, + 286, + 284, + 283, + 282, + 290, + 285, + 289, + 281, + 280 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 300, + 295, + 297 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 22, + "character": 33 + } + ], + "extendedBy": [ + { + "type": "reference", + "name": "AccordionExampleComponent", + "id": 304 + }, + { + "type": "reference", + "name": "SamActionButtonExampleComponent", + "id": 329 + }, + { + "type": "reference", + "name": "SamActionsDropdownComponentExampleComponent", + "id": 360 + }, + { + "type": "reference", + "name": "AlertExampleComponent", + "id": 386 + }, + { + "type": "reference", + "name": "SamAlertFooterComponentExampleComponent", + "id": 411 + }, + { + "type": "reference", + "name": "SamBadgeComponentExampleComponent", + "id": 460 + }, + { + "type": "reference", + "name": "BannerExampleComponent", + "id": 485 + }, + { + "type": "reference", + "name": "SamBreadcrumbsComponentExampleComponent", + "id": 509 + }, + { + "type": "reference", + "name": "CollapsibleExampleComponent", + "id": 537 + }, + { + "type": "reference", + "name": "SamCommentsComponentExampleComponent", + "id": 906 + }, + { + "type": "reference", + "name": "DownloadExampleComponent", + "id": 931 + }, + { + "type": "reference", + "name": "SamFilesComponentExampleComponent", + "id": 977 + }, + { + "type": "reference", + "name": "FiltersContainerExampleComponent", + "id": 1002 + }, + { + "type": "reference", + "name": "SamHeaderComponentExampleComponent", + "id": 1028 + }, + { + "type": "reference", + "name": "HistoryExampleComponent", + "id": 1053 + }, + { + "type": "reference", + "name": "SamImageComponentExampleComponent", + "id": 1088 + }, + { + "type": "reference", + "name": "InfoAccordionExampleComponent", + "id": 1116 + }, + { + "type": "reference", + "name": "LabelExampleComponent", + "id": 1148 + }, + { + "type": "reference", + "name": "ModalExampleComponent", + "id": 1173 + }, + { + "type": "reference", + "name": "MultiselectDropdownExampleComponent", + "id": 1236 + }, + { + "type": "reference", + "name": "PaginationExampleComponent", + "id": 1269 + }, + { + "type": "reference", + "name": "POCExampleComponent", + "id": 1296 + }, + { + "type": "reference", + "name": "SamProgressExampleComponent", + "id": 1330 + }, + { + "type": "reference", + "name": "SidenavExampleComponent", + "id": 1355 + }, + { + "type": "reference", + "name": "SpinnerExampleComponent", + "id": 1380 + }, + { + "type": "reference", + "name": "TabsExampleComponent", + "id": 1405 + }, + { + "type": "reference", + "name": "SamUploadComponentExampleComponent", + "id": 1436 + }, + { + "type": "reference", + "name": "ClickOutsideExampleComponent", + "id": 1461 + }, + { + "type": "reference", + "name": "SamDragDropDirectiveExampleComponent", + "id": 1491 + }, + { + "type": "reference", + "name": "SamFocusDirectiveExampleComponent", + "id": 1516 + }, + { + "type": "reference", + "name": "StickyExampleComponent", + "id": 1541 + }, + { + "type": "reference", + "name": "TabOutsideExampleComponent", + "id": 1565 + }, + { + "type": "reference", + "name": "ButtonExampleComponent", + "id": 1596 + }, + { + "type": "reference", + "name": "SamBoxComponentExampleComponent", + "id": 1633 + }, + { + "type": "reference", + "name": "SamContainerComponentExampleComponent", + "id": 1663 + }, + { + "type": "reference", + "name": "SamHeadingComponentExampleComponent", + "id": 1697 + }, + { + "type": "reference", + "name": "SamIconComponentExampleComponent", + "id": 1733 + }, + { + "type": "reference", + "name": "SamListComponentExampleComponent", + "id": 1763 + }, + { + "type": "reference", + "name": "SamMasterPageComponentExampleComponent", + "id": 1805 + }, + { + "type": "reference", + "name": "SamPageComponentExampleComponent", + "id": 1830 + }, + { + "type": "reference", + "name": "SamSidebarComponentExampleComponent", + "id": 1855 + }, + { + "type": "reference", + "name": "SamYoutubeComponentExampleComponent", + "id": 1880 + }, + { + "type": "reference", + "name": "AutocompleteExampleComponent", + "id": 1906 + }, + { + "type": "reference", + "name": "AutocompleteMultiselectExampleComponent", + "id": 1978 + }, + { + "type": "reference", + "name": "CheckboxExampleComponent", + "id": 2031 + }, + { + "type": "reference", + "name": "DateExampleComponent", + "id": 2074 + }, + { + "type": "reference", + "name": "SamDateRangeComponentExampleComponent", + "id": 2100 + }, + { + "type": "reference", + "name": "DateTimeExampleComponent", + "id": 2131 + }, + { + "type": "reference", + "name": "NumberExampleComponent", + "id": 2157 + }, + { + "type": "reference", + "name": "RadioExampleComponent", + "id": 2183 + }, + { + "type": "reference", + "name": "SelectExampleComponent", + "id": 2219 + }, + { + "type": "reference", + "name": "TextExampleComponent", + "id": 2254 + }, + { + "type": "reference", + "name": "TextareaExampleComponent", + "id": 2286 + }, + { + "type": "reference", + "name": "TimeExampleComponent", + "id": 2318 + }, + { + "type": "reference", + "name": "ToggleSwitchExampleComponent", + "id": 2344 + }, + { + "type": "reference", + "name": "NameEntryExampleComponent", + "id": 2369 + }, + { + "type": "reference", + "name": "PhoneEntryExampleComponent", + "id": 2400 + }, + { + "type": "reference", + "name": "CountryServiceDirectiveExampleComponent", + "id": 2433 + }, + { + "type": "reference", + "name": "StateServiceDirectiveExampleComponent", + "id": 2458 + }, + { + "type": "reference", + "name": "FieldsetWrapperExampleComponent", + "id": 2483 + }, + { + "type": "reference", + "name": "LabelWrapperExampleComponent", + "id": 2508 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 279 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 303, + "name": "\"src/_docs/components/accordion/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/accordion/component-example.ts", + "children": [ + { + "id": 304, + "name": "AccordionExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-accordion',\n template: `\n\n`+ code_example +`\n\n`\n}" + } + } + ], + "children": [ + { + "id": 309, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 312, + "name": "new AccordionExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 174, - "character": 9 + "id": 313, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 314, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 315, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "AccordionExampleComponent", + "id": 304 }, - "defaultValue": "13" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3382, - 3383, - 3384, - 3385, - 3386, - 3387 - ] + "fileName": "src/_docs/components/accordion/component-example.ts", + "line": 55, + "character": 46 } ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 308, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 168, - "character": 7 + "fileName": "src/_docs/components/accordion/component-example.ts", + "line": 55, + "character": 13 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"_docs/components/accordion/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 3423, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3424, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 217, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3425, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 218, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3426, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 219, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Esc\"" - }, - { - "id": 3427, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 220, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - }, - { - "id": 3428, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 221, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "id": 307, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 3429, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 222, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" + "fileName": "src/_docs/components/accordion/component-example.ts", + "line": 53, + "character": 9 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 317, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3424, - 3425, - 3426, - 3427, - 3428, - 3429 - ] + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 316, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 216, - "character": 5 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 3402, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3403, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 193, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 311, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3404, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 194, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/components/accordion/component-example.ts", + "line": 60, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 318, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3405, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 195, - "character": 7 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"Left\"" - }, - { - "id": 3406, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 196, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, - { - "id": 3407, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 197, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 310, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3408, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 198, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" + "fileName": "src/_docs/components/accordion/component-example.ts", + "line": 59, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 306, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3403, - 3404, - 3405, - 3406, - 3407, - 3408 - ] + "fileName": "src/_docs/components/accordion/component-example.ts", + "line": 51, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 305, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 192, - "character": 6 + "fileName": "src/_docs/components/accordion/component-example.ts", + "line": 50, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"SamAccordionComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 3409, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3410, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 201, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 324, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3411, - "name": "code", - "kind": 32, - "kindString": "Variable", + "id": 325, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 202, - "character": 8 + "id": 326, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "undefined" + "type": "reference", + "name": "Subscription" }, - "defaultValue": " undefined" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ { - "id": 3412, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 203, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Right\"" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 319, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3413, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 320, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 204, - "character": 11 - } - ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "39" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ { - "id": 3414, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 205, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 321, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3415, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 322, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 206, - "character": 9 + "id": 323, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "39" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3410, - 3411, - 3412, - 3413, - 3414, - 3415 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 200, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 309 + ] }, { - "id": 3437, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, + "title": "Properties", + "kind": 1024, "children": [ + 308, + 307, + 317, + 316, + 311, + 318, + 310, + 306, + 305 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 324, + 319, + 321 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/accordion/component-example.ts", + "line": 49, + "character": 38 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 327, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/accordion/component-example.ts", + "line": 18, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `
    \n

    Accordions without border

    \n \n \n A link\n \n \n A second link\n \n \n
    \n
    \n

    Accordions with border, and initial selected tab

    \n \n \n A link\n \n \n A second link\n \n \n
    `" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 304 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 327 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/accordion/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 328, + "name": "\"src/_docs/components/actions/action-button/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/actions/action-button/component-example.ts", + "children": [ + { + "id": 329, + "name": "SamActionButtonExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-sam-action-button',\n template: '' + code_example + ''\n}" + } + } + ], + "children": [ + { + "id": 340, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 3438, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 233, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3439, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 234, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3440, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 235, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 3441, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 343, + "name": "new SamActionButtonExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 236, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, - { - "id": 3442, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 344, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 237, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3443, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 345, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 238, - "character": 9 + "id": 346, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "SamActionButtonExampleComponent", + "id": 329 }, - "defaultValue": "16" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3438, - 3439, - 3440, - 3441, - 3442, - 3443 - ] + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 38, + "character": 58 } ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 339, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 232, - "character": 7 + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 38, + "character": 13 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"_docs/components/actions/action-button/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 3430, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 332, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 3431, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 225, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 35, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 348, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3432, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 226, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 347, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3433, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 227, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\" \"" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 342, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3434, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 228, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - }, + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 43, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 349, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3435, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 229, - "character": 17 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 341, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3436, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 230, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 42, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 331, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3431, - 3432, - 3433, - 3434, - 3435, - 3436 - ] + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 33, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 330, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 224, - "character": 7 + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 32, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"SamActionButton\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 3416, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3417, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 209, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 355, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3418, - "name": "code", - "kind": 32, - "kindString": "Variable", + "id": 356, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 210, - "character": 8 + "id": 357, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "undefined" + "type": "reference", + "name": "Subscription" }, - "defaultValue": " undefined" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ { - "id": 3419, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 211, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 350, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3420, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 351, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 212, - "character": 11 - } - ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "9" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ { - "id": 3421, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 213, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 352, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3422, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 353, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 214, - "character": 9 + "id": 354, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "9" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3417, - 3418, - 3419, - 3420, - 3421, - 3422 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 208, - "character": 5 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } }, { - "id": 3388, - "name": "up", + "id": 333, + "name": "action", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExported": true + }, "children": [ { - "id": 3389, - "name": "charCode", + "id": 336, + "name": "icon", "kind": 32, "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 177, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" + "flags": { + "isExported": true }, - "defaultValue": "0" - }, - { - "id": 3390, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 178, - "character": 8 + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 36, + "character": 46 } ], "type": { "type": "instrinct", - "name": "undefined" + "name": "string" }, - "defaultValue": " undefined" + "defaultValue": "\"fa fa-pencil\"" }, { - "id": 3391, - "name": "key", + "id": 335, + "name": "label", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 179, - "character": 7 + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 36, + "character": 32 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"Up\"" + "defaultValue": "\"Edit\"" }, { - "id": 3392, - "name": "keyCode", + "id": 334, + "name": "name", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 180, - "character": 11 + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 36, + "character": 17 } ], "type": { "type": "instrinct", - "name": "number" + "name": "string" }, - "defaultValue": "38" + "defaultValue": "\"edit\"" }, { - "id": 3393, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 337, + "name": "callback", + "kind": 64, + "kindString": "Function", + "flags": { + "isExported": true + }, + "signatures": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 181, - "character": 17 + "id": 338, + "name": "callback", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + } } ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3394, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 182, - "character": 9 + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 36, + "character": 72 } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" + ] } ], "groups": [ @@ -70057,20 +72686,24 @@ "title": "Variables", "kind": 32, "children": [ - 3389, - 3390, - 3391, - 3392, - 3393, - 3394 + 336, + 335, + 334 + ] + }, + { + "title": "Functions", + "kind": 64, + "children": [ + 337 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 176, - "character": 4 + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 36, + "character": 8 } ], "type": { @@ -70080,1494 +72713,1695 @@ } ], "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 340 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 339, + 332, + 348, + 347, + 342, + 349, + 341, + 331, + 330 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 355, + 350, + 352 + ] + }, { "title": "Object literals", "kind": 2097152, "children": [ - 3444, - 3395, - 3381, - 3423, - 3402, - 3409, - 3437, - 3430, - 3416, - 3388 + 333 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 167, - "character": 15 + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 31, + "character": 44 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 358, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 20, + "character": 18 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": " `\n\n\n\n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 329 + ] }, { - "id": 3451, - "name": "IEMocks", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, + "title": "Variables", + "kind": 32, + "children": [ + 358 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/actions/action-button/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 359, + "name": "\"src/_docs/components/actions/actions-dropdown/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/actions/actions-dropdown/component-example.ts", + "children": [ + { + "id": 360, + "name": "SamActionsDropdownComponentExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-sam-actions-dropdown',\n template: '' + code_example + ''\n}" + } + } + ], "children": [ { - "id": 3515, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 366, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 3516, - "name": "charCode", - "kind": 32, - "kindString": "Variable", + "id": 369, + "name": "new SamActionsDropdownComponentExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 324, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3517, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 370, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 325, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3518, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 371, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 326, - "character": 7 + "id": 372, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "SamActionsDropdownComponentExampleComponent", + "id": 360 }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 3519, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 327, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - }, - { - "id": 3520, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 328, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], + "sources": [ { - "id": 3521, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 329, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" + "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", + "line": 41, + "character": 61 } ], - "groups": [ + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 364, + "name": "actions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3516, - 3517, - 3518, - 3519, - 3520, - 3521 - ] + "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", + "line": 35, + "character": 9 } ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "any" + } + ] + }, + "defaultValue": " [\n { name: 'edit', label: 'Edit', icon: 'fa fa-pencil', callback: ()=>{console.log(\"edit\");}},\n { name: 'delete', label: 'Delete', icon: 'fa fa-trash', callback: ()=>{console.log(\"delete\");} },\n { name: 'save', label: 'Save', icon: 'fa fa-floppy-o', callback: ()=>{console.log(\"save\");} }\n ]" + }, + { + "id": 365, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 323, - "character": 11 + "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", + "line": 41, + "character": 13 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"_docs/components/actions/actions-dropdown/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 3466, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3467, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 268, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3468, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 269, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3469, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 270, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Down\"" - }, - { - "id": 3470, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 271, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 3471, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 272, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "id": 363, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 3472, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 273, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" + "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", + "line": 34, + "character": 9 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 374, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3467, - 3468, - 3469, - 3470, - 3471, - 3472 - ] + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 373, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 267, - "character": 6 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 3452, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3453, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 252, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 368, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3454, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 253, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", + "line": 46, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 375, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3455, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 254, - "character": 7 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 3456, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 255, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 3457, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 256, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 367, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3458, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 257, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" + "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", + "line": 45, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 362, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3453, - 3454, - 3455, - 3456, - 3457, - 3458 - ] + "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", + "line": 32, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 361, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 251, - "character": 7 + "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", + "line": 31, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"SamActionsDropdownComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 3494, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3495, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 300, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 381, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3496, - "name": "code", - "kind": 32, - "kindString": "Variable", + "id": 382, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 301, - "character": 8 + "id": 383, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "undefined" + "type": "reference", + "name": "Subscription" }, - "defaultValue": " undefined" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ { - "id": 3497, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 302, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Esc\"" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 376, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3498, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 377, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 303, - "character": 11 - } - ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "27" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ { - "id": 3499, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 304, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 378, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3500, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 379, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 305, - "character": 9 + "id": 380, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "27" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3495, - 3496, - 3497, - 3498, - 3499, - 3500 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 299, - "character": 5 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 366 + ] }, { - "id": 3473, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, + "title": "Properties", + "kind": 1024, "children": [ + 364, + 365, + 363, + 374, + 373, + 368, + 375, + 367, + 362, + 361 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 381, + 376, + 378 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", + "line": 30, + "character": 56 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 384, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", + "line": 20, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n \n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 360 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 384 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 410, + "name": "\"src/_docs/components/alert-footer/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/alert-footer/component-example.ts", + "children": [ + { + "id": 411, + "name": "SamAlertFooterComponentExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-sam-alert-footer',\n template: '' + code_example + ''\n}" + } + } + ], + "children": [ + { + "id": 433, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 3474, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 276, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3475, - "name": "code", - "kind": 32, - "kindString": "Variable", + "id": 437, + "name": "new SamAlertFooterComponentExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 277, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3476, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 438, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 278, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Left\"" - }, - { - "id": 3477, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 439, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 279, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, - { - "id": 3478, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 440, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + }, { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 280, - "character": 17 + "id": 441, + "name": "alertFooterService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "SamAlertFooterService", + "id": 108 + } } ], "type": { - "type": "instrinct", - "name": "undefined" + "type": "reference", + "name": "SamAlertFooterComponentExampleComponent", + "id": 411 }, - "defaultValue": " undefined" - }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], + "sources": [ { - "id": 3479, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 281, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 91, + "character": 49 } ], - "groups": [ + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 436, + "name": "alertFooterService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3474, - 3475, - 3476, - 3477, - 3478, - 3479 - ] + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 97, + "character": 30 } ], + "type": { + "type": "reference", + "name": "SamAlertFooterService", + "id": 108 + } + }, + { + "id": 432, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 275, - "character": 6 + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 91, + "character": 13 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"_docs/components/alert-footer/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 3480, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3481, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 284, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3482, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 285, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "id": 415, + "name": "checkboxOptions", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 3483, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 286, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Right\"" - }, - { - "id": 3484, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 287, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - }, - { - "id": 3485, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 288, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3486, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 289, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 63, + "character": 17 } ], - "groups": [ + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 416, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 418, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 63, + "character": 42 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Enabled\"" + }, + { + "id": 417, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 63, + "character": 26 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Enabled\"" + }, + { + "id": 419, + "name": "value", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 63, + "character": 58 + } + ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "true" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 418, + 417, + 419 + ] + } + ] + } + } + ] + }, + "defaultValue": " [{name:'Enabled',label:'Enabled',value:true}]" + }, + { + "id": 420, + "name": "checkboxVal", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3481, - 3482, - 3483, - 3484, - 3485, - 3486 - ] + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 64, + "character": 13 } ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "false" + }, + { + "id": 414, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 283, - "character": 7 + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 62, + "character": 9 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 3508, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3509, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 316, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3510, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 317, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3511, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 318, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 3512, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 319, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, - { - "id": 3513, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 320, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "id": 427, + "name": "footerAlertTypes", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 3514, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 321, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 72, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 428, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 429, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 73, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"success\"" + }, + { + "id": 430, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 74, + "character": 8 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"success\"" + }, + { + "id": 431, + "name": "value", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 75, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"success\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 429, + 430, + 431 + ] + } + ] + } + } + ] + }, + "defaultValue": " [{\n label:'success',\n name:'success',\n value:'success',\n },{\n label:'warning',\n name:'warning',\n value:'warning',\n },{\n label:'error',\n name:'error',\n value:'error',\n },{\n label:'info',\n name:'info',\n value:'info',\n }]" + }, + { + "id": 448, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3509, - 3510, - 3511, - 3512, - 3513, - 3514 - ] + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 447, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 315, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 3501, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3502, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 308, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 435, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3503, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 309, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 96, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 449, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3504, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 310, - "character": 7 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"Spacebar\"" - }, - { - "id": 3505, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 311, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - }, - { - "id": 3506, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 312, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 434, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3507, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 313, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 95, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 413, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3502, - 3503, - 3504, - 3505, - 3506, - 3507 - ] + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 60, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 412, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 307, - "character": 7 + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 59, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"SamAlertFooterComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 3487, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 455, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3488, - "name": "charCode", - "kind": 32, - "kindString": "Variable", + "id": 456, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 292, - "character": 12 + "id": 457, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "Subscription" }, - "defaultValue": "0" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ { - "id": 3489, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 293, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 442, + "name": "mustDimissHandler", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 3490, - "name": "key", - "kind": 32, - "kindString": "Variable", + "id": 443, + "name": "mustDimissHandler", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 294, - "character": 7 + "id": 444, + "name": "item", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3491, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 104, + "character": 19 + } + ] + }, + { + "id": 450, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 451, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 295, - "character": 11 - } - ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "9" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ { - "id": 3492, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 445, + "name": "onFooterAlertBtnClick", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 446, + "name": "onFooterAlertBtnClick", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 296, - "character": 17 - } - ], "type": { "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 3493, - "name": "which", - "kind": 32, - "kindString": "Variable", + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 111, + "character": 23 + } + ] + }, + { + "id": 452, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 453, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 297, - "character": 9 + "id": 454, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "9" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3488, - 3489, - 3490, - 3491, - 3492, - 3493 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 291, - "character": 5 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } }, { - "id": 3459, - "name": "up", + "id": 421, + "name": "footerAlertModel", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExported": true + }, "children": [ { - "id": 3460, - "name": "charCode", + "id": 423, + "name": "description", "kind": 32, "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 260, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" + "flags": { + "isExported": true }, - "defaultValue": "0" - }, - { - "id": 3461, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 261, - "character": 8 + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 67, + "character": 15 } ], "type": { "type": "instrinct", - "name": "undefined" + "name": "string" }, - "defaultValue": " undefined" + "defaultValue": "\"Lorem ipsum dolor sit amet, consectetur adipisicing elit.\"" }, { - "id": 3462, - "name": "key", + "id": 426, + "name": "mustDismiss", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 262, - "character": 7 + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 70, + "character": 15 } ], "type": { "type": "instrinct", - "name": "string" + "name": "boolean" }, - "defaultValue": "\"Up\"" + "defaultValue": "false" }, { - "id": 3463, - "name": "keyCode", + "id": 425, + "name": "timer", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 263, - "character": 11 + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 69, + "character": 9 } ], "type": { "type": "instrinct", "name": "number" }, - "defaultValue": "38" + "defaultValue": "0" }, { - "id": 3464, - "name": "keyIdentifier", + "id": 422, + "name": "title", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 264, - "character": 17 + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 66, + "character": 9 } ], "type": { "type": "instrinct", - "name": "undefined" + "name": "string" }, - "defaultValue": " undefined" + "defaultValue": "\"test title\"" }, { - "id": 3465, - "name": "which", + "id": 424, + "name": "type", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 265, - "character": 9 + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 68, + "character": 8 } ], "type": { "type": "instrinct", - "name": "number" + "name": "string" }, - "defaultValue": "38" + "defaultValue": "\"error\"" } ], "groups": [ @@ -71575,20 +74409,19 @@ "title": "Variables", "kind": 32, "children": [ - 3460, - 3461, - 3462, - 3463, - 3464, - 3465 + 423, + 426, + 425, + 422, + 424 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 259, - "character": 4 + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 65, + "character": 18 } ], "type": { @@ -71598,2298 +74431,2090 @@ } ], "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 433 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 436, + 432, + 415, + 420, + 414, + 427, + 448, + 447, + 435, + 449, + 434, + 413, + 412 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 455, + 442, + 450, + 445, + 452 + ] + }, { "title": "Object literals", "kind": 2097152, "children": [ - 3515, - 3466, - 3452, - 3494, - 3473, - 3480, - 3508, - 3501, - 3487, - 3459 + 421 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 250, - "character": 13 + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 58, + "character": 52 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 458, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 20, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": " `\n\n\n\n\n\n\n\n\n\n\n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 411 + ] }, { - "id": 3309, - "name": "SafariMocks", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, + "title": "Variables", + "kind": 32, "children": [ - { - "id": 3373, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3374, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 158, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3375, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 159, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 3376, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 160, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, + 458 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/alert-footer/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 385, + "name": "\"src/_docs/components/alert/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/alert/component-example.ts", + "children": [ + { + "id": 386, + "name": "AlertExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-alert',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], + "children": [ + { + "id": 391, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 3377, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 394, + "name": "new AlertExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 161, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - }, - { - "id": 3378, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 395, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 162, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"U+0008\"" - }, - { - "id": 3379, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 396, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 163, - "character": 9 + "id": 397, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "AlertExampleComponent", + "id": 386 }, - "defaultValue": "8" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3374, - 3375, - 3376, - 3377, - 3378, - 3379 - ] + "fileName": "src/_docs/components/alert/component-example.ts", + "line": 32, + "character": 42 } ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 390, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 157, - "character": 11 + "fileName": "src/_docs/components/alert/component-example.ts", + "line": 32, + "character": 13 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"_docs/components/alert/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 3324, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3325, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 102, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3326, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 103, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, - { - "id": 3327, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 104, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, - { - "id": 3328, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 105, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 3329, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 106, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Down\"" - }, + "id": 389, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 3330, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 107, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" + "fileName": "src/_docs/components/alert/component-example.ts", + "line": 30, + "character": 9 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 399, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3325, - 3326, - 3327, - 3328, - 3329, - 3330 - ] + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 398, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 101, - "character": 6 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 3310, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3311, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 86, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3312, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 87, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 3313, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 88, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, + "id": 393, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3314, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 89, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, + "fileName": "src/_docs/components/alert/component-example.ts", + "line": 37, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 400, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3315, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 90, - "character": 17 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"Enter\"" - }, + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 392, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3316, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 91, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" + "fileName": "src/_docs/components/alert/component-example.ts", + "line": 36, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 388, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3311, - 3312, - 3313, - 3314, - 3315, - 3316 - ] + "fileName": "src/_docs/components/alert/component-example.ts", + "line": 28, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 387, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 85, - "character": 7 + "fileName": "src/_docs/components/alert/component-example.ts", + "line": 27, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"SamAlertComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 3352, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3353, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 134, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 406, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3354, - "name": "code", - "kind": 32, - "kindString": "Variable", + "id": 407, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 135, - "character": 8 + "id": 408, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Subscription" }, - "defaultValue": "\"Escape\"" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ { - "id": 3355, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 136, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Escape\"" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 401, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3356, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 402, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 137, - "character": 11 - } - ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "27" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ { - "id": 3357, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 138, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"U+001B\"" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 403, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3358, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 404, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 139, - "character": 9 + "id": 405, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "27" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3353, - 3354, - 3355, - 3356, - 3357, - 3358 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 133, - "character": 5 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 391 + ] }, { - "id": 3331, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, + "title": "Properties", + "kind": 1024, "children": [ + 390, + 389, + 399, + 398, + 393, + 400, + 392, + 388, + 387 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 406, + 401, + 403 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/alert/component-example.ts", + "line": 26, + "character": 34 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 409, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/alert/component-example.ts", + "line": 13, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n\n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 386 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 409 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/alert/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 459, + "name": "\"src/_docs/components/badge/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/badge/component-example.ts", + "children": [ + { + "id": 460, + "name": "SamBadgeComponentExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-sam-badge',\n template: ''+ code_example +''\n}" + } + } + ], + "children": [ + { + "id": 465, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 3332, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 110, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3333, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 111, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowLeft\"" - }, - { - "id": 3334, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 112, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowLeft\"" - }, - { - "id": 3335, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 468, + "name": "new SamBadgeComponentExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 113, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, - { - "id": 3336, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 469, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 114, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Left\"" - }, - { - "id": 3337, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 470, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 115, - "character": 9 + "id": 471, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "SamBadgeComponentExampleComponent", + "id": 460 }, - "defaultValue": "37" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3332, - 3333, - 3334, - 3335, - 3336, - 3337 - ] + "fileName": "src/_docs/components/badge/component-example.ts", + "line": 34, + "character": 42 } ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 464, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 109, - "character": 6 + "fileName": "src/_docs/components/badge/component-example.ts", + "line": 34, + "character": 13 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"_docs/components/badge/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 3338, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3339, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 118, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3340, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 119, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowRight\"" - }, - { - "id": 3341, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 120, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowRight\"" - }, - { - "id": 3342, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 121, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - }, - { - "id": 3343, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 122, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Right\"" - }, + "id": 463, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 3344, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 123, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" + "fileName": "src/_docs/components/badge/component-example.ts", + "line": 32, + "character": 9 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 473, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3339, - 3340, - 3341, - 3342, - 3343, - 3344 - ] + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 472, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 117, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 3366, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3367, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 150, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3368, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 151, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ShiftLeft\"" - }, - { - "id": 3369, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 152, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, + "id": 467, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3370, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 153, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, + "fileName": "src/_docs/components/badge/component-example.ts", + "line": 39, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 474, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3371, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 154, - "character": 17 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"Shift\"" - }, + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 466, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 3372, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 155, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" + "fileName": "src/_docs/components/badge/component-example.ts", + "line": 38, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 462, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 3367, - 3368, - 3369, - 3370, - 3371, - 3372 - ] + "fileName": "src/_docs/components/badge/component-example.ts", + "line": 30, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 461, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 149, - "character": 7 + "fileName": "src/_docs/components/badge/component-example.ts", + "line": 29, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"SamBadgeComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 3359, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3360, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 142, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3361, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 143, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Space\"" - }, - { - "id": 3362, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 144, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\" \"" - }, - { - "id": 3363, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 145, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - }, - { - "id": 3364, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 146, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"U+0020\"" - }, + "id": 480, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3365, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 481, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 147, - "character": 9 + "id": 482, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "Subscription" }, - "defaultValue": "32" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3360, - 3361, - 3362, - 3363, - 3364, - 3365 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 141, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } }, { - "id": 3345, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3346, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 126, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3347, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 127, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 3348, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 128, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 3349, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 129, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - }, - { - "id": 3350, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 130, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"U+0009\"" - }, + "id": 475, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3351, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 476, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 131, - "character": 9 - } - ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "9" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3346, - 3347, - 3348, - 3349, - 3350, - 3351 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 125, - "character": 5 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 3317, - "name": "up", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3318, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 94, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3319, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 95, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowUp\"" - }, - { - "id": 3320, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 96, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowUp\"" - }, - { - "id": 3321, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 97, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - }, - { - "id": 3322, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 98, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Up\"" - }, + "id": 477, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 3323, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 478, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 99, - "character": 9 + "id": 479, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "38" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3318, - 3319, - 3320, - 3321, - 3322, - 3323 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 93, - "character": 4 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "groups": [ { - "title": "Object literals", - "kind": 2097152, + "title": "Constructors", + "kind": 512, "children": [ - 3373, - 3324, - 3310, - 3352, - 3331, - 3338, - 3366, - 3359, - 3345, - 3317 + 465 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 464, + 463, + 473, + 472, + 467, + 474, + 466, + 462, + 461 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 480, + 475, + 477 ] } ], "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 84, - "character": 17 + "fileName": "src/_docs/components/badge/component-example.ts", + "line": 28, + "character": 46 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 483, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/badge/component-example.ts", + "line": 19, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": " `\n
    \n hello\n
    `" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 460 + ] }, { - "id": 3522, - "name": "mocks", - "kind": 2097152, - "kindString": "Object literal", + "title": "Variables", + "kind": 32, + "children": [ + 483 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/badge/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 484, + "name": "\"src/_docs/components/banner/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/banner/component-example.ts", + "children": [ + { + "id": 485, + "name": "BannerExampleComponent", + "kind": 128, + "kindString": "Class", "flags": { "isExported": true }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-banner',\n template: `\n\nView the banner at the top\n\n`\n}" + } + } + ], "children": [ { - "id": 3667, - "name": "default", - "kind": 32, - "kindString": "Variable", + "id": 490, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, - "sources": [ + "signatures": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 336, - "character": 9 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3668, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", + "id": 493, + "name": "new BannerExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "children": [ + "parameters": [ { - "id": 3732, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", + "id": 494, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 3733, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 75, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3734, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 76, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 3735, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 77, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 3736, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 78, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - }, - { - "id": 3737, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 79, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3738, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 80, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3733, - 3734, - 3735, - 3736, - 3737, - 3738 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 74, - "character": 11 - } - ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "Http" } }, { - "id": 3683, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", + "id": 495, + "name": "service", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 3684, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 19, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3685, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 20, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, - { - "id": 3686, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 21, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, - { - "id": 3687, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 22, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 3688, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 23, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3689, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 24, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3684, - 3685, - 3686, - 3687, - 3688, - 3689 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 18, - "character": 6 - } - ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "DocumentationService", + "id": 148 } }, { - "id": 3669, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", + "id": 496, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], + "type": { + "type": "reference", + "name": "BannerExampleComponent", + "id": 485 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/components/banner/component-example.ts", + "line": 26, + "character": 43 + } + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 489, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/banner/component-example.ts", + "line": 26, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/banner/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 488, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/banner/component-example.ts", + "line": 24, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 498, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 497, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 492, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/banner/component-example.ts", + "line": 31, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 499, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 491, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/banner/component-example.ts", + "line": 30, + "character": 18 + } + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 487, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/banner/component-example.ts", + "line": 22, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 486, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/banner/component-example.ts", + "line": 21, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamBannerComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } + }, + { + "id": 505, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 506, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 507, + "name": "section", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 3670, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 3, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 3671, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 4, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 3672, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 5, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 3673, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 6, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 3674, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 7, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3675, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 8, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3670, - 3671, - 3672, - 3673, - 3674, - 3675 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 2, - "character": 7 - } - ], "type": { "type": "instrinct", - "name": "object" + "name": "string" } - }, + } + ], + "type": { + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 500, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 501, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 502, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 503, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ { - "id": 3711, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", + "id": 504, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 3712, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 51, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3713, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 52, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Escape\"" - }, - { - "id": 3714, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 53, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Escape\"" - }, - { - "id": 3715, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 54, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - }, - { - "id": 3716, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 55, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3717, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 56, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3712, - 3713, - 3714, - 3715, - 3716, - 3717 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 50, - "character": 5 - } - ], "type": { "type": "instrinct", - "name": "object" + "name": "any" + } + } + ], + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 490 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 489, + 488, + 498, + 497, + 492, + 499, + 491, + 487, + 486 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 505, + 500, + 502 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/banner/component-example.ts", + "line": 20, + "character": 35 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 485 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/banner/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 508, + "name": "\"src/_docs/components/breadcrumbs/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/breadcrumbs/component-example.ts", + "children": [ + { + "id": 509, + "name": "SamBreadcrumbsComponentExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-sam-breadcrumbs',\n template: `${code_example}`\n}" + } + } + ], + "children": [ + { + "id": 517, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 520, + "name": "new SamBreadcrumbsComponentExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 521, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 522, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 } }, { - "id": 3690, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", + "id": 523, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], + "type": { + "type": "reference", + "name": "SamBreadcrumbsComponentExampleComponent", + "id": 509 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/components/breadcrumbs/component-example.ts", + "line": 38, + "character": 48 + } + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 516, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/breadcrumbs/component-example.ts", + "line": 38, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/breadcrumbs/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 513, + "name": "crumbs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/breadcrumbs/component-example.ts", + "line": 33, + "character": 8 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 514, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", "flags": {}, "children": [ { - "id": 3691, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 27, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3692, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 28, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowLeft\"" - }, - { - "id": 3693, - "name": "key", + "id": 515, + "name": "breadcrumb", "kind": 32, "kindString": "Variable", "flags": {}, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 29, - "character": 7 + "fileName": "src/_docs/components/breadcrumbs/component-example.ts", + "line": 35, + "character": 16 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"ArrowLeft\"" - }, - { - "id": 3694, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 30, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, - { - "id": 3695, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 31, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3696, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 32, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" + "defaultValue": "\"...\"" } ], "groups": [ @@ -73897,101543 +76522,678 @@ "title": "Variables", "kind": 32, "children": [ - 3691, - 3692, - 3693, - 3694, - 3695, - 3696 + 515 ] } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 26, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3697, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3698, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 35, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3699, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 36, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowRight\"" - }, - { - "id": 3700, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 37, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowRight\"" - }, - { - "id": 3701, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 38, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - }, - { - "id": 3702, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 39, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3703, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 40, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3698, - 3699, - 3700, - 3701, - 3702, - 3703 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 34, - "character": 7 - } - ], + ] + } + } + ] + }, + "defaultValue": " [\n { breadcrumb: 'Back to my workspace', url: '/workspace' },\n { breadcrumb: '...'}\n ]" + }, + { + "id": 512, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/breadcrumbs/component-example.ts", + "line": 31, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 525, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 524, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 519, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/breadcrumbs/component-example.ts", + "line": 43, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 526, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 518, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/breadcrumbs/component-example.ts", + "line": 42, + "character": 18 + } + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 511, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/breadcrumbs/component-example.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 510, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/breadcrumbs/component-example.ts", + "line": 28, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamBreadcrumbsComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } + }, + { + "id": 532, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 533, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 534, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, "type": { "type": "instrinct", - "name": "object" + "name": "string" } - }, + } + ], + "type": { + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 527, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 528, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 529, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 530, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ { - "id": 3725, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", + "id": 531, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 3726, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 67, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3727, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 68, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ShiftLeft\"" - }, - { - "id": 3728, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 69, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 3729, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 70, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, - { - "id": 3730, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 71, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3731, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 72, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3726, - 3727, - 3728, - 3729, - 3730, - 3731 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 66, - "character": 7 - } - ], "type": { "type": "instrinct", - "name": "object" + "name": "any" } - }, + } + ], + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 517 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 516, + 513, + 512, + 525, + 524, + 519, + 526, + 518, + 511, + 510 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 532, + 527, + 529 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/breadcrumbs/component-example.ts", + "line": 27, + "character": 52 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 535, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/breadcrumbs/component-example.ts", + "line": 20, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 509 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 535 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/breadcrumbs/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 536, + "name": "\"src/_docs/components/collapsible/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/collapsible/component-example.ts", + "children": [ + { + "id": 537, + "name": "CollapsibleExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-collapsible',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], + "children": [ + { + "id": 542, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 545, + "name": "new CollapsibleExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ { - "id": 3718, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", + "id": 546, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 3719, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 59, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3720, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 60, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Space\"" - }, - { - "id": 3721, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 61, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\" \"" - }, - { - "id": 3722, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 62, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - }, - { - "id": 3723, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 63, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3724, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 64, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3719, - 3720, - 3721, - 3722, - 3723, - 3724 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 58, - "character": 7 - } - ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "Http" } }, { - "id": 3704, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", + "id": 547, + "name": "service", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 3705, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 43, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3706, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 44, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 3707, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 45, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 3708, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 46, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - }, - { - "id": 3709, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 47, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3710, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 48, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3705, - 3706, - 3707, - 3708, - 3709, - 3710 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 42, - "character": 5 - } - ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "DocumentationService", + "id": 148 } }, { - "id": 3676, - "name": "up", - "kind": 2097152, - "kindString": "Object literal", + "id": 548, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 3677, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 11, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3678, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 12, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowUp\"" - }, - { - "id": 3679, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 13, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowUp\"" - }, - { - "id": 3680, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 14, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - }, - { - "id": 3681, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 15, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3682, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 16, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3677, - 3678, - 3679, - 3680, - 3681, - 3682 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 10, - "character": 4 - } - ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 3732, - 3683, - 3669, - 3711, - 3690, - 3697, - 3725, - 3718, - 3704, - 3676 - ] - } - ] + "type": { + "type": "reference", + "name": "CollapsibleExampleComponent", + "id": 537 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/components/collapsible/component-example.ts", + "line": 31, + "character": 48 + } + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 541, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/collapsible/component-example.ts", + "line": 31, + "character": 13 } + ], + "type": { + "type": "instrinct", + "name": "string" }, - "defaultValue": " ChromeFirefoxMocks" + "defaultValue": "\"_docs/components/collapsible/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 3595, - "name": "edge", - "kind": 32, - "kindString": "Variable", + "id": 540, + "name": "example", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, "sources": [ { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 335, - "character": 6 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3596, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 3660, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3661, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 241, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3662, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 242, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3663, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 243, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 3664, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 244, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - }, - { - "id": 3665, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 245, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3666, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 246, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3661, - 3662, - 3663, - 3664, - 3665, - 3666 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 240, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3611, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3612, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 185, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3613, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 186, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3614, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 187, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Down\"" - }, - { - "id": 3615, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 188, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 3616, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 189, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3617, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 190, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3612, - 3613, - 3614, - 3615, - 3616, - 3617 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 184, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3597, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3598, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 169, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3599, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 170, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3600, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 171, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 3601, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 172, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 3602, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 173, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3603, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 174, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3598, - 3599, - 3600, - 3601, - 3602, - 3603 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 168, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3639, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3640, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 217, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3641, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 218, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3642, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 219, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Esc\"" - }, - { - "id": 3643, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 220, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - }, - { - "id": 3644, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 221, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3645, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 222, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3640, - 3641, - 3642, - 3643, - 3644, - 3645 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 216, - "character": 5 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3618, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3619, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 193, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3620, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 194, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3621, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 195, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Left\"" - }, - { - "id": 3622, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 196, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, - { - "id": 3623, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 197, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3624, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 198, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3619, - 3620, - 3621, - 3622, - 3623, - 3624 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 192, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3625, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3626, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 201, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3627, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 202, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3628, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 203, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Right\"" - }, - { - "id": 3629, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 204, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - }, - { - "id": 3630, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 205, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3631, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 206, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3626, - 3627, - 3628, - 3629, - 3630, - 3631 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 200, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3653, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3654, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 233, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3655, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 234, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3656, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 235, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 3657, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 236, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, - { - "id": 3658, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 237, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3659, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 238, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3654, - 3655, - 3656, - 3657, - 3658, - 3659 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 232, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3646, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3647, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 225, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3648, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 226, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3649, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 227, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\" \"" - }, - { - "id": 3650, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 228, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - }, - { - "id": 3651, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 229, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3652, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 230, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3647, - 3648, - 3649, - 3650, - 3651, - 3652 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 224, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3632, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3633, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 209, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3634, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 210, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3635, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 211, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 3636, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 212, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - }, - { - "id": 3637, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 213, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3638, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 214, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3633, - 3634, - 3635, - 3636, - 3637, - 3638 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 208, - "character": 5 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3604, - "name": "up", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3605, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 177, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3606, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 178, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3607, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 179, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Up\"" - }, - { - "id": 3608, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 180, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - }, - { - "id": 3609, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 181, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3610, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 182, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3605, - 3606, - 3607, - 3608, - 3609, - 3610 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 176, - "character": 4 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 3660, - 3611, - 3597, - 3639, - 3618, - 3625, - 3653, - 3646, - 3632, - 3604 - ] - } - ] - } - }, - "defaultValue": " EdgeMocks" - }, - { - "id": 3523, - "name": "ie", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 334, - "character": 4 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3524, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 3588, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3589, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 324, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3590, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 325, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3591, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 326, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 3592, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 327, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - }, - { - "id": 3593, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 328, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3594, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 329, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3589, - 3590, - 3591, - 3592, - 3593, - 3594 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 323, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3539, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3540, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 268, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3541, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 269, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3542, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 270, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Down\"" - }, - { - "id": 3543, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 271, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 3544, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 272, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3545, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 273, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3540, - 3541, - 3542, - 3543, - 3544, - 3545 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 267, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3525, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3526, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 252, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3527, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 253, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3528, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 254, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 3529, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 255, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 3530, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 256, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3531, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 257, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3526, - 3527, - 3528, - 3529, - 3530, - 3531 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 251, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3567, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3568, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 300, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3569, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 301, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3570, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 302, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Esc\"" - }, - { - "id": 3571, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 303, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - }, - { - "id": 3572, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 304, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3573, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 305, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3568, - 3569, - 3570, - 3571, - 3572, - 3573 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 299, - "character": 5 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3546, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3547, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 276, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3548, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 277, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3549, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 278, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Left\"" - }, - { - "id": 3550, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 279, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, - { - "id": 3551, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 280, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3552, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 281, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3547, - 3548, - 3549, - 3550, - 3551, - 3552 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 275, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3553, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3554, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 284, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3555, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 285, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3556, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 286, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Right\"" - }, - { - "id": 3557, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 287, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - }, - { - "id": 3558, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 288, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3559, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 289, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3554, - 3555, - 3556, - 3557, - 3558, - 3559 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 283, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3581, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3582, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 316, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3583, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 317, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3584, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 318, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 3585, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 319, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, - { - "id": 3586, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 320, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3587, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 321, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3582, - 3583, - 3584, - 3585, - 3586, - 3587 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 315, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3574, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3575, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 308, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3576, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 309, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3577, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 310, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Spacebar\"" - }, - { - "id": 3578, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 311, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - }, - { - "id": 3579, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 312, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3580, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 313, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3575, - 3576, - 3577, - 3578, - 3579, - 3580 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 307, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3560, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3561, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 292, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3562, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 293, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3563, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 294, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 3564, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 295, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - }, - { - "id": 3565, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 296, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3566, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 297, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3561, - 3562, - 3563, - 3564, - 3565, - 3566 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 291, - "character": 5 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3532, - "name": "up", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3533, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 260, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3534, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 261, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3535, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 262, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Up\"" - }, - { - "id": 3536, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 263, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - }, - { - "id": 3537, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 264, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 3538, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 265, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3533, - 3534, - 3535, - 3536, - 3537, - 3538 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 259, - "character": 4 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 3588, - 3539, - 3525, - 3567, - 3546, - 3553, - 3581, - 3574, - 3560, - 3532 - ] - } - ] - } - }, - "defaultValue": " IEMocks" - }, - { - "id": 3739, - "name": "safari", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 337, - "character": 8 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3740, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 3804, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3805, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 158, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3806, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 159, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 3807, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 160, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 3808, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 161, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - }, - { - "id": 3809, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 162, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"U+0008\"" - }, - { - "id": 3810, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 163, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3805, - 3806, - 3807, - 3808, - 3809, - 3810 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 157, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3755, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3756, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 102, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3757, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 103, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, - { - "id": 3758, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 104, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, - { - "id": 3759, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 105, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 3760, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 106, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Down\"" - }, - { - "id": 3761, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 107, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3756, - 3757, - 3758, - 3759, - 3760, - 3761 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 101, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3741, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3742, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 86, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3743, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 87, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 3744, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 88, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 3745, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 89, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 3746, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 90, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 3747, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 91, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3742, - 3743, - 3744, - 3745, - 3746, - 3747 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 85, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3783, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3784, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 134, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3785, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 135, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Escape\"" - }, - { - "id": 3786, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 136, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Escape\"" - }, - { - "id": 3787, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 137, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - }, - { - "id": 3788, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 138, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"U+001B\"" - }, - { - "id": 3789, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 139, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3784, - 3785, - 3786, - 3787, - 3788, - 3789 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 133, - "character": 5 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3762, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3763, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 110, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3764, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 111, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowLeft\"" - }, - { - "id": 3765, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 112, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowLeft\"" - }, - { - "id": 3766, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 113, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, - { - "id": 3767, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 114, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Left\"" - }, - { - "id": 3768, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 115, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3763, - 3764, - 3765, - 3766, - 3767, - 3768 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 109, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3769, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3770, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 118, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3771, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 119, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowRight\"" - }, - { - "id": 3772, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 120, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowRight\"" - }, - { - "id": 3773, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 121, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - }, - { - "id": 3774, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 122, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Right\"" - }, - { - "id": 3775, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 123, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3770, - 3771, - 3772, - 3773, - 3774, - 3775 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 117, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3797, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3798, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 150, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3799, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 151, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ShiftLeft\"" - }, - { - "id": 3800, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 152, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 3801, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 153, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, - { - "id": 3802, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 154, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 3803, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 155, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3798, - 3799, - 3800, - 3801, - 3802, - 3803 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 149, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3790, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3791, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 142, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3792, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 143, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Space\"" - }, - { - "id": 3793, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 144, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\" \"" - }, - { - "id": 3794, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 145, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - }, - { - "id": 3795, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 146, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"U+0020\"" - }, - { - "id": 3796, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 147, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3791, - 3792, - 3793, - 3794, - 3795, - 3796 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 141, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3776, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3777, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 126, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3778, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 127, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 3779, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 128, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 3780, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 129, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - }, - { - "id": 3781, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 130, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"U+0009\"" - }, - { - "id": 3782, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 131, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3777, - 3778, - 3779, - 3780, - 3781, - 3782 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 125, - "character": 5 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 3748, - "name": "up", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 3749, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 94, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 3750, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 95, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowUp\"" - }, - { - "id": 3751, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 96, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowUp\"" - }, - { - "id": 3752, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 97, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - }, - { - "id": 3753, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 98, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Up\"" - }, - { - "id": 3754, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 99, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3749, - 3750, - 3751, - 3752, - 3753, - 3754 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 93, - "character": 4 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 3804, - 3755, - 3741, - 3783, - 3762, - 3769, - 3797, - 3790, - 3776, - 3748 - ] - } - ] - } - }, - "defaultValue": " SafariMocks" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3667, - 3595, - 3523, - 3739 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 333, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 3238, - 3380, - 3451, - 3309, - 3522 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 467, - "name": "\"sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "children": [ - { - "id": 468, - "name": "FieldsetWrapper", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-fieldset-wrapper',\n templateUrl: 'fieldset-wrapper.template.html',\n}" - } - } - ], - "children": [ - { - "id": 479, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 481, - "name": "new FieldsetWrapper", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 482, - "name": "cdr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - } - ], - "type": { - "type": "reference", - "name": "FieldsetWrapper", - "id": 468 - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 36, - "character": 28 - } - ] - }, - { - "id": 480, - "name": "cdr", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 38, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - }, - { - "id": 478, - "name": "checkMore", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 36, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 471, - "name": "errorMessage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "set the error message" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 26, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 470, - "name": "hint", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "sets the hint text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 22, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 473, - "name": "hintContainer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'hintContainer'" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 31, - "character": 50 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 469, - "name": "label", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "sets the label text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 18, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 477, - "name": "lineLimit", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 35, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "2" - }, - { - "id": 476, - "name": "lineSize", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 34, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 472, - "name": "required", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "toggles the required text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 30, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 474, - "name": "showToggle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 32, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 475, - "name": "toggleOpen", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 33, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 490, - "name": "calcToggle", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 491, - "name": "calcToggle", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 64, - "character": 19 - } - ] - }, - { - "id": 498, - "name": "calculateNumberOfLines", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 499, - "name": "calculateNumberOfLines", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 500, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 87, - "character": 31 - } - ] - }, - { - "id": 501, - "name": "clearError", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 502, - "name": "clearError", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 101, - "character": 19 - } - ] - }, - { - "id": 503, - "name": "formatErrors", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 504, - "name": "formatErrors", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 505, - "name": "control", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "AbstractControl" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 105, - "character": 21 - } - ] - }, - { - "id": 506, - "name": "formatInvalidErrors", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 507, - "name": "formatInvalidErrors", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 508, - "name": "control", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 121, - "character": 29 - } - ] - }, - { - "id": 488, - "name": "ngAfterViewChecked", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 489, - "name": "ngAfterViewChecked", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 56, - "character": 27 - } - ] - }, - { - "id": 486, - "name": "ngAfterViewInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 487, - "name": "ngAfterViewInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 52, - "character": 24 - } - ] - }, - { - "id": 483, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 484, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 485, - "name": "c", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 40, - "character": 20 - } - ] - }, - { - "id": 492, - "name": "onResize", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'window:resize'", - "args": "['$event']" - } - } - ], - "signatures": [ - { - "id": 493, - "name": "onResize", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 494, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 75, - "character": 17 - } - ] - }, - { - "id": 509, - "name": "setInvalidError", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 510, - "name": "setInvalidError", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 511, - "name": "error", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 512, - "name": "errorObject", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 140, - "character": 25 - } - ] - }, - { - "id": 495, - "name": "toggleHint", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 496, - "name": "toggleHint", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 497, - "name": "status", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 83, - "character": 19 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 479 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 480, - 478, - 471, - 470, - 473, - 469, - 477, - 476, - 472, - 474, - 475 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 490, - 498, - 501, - 503, - 506, - 488, - 486, - 483, - 492, - 509, - 495 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 14, - "character": 28 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 468 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 513, - "name": "\"sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/index.ts", - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 561, - "name": "\"sam-ui-elements/src/ui-kit/wrappers/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/wrappers/index.ts", - "children": [ - { - "id": 562, - "name": "SamWrapperModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [ CommonModule ],\n declarations: [ FieldsetWrapper, LabelWrapper ],\n exports: [ FieldsetWrapper, LabelWrapper ]\n}" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/index.ts", - "line": 12, - "character": 29 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 562 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 560, - "name": "\"sam-ui-elements/src/ui-kit/wrappers/label-wrapper/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/index.ts", - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 514, - "name": "\"sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "children": [ - { - "id": 515, - "name": "LabelWrapper", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-label-wrapper',\n templateUrl: 'label-wrapper.template.html',\n}" - } - } - ], - "children": [ - { - "id": 529, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 531, - "name": "new LabelWrapper", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 532, - "name": "cdr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - } - ], - "type": { - "type": "reference", - "name": "LabelWrapper", - "id": 515 - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 47, - "character": 28 - } - ] - }, - { - "id": 530, - "name": "cdr", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 49, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - }, - { - "id": 528, - "name": "checkMore", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 47, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 521, - "name": "errorMessage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "set the error message" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 39, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 518, - "name": "hint", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "sets the hint text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 27, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 523, - "name": "hintContainer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'hintContainer'" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 42, - "character": 50 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 516, - "name": "label", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "sets the label text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 19, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 522, - "name": "labelDiv", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'labelDiv'" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 41, - "character": 40 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 527, - "name": "lineLimit", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 46, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "2" - }, - { - "id": 526, - "name": "lineSize", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 45, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 517, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "sets the name attribute value" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 23, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 519, - "name": "required", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "deprecated, toggles the required text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 31, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 520, - "name": "requiredFlag", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "toggles the required text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 35, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 524, - "name": "showToggle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 43, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 525, - "name": "toggleOpen", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 44, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 540, - "name": "calcToggle", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 541, - "name": "calcToggle", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 75, - "character": 19 - } - ] - }, - { - "id": 548, - "name": "calculateNumberOfLines", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 549, - "name": "calculateNumberOfLines", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 550, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 98, - "character": 31 - } - ] - }, - { - "id": 554, - "name": "clearError", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 555, - "name": "clearError", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 146, - "character": 19 - } - ] - }, - { - "id": 551, - "name": "formatErrors", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 552, - "name": "formatErrors", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 553, - "name": "control", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "AbstractControl" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 112, - "character": 21 - } - ] - }, - { - "id": 538, - "name": "ngAfterViewChecked", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 539, - "name": "ngAfterViewChecked", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 67, - "character": 27 - } - ] - }, - { - "id": 536, - "name": "ngAfterViewInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 537, - "name": "ngAfterViewInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 63, - "character": 24 - } - ] - }, - { - "id": 533, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 534, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 535, - "name": "c", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 51, - "character": 20 - } - ] - }, - { - "id": 542, - "name": "onResize", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'window:resize'", - "args": "['$event']" - } - } - ], - "signatures": [ - { - "id": 543, - "name": "onResize", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 544, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 86, - "character": 17 - } - ] - }, - { - "id": 556, - "name": "setInvalidErrors", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 557, - "name": "setInvalidErrors", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 558, - "name": "error", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 559, - "name": "errorObject", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 150, - "character": 26 - } - ] - }, - { - "id": 545, - "name": "toggleHint", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 546, - "name": "toggleHint", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 547, - "name": "status", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 94, - "character": 19 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 529 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 530, - 528, - 521, - 518, - 523, - 516, - 522, - 527, - 526, - 517, - 519, - 520, - 524, - 525 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 540, - 548, - 554, - 551, - 538, - 536, - 533, - 542, - 556, - 545 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 15, - "character": 25 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "AfterViewChecked" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 515 - ] - } - ], - "sources": [ - { - "fileName": "sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4081, - "name": "\"src/_docs/baseexample.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/baseexample.component.ts", - "children": [ - { - "id": 4082, - "name": "BaseExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-base-example',\n template: `

    overwrite me

    `\n}" - } - } - ], - "children": [ - { - "id": 4090, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4094, - "name": "new BaseExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4095, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4096, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4097, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 36, - "character": 14 - } - ] - }, - { - "id": 4091, - "name": "_http", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 39, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4089, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 36, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 4087, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 4086, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 4085, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 4093, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 41, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - }, - { - "id": 4088, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]" - }, - { - "id": 4092, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 40, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4084, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 24, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 4083, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 23, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 4103, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4104, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4105, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ] - }, - { - "id": 4098, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4099, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ] - }, - { - "id": 4100, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4101, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4102, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4090 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4091, - 4089, - 4087, - 4086, - 4085, - 4093, - 4088, - 4092, - 4084, - 4083 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4103, - 4098, - 4100 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 22, - "character": 33 - } - ], - "extendedBy": [ - { - "type": "reference", - "name": "AccordionExampleComponent", - "id": 4107 - }, - { - "type": "reference", - "name": "SamActionButtonExampleComponent", - "id": 4132 - }, - { - "type": "reference", - "name": "SamActionsDropdownComponentExampleComponent", - "id": 4163 - }, - { - "type": "reference", - "name": "AlertExampleComponent", - "id": 4189 - }, - { - "type": "reference", - "name": "SamAlertFooterComponentExampleComponent", - "id": 4214 - }, - { - "type": "reference", - "name": "SamBadgeComponentExampleComponent", - "id": 4263 - }, - { - "type": "reference", - "name": "BannerExampleComponent", - "id": 4288 - }, - { - "type": "reference", - "name": "SamBreadcrumbsComponentExampleComponent", - "id": 4312 - }, - { - "type": "reference", - "name": "CollapsibleExampleComponent", - "id": 4340 - }, - { - "type": "reference", - "name": "SamCommentsComponentExampleComponent", - "id": 4709 - }, - { - "type": "reference", - "name": "DownloadExampleComponent", - "id": 4734 - }, - { - "type": "reference", - "name": "SamFilesComponentExampleComponent", - "id": 4780 - }, - { - "type": "reference", - "name": "FiltersContainerExampleComponent", - "id": 4805 - }, - { - "type": "reference", - "name": "SamHeaderComponentExampleComponent", - "id": 4831 - }, - { - "type": "reference", - "name": "HistoryExampleComponent", - "id": 4856 - }, - { - "type": "reference", - "name": "SamImageComponentExampleComponent", - "id": 4891 - }, - { - "type": "reference", - "name": "InfoAccordionExampleComponent", - "id": 4919 - }, - { - "type": "reference", - "name": "LabelExampleComponent", - "id": 4951 - }, - { - "type": "reference", - "name": "ModalExampleComponent", - "id": 4976 - }, - { - "type": "reference", - "name": "MultiselectDropdownExampleComponent", - "id": 5039 - }, - { - "type": "reference", - "name": "PaginationExampleComponent", - "id": 5072 - }, - { - "type": "reference", - "name": "POCExampleComponent", - "id": 5099 - }, - { - "type": "reference", - "name": "SamProgressExampleComponent", - "id": 5133 - }, - { - "type": "reference", - "name": "SidenavExampleComponent", - "id": 5158 - }, - { - "type": "reference", - "name": "SpinnerExampleComponent", - "id": 5183 - }, - { - "type": "reference", - "name": "TabsExampleComponent", - "id": 5208 - }, - { - "type": "reference", - "name": "SamUploadComponentExampleComponent", - "id": 5239 - }, - { - "type": "reference", - "name": "ClickOutsideExampleComponent", - "id": 5264 - }, - { - "type": "reference", - "name": "SamDragDropDirectiveExampleComponent", - "id": 5294 - }, - { - "type": "reference", - "name": "SamFocusDirectiveExampleComponent", - "id": 5319 - }, - { - "type": "reference", - "name": "StickyExampleComponent", - "id": 5344 - }, - { - "type": "reference", - "name": "TabOutsideExampleComponent", - "id": 5368 - }, - { - "type": "reference", - "name": "ButtonExampleComponent", - "id": 5399 - }, - { - "type": "reference", - "name": "SamBoxComponentExampleComponent", - "id": 5436 - }, - { - "type": "reference", - "name": "SamContainerComponentExampleComponent", - "id": 5466 - }, - { - "type": "reference", - "name": "SamHeadingComponentExampleComponent", - "id": 5500 - }, - { - "type": "reference", - "name": "SamIconComponentExampleComponent", - "id": 5536 - }, - { - "type": "reference", - "name": "SamListComponentExampleComponent", - "id": 5566 - }, - { - "type": "reference", - "name": "SamMasterPageComponentExampleComponent", - "id": 5608 - }, - { - "type": "reference", - "name": "SamPageComponentExampleComponent", - "id": 5633 - }, - { - "type": "reference", - "name": "SamSidebarComponentExampleComponent", - "id": 5658 - }, - { - "type": "reference", - "name": "SamYoutubeComponentExampleComponent", - "id": 5683 - }, - { - "type": "reference", - "name": "AutocompleteExampleComponent", - "id": 5709 - }, - { - "type": "reference", - "name": "AutocompleteMultiselectExampleComponent", - "id": 5781 - }, - { - "type": "reference", - "name": "CheckboxExampleComponent", - "id": 5834 - }, - { - "type": "reference", - "name": "DateExampleComponent", - "id": 5877 - }, - { - "type": "reference", - "name": "SamDateRangeComponentExampleComponent", - "id": 5903 - }, - { - "type": "reference", - "name": "DateTimeExampleComponent", - "id": 5934 - }, - { - "type": "reference", - "name": "NumberExampleComponent", - "id": 5960 - }, - { - "type": "reference", - "name": "RadioExampleComponent", - "id": 5986 - }, - { - "type": "reference", - "name": "SelectExampleComponent", - "id": 6022 - }, - { - "type": "reference", - "name": "TextExampleComponent", - "id": 6057 - }, - { - "type": "reference", - "name": "TextareaExampleComponent", - "id": 6089 - }, - { - "type": "reference", - "name": "TimeExampleComponent", - "id": 6121 - }, - { - "type": "reference", - "name": "ToggleSwitchExampleComponent", - "id": 6147 - }, - { - "type": "reference", - "name": "NameEntryExampleComponent", - "id": 6172 - }, - { - "type": "reference", - "name": "PhoneEntryExampleComponent", - "id": 6203 - }, - { - "type": "reference", - "name": "CountryServiceDirectiveExampleComponent", - "id": 6236 - }, - { - "type": "reference", - "name": "StateServiceDirectiveExampleComponent", - "id": 6261 - }, - { - "type": "reference", - "name": "FieldsetWrapperExampleComponent", - "id": 6286 - }, - { - "type": "reference", - "name": "LabelWrapperExampleComponent", - "id": 6311 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4082 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4106, - "name": "\"src/_docs/components/accordion/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/accordion/component-example.ts", - "children": [ - { - "id": 4107, - "name": "AccordionExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-accordion',\n template: `\n\n`+ code_example +`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 4112, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4115, - "name": "new AccordionExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4116, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4117, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4118, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "AccordionExampleComponent", - "id": 4107 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/accordion/component-example.ts", - "line": 55, - "character": 46 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4111, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/accordion/component-example.ts", - "line": 55, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/accordion/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4110, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/accordion/component-example.ts", - "line": 53, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4120, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4119, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4114, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/accordion/component-example.ts", - "line": 60, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4121, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4113, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/accordion/component-example.ts", - "line": 59, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4109, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/accordion/component-example.ts", - "line": 51, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4108, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/accordion/component-example.ts", - "line": 50, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamAccordionComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4127, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4128, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4129, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4122, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4123, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4124, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4125, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4126, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4112 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4111, - 4110, - 4120, - 4119, - 4114, - 4121, - 4113, - 4109, - 4108 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4127, - 4122, - 4124 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/accordion/component-example.ts", - "line": 49, - "character": 38 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4130, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/accordion/component-example.ts", - "line": 18, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `
    \n

    Accordions without border

    \n \n \n A link\n \n \n A second link\n \n \n
    \n
    \n

    Accordions with border, and initial selected tab

    \n \n \n A link\n \n \n A second link\n \n \n
    `" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4107 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4130 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/accordion/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4131, - "name": "\"src/_docs/components/actions/action-button/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/actions/action-button/component-example.ts", - "children": [ - { - "id": 4132, - "name": "SamActionButtonExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-sam-action-button',\n template: '' + code_example + ''\n}" - } - } - ], - "children": [ - { - "id": 4143, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4146, - "name": "new SamActionButtonExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4147, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4148, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4149, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamActionButtonExampleComponent", - "id": 4132 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 38, - "character": 58 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4142, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 38, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/actions/action-button/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4135, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 35, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4151, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4150, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4145, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 43, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4152, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4144, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 42, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4134, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 33, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4133, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 32, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamActionButton\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4158, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4159, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4160, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4153, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4154, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4155, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4156, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4157, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 4136, - "name": "action", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 4139, - "name": "icon", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 36, - "character": 46 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"fa fa-pencil\"" - }, - { - "id": 4138, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 36, - "character": 32 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Edit\"" - }, - { - "id": 4137, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 36, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"edit\"" - }, - { - "id": 4140, - "name": "callback", - "kind": 64, - "kindString": "Function", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4141, - "name": "callback", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 36, - "character": 72 - } - ] - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4139, - 4138, - 4137 - ] - }, - { - "title": "Functions", - "kind": 64, - "children": [ - 4140 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 36, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4143 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4142, - 4135, - 4151, - 4150, - 4145, - 4152, - 4144, - 4134, - 4133 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4158, - 4153, - 4155 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 4136 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 31, - "character": 44 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4161, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 20, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n\n\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4132 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4161 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/actions/action-button/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4162, - "name": "\"src/_docs/components/actions/actions-dropdown/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/actions/actions-dropdown/component-example.ts", - "children": [ - { - "id": 4163, - "name": "SamActionsDropdownComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-sam-actions-dropdown',\n template: '' + code_example + ''\n}" - } - } - ], - "children": [ - { - "id": 4169, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4172, - "name": "new SamActionsDropdownComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4173, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4174, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4175, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamActionsDropdownComponentExampleComponent", - "id": 4163 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", - "line": 41, - "character": 61 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4167, - "name": "actions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", - "line": 35, - "character": 9 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " [\n { name: 'edit', label: 'Edit', icon: 'fa fa-pencil', callback: ()=>{console.log(\"edit\");}},\n { name: 'delete', label: 'Delete', icon: 'fa fa-trash', callback: ()=>{console.log(\"delete\");} },\n { name: 'save', label: 'Save', icon: 'fa fa-floppy-o', callback: ()=>{console.log(\"save\");} }\n ]" - }, - { - "id": 4168, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", - "line": 41, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/actions/actions-dropdown/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4166, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", - "line": 34, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4177, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4176, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4171, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", - "line": 46, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4178, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4170, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", - "line": 45, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4165, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", - "line": 32, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4164, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", - "line": 31, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamActionsDropdownComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4184, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4185, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4186, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4179, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4180, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4181, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4182, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4183, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4169 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4167, - 4168, - 4166, - 4177, - 4176, - 4171, - 4178, - 4170, - 4165, - 4164 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4184, - 4179, - 4181 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", - "line": 30, - "character": 56 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4187, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", - "line": 20, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n \n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4163 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4187 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/actions/actions-dropdown/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4213, - "name": "\"src/_docs/components/alert-footer/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/alert-footer/component-example.ts", - "children": [ - { - "id": 4214, - "name": "SamAlertFooterComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-sam-alert-footer',\n template: '' + code_example + ''\n}" - } - } - ], - "children": [ - { - "id": 4236, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4240, - "name": "new SamAlertFooterComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4241, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4242, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4243, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - }, - { - "id": 4244, - "name": "alertFooterService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamAlertFooterService", - "id": 3911 - } - } - ], - "type": { - "type": "reference", - "name": "SamAlertFooterComponentExampleComponent", - "id": 4214 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 91, - "character": 49 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4239, - "name": "alertFooterService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 97, - "character": 30 - } - ], - "type": { - "type": "reference", - "name": "SamAlertFooterService", - "id": 3911 - } - }, - { - "id": 4235, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 91, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/alert-footer/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4218, - "name": "checkboxOptions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 63, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 4219, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 4221, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 63, - "character": 42 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enabled\"" - }, - { - "id": 4220, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 63, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enabled\"" - }, - { - "id": 4222, - "name": "value", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 63, - "character": 58 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4221, - 4220, - 4222 - ] - } - ] - } - } - ] - }, - "defaultValue": " [{name:'Enabled',label:'Enabled',value:true}]" - }, - { - "id": 4223, - "name": "checkboxVal", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 64, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4217, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 62, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4230, - "name": "footerAlertTypes", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 72, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 4231, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 4232, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 73, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"success\"" - }, - { - "id": 4233, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 74, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"success\"" - }, - { - "id": 4234, - "name": "value", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 75, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"success\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4232, - 4233, - 4234 - ] - } - ] - } - } - ] - }, - "defaultValue": " [{\n label:'success',\n name:'success',\n value:'success',\n },{\n label:'warning',\n name:'warning',\n value:'warning',\n },{\n label:'error',\n name:'error',\n value:'error',\n },{\n label:'info',\n name:'info',\n value:'info',\n }]" - }, - { - "id": 4251, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4250, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4238, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 96, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4252, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4237, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 95, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4216, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 60, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4215, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 59, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamAlertFooterComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4258, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4259, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4260, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4245, - "name": "mustDimissHandler", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4246, - "name": "mustDimissHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4247, - "name": "item", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 104, - "character": 19 - } - ] - }, - { - "id": 4253, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4254, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4248, - "name": "onFooterAlertBtnClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4249, - "name": "onFooterAlertBtnClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 111, - "character": 23 - } - ] - }, - { - "id": 4255, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4256, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4257, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 4224, - "name": "footerAlertModel", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 4226, - "name": "description", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 67, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Lorem ipsum dolor sit amet, consectetur adipisicing elit.\"" - }, - { - "id": 4229, - "name": "mustDismiss", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 70, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4228, - "name": "timer", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 69, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 4225, - "name": "title", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 66, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"test title\"" - }, - { - "id": 4227, - "name": "type", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 68, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"error\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4226, - 4229, - 4228, - 4225, - 4227 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 65, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4236 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4239, - 4235, - 4218, - 4223, - 4217, - 4230, - 4251, - 4250, - 4238, - 4252, - 4237, - 4216, - 4215 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4258, - 4245, - 4253, - 4248, - 4255 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 4224 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 58, - "character": 52 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4261, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 20, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n\n\n\n\n\n\n\n\n\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4214 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4261 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/alert-footer/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4188, - "name": "\"src/_docs/components/alert/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/alert/component-example.ts", - "children": [ - { - "id": 4189, - "name": "AlertExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-alert',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 4194, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4197, - "name": "new AlertExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4198, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4199, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4200, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "AlertExampleComponent", - "id": 4189 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/alert/component-example.ts", - "line": 32, - "character": 42 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4193, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert/component-example.ts", - "line": 32, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/alert/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4192, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert/component-example.ts", - "line": 30, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4202, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4201, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4196, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert/component-example.ts", - "line": 37, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4203, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4195, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert/component-example.ts", - "line": 36, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4191, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert/component-example.ts", - "line": 28, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4190, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/alert/component-example.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamAlertComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4209, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4210, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4211, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4204, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4205, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4206, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4207, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4208, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4194 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4193, - 4192, - 4202, - 4201, - 4196, - 4203, - 4195, - 4191, - 4190 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4209, - 4204, - 4206 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/alert/component-example.ts", - "line": 26, - "character": 34 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4212, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/alert/component-example.ts", - "line": 13, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4189 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4212 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/alert/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4262, - "name": "\"src/_docs/components/badge/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/badge/component-example.ts", - "children": [ - { - "id": 4263, - "name": "SamBadgeComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sam-badge',\n template: ''+ code_example +''\n}" - } - } - ], - "children": [ - { - "id": 4268, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4271, - "name": "new SamBadgeComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4272, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4273, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4274, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamBadgeComponentExampleComponent", - "id": 4263 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/badge/component-example.ts", - "line": 34, - "character": 42 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4267, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/badge/component-example.ts", - "line": 34, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/badge/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4266, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/badge/component-example.ts", - "line": 32, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4276, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4275, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4270, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/badge/component-example.ts", - "line": 39, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4277, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4269, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/badge/component-example.ts", - "line": 38, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4265, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/badge/component-example.ts", - "line": 30, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4264, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/badge/component-example.ts", - "line": 29, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamBadgeComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4283, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4284, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4285, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4278, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4279, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4280, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4281, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4282, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4268 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4267, - 4266, - 4276, - 4275, - 4270, - 4277, - 4269, - 4265, - 4264 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4283, - 4278, - 4280 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/badge/component-example.ts", - "line": 28, - "character": 46 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4286, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/badge/component-example.ts", - "line": 19, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n
    \n hello\n
    `" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4263 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4286 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/badge/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4287, - "name": "\"src/_docs/components/banner/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/banner/component-example.ts", - "children": [ - { - "id": 4288, - "name": "BannerExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-banner',\n template: `\n\nView the banner at the top\n\n`\n}" - } - } - ], - "children": [ - { - "id": 4293, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4296, - "name": "new BannerExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4297, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4298, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4299, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "BannerExampleComponent", - "id": 4288 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/banner/component-example.ts", - "line": 26, - "character": 43 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4292, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/banner/component-example.ts", - "line": 26, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/banner/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4291, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/banner/component-example.ts", - "line": 24, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4301, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4300, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4295, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/banner/component-example.ts", - "line": 31, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4302, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4294, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/banner/component-example.ts", - "line": 30, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4290, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/banner/component-example.ts", - "line": 22, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4289, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/banner/component-example.ts", - "line": 21, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamBannerComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4308, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4309, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4310, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4303, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4304, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4305, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4306, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4307, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4293 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4292, - 4291, - 4301, - 4300, - 4295, - 4302, - 4294, - 4290, - 4289 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4308, - 4303, - 4305 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/banner/component-example.ts", - "line": 20, - "character": 35 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4288 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/banner/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4311, - "name": "\"src/_docs/components/breadcrumbs/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/breadcrumbs/component-example.ts", - "children": [ - { - "id": 4312, - "name": "SamBreadcrumbsComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-sam-breadcrumbs',\n template: `${code_example}`\n}" - } - } - ], - "children": [ - { - "id": 4320, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4323, - "name": "new SamBreadcrumbsComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4324, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4325, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4326, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamBreadcrumbsComponentExampleComponent", - "id": 4312 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/breadcrumbs/component-example.ts", - "line": 38, - "character": 48 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4319, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/breadcrumbs/component-example.ts", - "line": 38, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/breadcrumbs/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4316, - "name": "crumbs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/breadcrumbs/component-example.ts", - "line": 33, - "character": 8 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 4317, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 4318, - "name": "breadcrumb", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/breadcrumbs/component-example.ts", - "line": 35, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"...\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4318 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n { breadcrumb: 'Back to my workspace', url: '/workspace' },\n { breadcrumb: '...'}\n ]" - }, - { - "id": 4315, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/breadcrumbs/component-example.ts", - "line": 31, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4328, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4327, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4322, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/breadcrumbs/component-example.ts", - "line": 43, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4329, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4321, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/breadcrumbs/component-example.ts", - "line": 42, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4314, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/breadcrumbs/component-example.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4313, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/breadcrumbs/component-example.ts", - "line": 28, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamBreadcrumbsComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4335, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4336, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4337, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4330, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4331, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4332, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4333, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4334, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4320 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4319, - 4316, - 4315, - 4328, - 4327, - 4322, - 4329, - 4321, - 4314, - 4313 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4335, - 4330, - 4332 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/breadcrumbs/component-example.ts", - "line": 27, - "character": 52 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4338, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/breadcrumbs/component-example.ts", - "line": 20, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4312 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4338 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/breadcrumbs/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4339, - "name": "\"src/_docs/components/collapsible/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/collapsible/component-example.ts", - "children": [ - { - "id": 4340, - "name": "CollapsibleExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-collapsible',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 4345, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4348, - "name": "new CollapsibleExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4349, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4350, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4351, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "CollapsibleExampleComponent", - "id": 4340 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/collapsible/component-example.ts", - "line": 31, - "character": 48 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4344, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/collapsible/component-example.ts", - "line": 31, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/collapsible/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4343, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/collapsible/component-example.ts", - "line": 28, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4353, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4352, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4347, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/collapsible/component-example.ts", - "line": 36, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4354, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4346, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/collapsible/component-example.ts", - "line": 35, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4342, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/collapsible/component-example.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4341, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/collapsible/component-example.ts", - "line": 25, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamCollapsibleComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4360, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4361, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4362, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4355, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4356, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4357, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4358, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4359, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4345 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4344, - 4343, - 4353, - 4352, - 4347, - 4354, - 4346, - 4342, - 4341 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4360, - 4355, - 4357 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/collapsible/component-example.ts", - "line": 24, - "character": 40 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4363, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/collapsible/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n

    I got projected in here

    \n
    `" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4340 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4363 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/collapsible/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4685, - "name": "\"src/_docs/components/comments/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/comments/component-example.ts", - "children": [ - { - "id": 4686, - "name": "CommentsDemoService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 4690, - "name": "_comments", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 28, - "character": 18 - } - ], - "type": { - "type": "reference", - "isArray": true, - "name": "Comment", - "id": 4431 - }, - "defaultValue": " [\n {\n username: 'diego-dev@commoncomponents.team',\n datetime: new Date('6/1/2017'),\n text: 'Lorem ipsum dolor sit amet, consectetuer adiing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date('02/14/2017'),\n text: 'Lorem ipsum doit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient motur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lorem ipsum dolor sit amet, conctetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean ',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean modo ligula eget do\\n massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lo ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget do Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lorem ipsum dolor sit amet, consectetuer adcing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur us mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'carlos-dev@commoncomponents.team',\n datetime: new Date('7/16/2017'),\n text: 'Lorem ipsum dolor sit amet, consectetuer adipido ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.'\n },\n {\n username: 'diego-dev@commoncomponents.team',\n datetime: new Date('6/1/2017'),\n text: 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean masa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lorem ipsum doit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nectesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lorem ipsum dolor sit amet, conctetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quamies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean modo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus musquam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lo ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula egets, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur us mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n ]" - }, - { - "id": 4689, - "name": "_disabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 26, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4688, - "name": "_username", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 25, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"anon-user@common-components.team\"" - }, - { - "id": 4691, - "name": "lastIndex", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 108, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": " (this._comments.length - 1) - this.offset" - }, - { - "id": 4687, - "name": "offset", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 23, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "5" - }, - { - "id": 4704, - "name": "deleteComment", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4705, - "name": "deleteComment", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4706, - "name": "comment", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Comment", - "id": 4431 - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "reference", - "isArray": true, - "name": "Comment", - "id": 4431 - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 138, - "character": 15 - } - ] - }, - { - "id": 4699, - "name": "getComments", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4700, - "name": "getComments", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "reference", - "isArray": true, - "name": "Comment", - "id": 4431 - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 122, - "character": 13 - } - ] - }, - { - "id": 4707, - "name": "getInitialState", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4708, - "name": "getInitialState", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "reference", - "isArray": true, - "name": "Comment", - "id": 4431 - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 147, - "character": 17 - } - ] - }, - { - "id": 4697, - "name": "getUsername", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4698, - "name": "getUsername", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 118, - "character": 13 - } - ] - }, - { - "id": 4694, - "name": "isCommentDeletable", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4695, - "name": "isCommentDeletable", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4696, - "name": "comment", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Comment", - "id": 4431 - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 114, - "character": 20 - } - ] - }, - { - "id": 4692, - "name": "isCommentingDisabled", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4693, - "name": "isCommentingDisabled", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 110, - "character": 22 - } - ] - }, - { - "id": 4701, - "name": "postComment", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4702, - "name": "postComment", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4703, - "name": "_", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "reference", - "isArray": true, - "name": "Comment", - "id": 4431 - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 129, - "character": 13 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 4690, - 4689, - 4688, - 4691, - 4687 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4704, - 4699, - 4707, - 4697, - 4694, - 4692, - 4701 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 21, - "character": 32 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "CommentsService", - "id": 4409 - } - ] - }, - { - "id": 4709, - "name": "SamCommentsComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-sam-comments',\n template: '' + code_example + '',\n providers: [\n { provide: CommentsService, useClass: CommentsDemoService }\n ]\n}" - } - } - ], - "children": [ - { - "id": 4714, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4717, - "name": "new SamCommentsComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4718, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4719, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4720, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamCommentsComponentExampleComponent", - "id": 4709 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 172, - "character": 45 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4713, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 172, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/comments/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4712, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 170, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4722, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4721, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4716, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 177, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4723, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4715, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 176, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4711, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 168, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4710, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 167, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamCommentsComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4729, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4730, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4731, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4724, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4725, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4726, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4727, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4728, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4714 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4713, - 4712, - 4722, - 4721, - 4716, - 4723, - 4715, - 4711, - 4710 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4729, - 4724, - 4726 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 166, - "character": 49 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4732, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 154, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4686, - 4709 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4732 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/comments/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4733, - "name": "\"src/_docs/components/download/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/download/component-example.ts", - "children": [ - { - "id": 4734, - "name": "DownloadExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-download',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 4760, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4763, - "name": "new DownloadExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4764, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4765, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4766, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "DownloadExampleComponent", - "id": 4734 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 58, - "character": 45 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4759, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 58, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/download/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4755, - "name": "downloadAllUrl", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 52, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"http://fakesite.com/download/1234\"" - }, - { - "id": 4758, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 56, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4768, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4767, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4762, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 63, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4735, - "name": "packages", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 27, - "character": 10 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 4736, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 4741, - "name": "access", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 33, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Public\"" - }, - { - "id": 4753, - "name": "accordionState", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 48, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"collapsed\"" - }, - { - "id": 4754, - "name": "downloadUrl", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 49, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"http://fakesite.com/download/3333\"" - }, - { - "id": 4738, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 30, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Industry Day IV Change of Location\"" - }, - { - "id": 4737, - "name": "packageId", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"5510527885db16f1d7ae72ecfa8e6567\"" - }, - { - "id": 4740, - "name": "postedDate", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 32, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Apr 07, 2015\"" - }, - { - "id": 4742, - "name": "resources", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 34, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 4743, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 4747, - "name": "description", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 39, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Industry Day IV change of conference room.\"" - }, - { - "id": 4749, - "name": "downloadUrl", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 41, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"http://fakesite.com/download/4444\"" - }, - { - "id": 4745, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 37, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"J.pdf\"" - }, - { - "id": 4744, - "name": "resourceId", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 36, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"862178b04be2db1778a697464f186836\"" - }, - { - "id": 4748, - "name": "size", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 40, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"83 kB\"" - }, - { - "id": 4746, - "name": "type", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 38, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"file\"" - }, - { - "id": 4750, - "name": "typeInfo", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 4752, - "name": "iconClass", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 44, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"fa fa-file-pdf-o\"" - }, - { - "id": 4751, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 43, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"PDF document\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4752, - 4751 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 42, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4747, - 4749, - 4745, - 4744, - 4748, - 4746 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 4750 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n \"resourceId\": \"862178b04be2db1778a697464f186836\",\n \"name\": \"J.pdf\",\n \"type\": \"file\",\n \"description\": \"Industry Day IV change of conference room.\",\n \"size\": \"83 kB\",\n \"downloadUrl\": \"http://fakesite.com/download/4444\",\n \"typeInfo\": {\n \"name\": \"PDF document\",\n \"iconClass\": \"fa fa-file-pdf-o\"\n }\n }\n ]" - }, - { - "id": 4739, - "name": "type", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 31, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Other (Draft RFPs/RFIs, Responses to Questions, etc..)\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4741, - 4753, - 4754, - 4738, - 4737, - 4740, - 4742, - 4739 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n \"packageId\": \"5510527885db16f1d7ae72ecfa8e6567\",\n \"name\": \"Industry Day IV Change of Location\",\n \"type\": \"Other (Draft RFPs/RFIs, Responses to Questions, etc..)\",\n \"postedDate\": \"Apr 07, 2015\",\n \"access\": \"Public\",\n \"resources\": [\n {\n \"resourceId\": \"862178b04be2db1778a697464f186836\",\n \"name\": \"J.pdf\",\n \"type\": \"file\",\n \"description\": \"Industry Day IV change of conference room.\",\n \"size\": \"83 kB\",\n \"downloadUrl\": \"http://fakesite.com/download/4444\",\n \"typeInfo\": {\n \"name\": \"PDF document\",\n \"iconClass\": \"fa fa-file-pdf-o\"\n }\n }\n ],\n \"accordionState\": \"collapsed\",\n \"downloadUrl\": \"http://fakesite.com/download/3333\"\n }\n ]" - }, - { - "id": 4769, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4761, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 62, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4757, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 54, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4756, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 53, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamDownloadComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4775, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4776, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4777, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4770, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4771, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4772, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4773, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4774, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4760 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4759, - 4755, - 4758, - 4768, - 4767, - 4762, - 4735, - 4769, - 4761, - 4757, - 4756 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4775, - 4770, - 4772 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 26, - "character": 37 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4778, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `
    \n
    \n \n
    \n
    `" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4734 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4778 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/download/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4779, - "name": "\"src/_docs/components/files/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/files/component-example.ts", - "children": [ - { - "id": 4780, - "name": "SamFilesComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sam-files',\n template: ''+ code_example +''\n}" - } - } - ], - "children": [ - { - "id": 4785, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4788, - "name": "new SamFilesComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4789, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4790, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4791, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamFilesComponentExampleComponent", - "id": 4780 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/files/component-example.ts", - "line": 32, - "character": 42 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4784, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/files/component-example.ts", - "line": 32, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/files/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4783, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/files/component-example.ts", - "line": 29, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4793, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4792, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4787, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/files/component-example.ts", - "line": 37, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4794, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4786, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/files/component-example.ts", - "line": 36, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4782, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/files/component-example.ts", - "line": 27, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4781, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/files/component-example.ts", - "line": 26, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamFilesComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4800, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4801, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4802, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4795, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4796, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4797, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4798, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4799, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4785 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4784, - 4783, - 4793, - 4792, - 4787, - 4794, - 4786, - 4782, - 4781 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4800, - 4795, - 4797 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/files/component-example.ts", - "line": 25, - "character": 46 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4803, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/files/component-example.ts", - "line": 19, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `TODO`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4780 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4803 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/files/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4804, - "name": "\"src/_docs/components/filters-container/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/filters-container/component-example.ts", - "children": [ - { - "id": 4805, - "name": "FiltersContainerExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-spinner',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 4811, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4814, - "name": "new FiltersContainerExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4815, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4816, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4817, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "FiltersContainerExampleComponent", - "id": 4805 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/filters-container/component-example.ts", - "line": 39, - "character": 54 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4810, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/filters-container/component-example.ts", - "line": 39, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/filters-container/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4809, - "name": "dateModel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/filters-container/component-example.ts", - "line": 37, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"2016-02-03\"" - }, - { - "id": 4808, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/filters-container/component-example.ts", - "line": 36, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4819, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4818, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4813, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/filters-container/component-example.ts", - "line": 44, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4820, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4812, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/filters-container/component-example.ts", - "line": 43, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4807, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/filters-container/component-example.ts", - "line": 34, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4806, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/filters-container/component-example.ts", - "line": 33, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamFiltersContainerComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4826, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4827, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4828, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4821, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4822, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4823, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4824, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4825, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4811 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4810, - 4809, - 4808, - 4819, - 4818, - 4813, - 4820, - 4812, - 4807, - 4806 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4826, - 4821, - 4823 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/filters-container/component-example.ts", - "line": 32, - "character": 45 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4829, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/filters-container/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n \n

    Filter 1

    \n
    \n \n \n \n \n

    Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptate ex aliquam, molestiae tempora. Nihil alias blanditiis excepturi architecto rerum repellendus adipisci ducimus minus, modi porro nostrum repudiandae perferendis placeat et.

    \n
    \n
    `" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4805 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4829 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/filters-container/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4830, - "name": "\"src/_docs/components/header/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/header/component-example.ts", - "children": [ - { - "id": 4831, - "name": "SamHeaderComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-sam-header',\n template: '' + code_example + ''\n}" - } - } - ], - "children": [ - { - "id": 4836, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4839, - "name": "new SamHeaderComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4840, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4841, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4842, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamHeaderComponentExampleComponent", - "id": 4831 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/header/component-example.ts", - "line": 32, - "character": 43 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4835, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/header/component-example.ts", - "line": 32, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/header/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4834, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/header/component-example.ts", - "line": 30, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4844, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4843, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4838, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/header/component-example.ts", - "line": 37, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4845, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4837, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/header/component-example.ts", - "line": 36, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4833, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/header/component-example.ts", - "line": 28, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4832, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/header/component-example.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamHeaderComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4851, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4852, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4853, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4846, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4847, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4848, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4849, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4850, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4836 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4835, - 4834, - 4844, - 4843, - 4838, - 4845, - 4837, - 4833, - 4832 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4851, - 4846, - 4848 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/header/component-example.ts", - "line": 26, - "character": 47 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4854, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/header/component-example.ts", - "line": 20, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `TODO`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4831 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4854 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/header/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4855, - "name": "\"src/_docs/components/history/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/history/component-example.ts", - "children": [ - { - "id": 4856, - "name": "HistoryExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-history',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 4871, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4874, - "name": "new HistoryExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4875, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4876, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4877, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "HistoryExampleComponent", - "id": 4856 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 54, - "character": 44 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4870, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 54, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/history/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4869, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 52, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4879, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4857, - "name": "history", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 27, - "character": 9 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 4858, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 4859, - "name": "authoritative", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 29, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"0\"" - }, - { - "id": 4860, - "name": "date", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 30, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Feb 04, 2016 8:20am\"" - }, - { - "id": 4861, - "name": "description", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 31, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Lorem Ipsum\"" - }, - { - "id": 4862, - "name": "id", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 32, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"0564cc38f28e1a85ea66de2bb78dae29\"" - }, - { - "id": 4863, - "name": "index", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 33, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"1\"" - }, - { - "id": 4864, - "name": "isTagged", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 34, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4865, - "name": "title", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 35, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Original Combined Synopsis/Solicitation\"" - }, - { - "id": 4866, - "name": "url", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 36, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"opportunities/0564cc38f28e1a85ea66de2bb78dae29\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4859, - 4860, - 4861, - 4862, - 4863, - 4864, - 4865, - 4866 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n authoritative: \"0\",\n date: \"Feb 04, 2016 8:20am\",\n description: \"Lorem Ipsum\",\n id: \"0564cc38f28e1a85ea66de2bb78dae29\",\n index: \"1\",\n isTagged: false,\n title: \"Original Combined Synopsis/Solicitation\",\n url: \"opportunities/0564cc38f28e1a85ea66de2bb78dae29\",\n },\n {\n authoritative: \"1\",\n date: \"Mar 13, 2016 1:21pm\",\n description: \"\",\n id: \"1a610c814d73fc23a6b71decc9b4c548\",\n index: \"2\",\n isTagged: false,\n title: \"Award Notice\",\n url: \"opportunities/1a610c814d73fc23a6b71decc9b4c548\",\n }\n ]" - }, - { - "id": 4878, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4873, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 59, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4880, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4872, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 58, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4868, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 50, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4867, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 49, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamHistoryComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4886, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4887, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4888, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4881, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4882, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4883, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4884, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4885, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4871 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4870, - 4869, - 4879, - 4857, - 4878, - 4873, - 4880, - 4872, - 4868, - 4867 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4886, - 4881, - 4883 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 26, - "character": 36 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4889, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `
    \n
    \n \n
    \n
    `" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4856 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4889 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/history/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4890, - "name": "\"src/_docs/components/image/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/image/component-example.ts", - "children": [ - { - "id": 4891, - "name": "SamImageComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-sam-image',\n template: '' + code_example + ''\n}" - } - } - ], - "children": [ - { - "id": 4896, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4899, - "name": "new SamImageComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4900, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4901, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4902, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamImageComponentExampleComponent", - "id": 4891 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/image/component-example.ts", - "line": 37, - "character": 42 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4895, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/image/component-example.ts", - "line": 37, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/image/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4894, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/image/component-example.ts", - "line": 35, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4907, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4906, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4898, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/image/component-example.ts", - "line": 42, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4908, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4897, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/image/component-example.ts", - "line": 41, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4893, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/image/component-example.ts", - "line": 33, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4892, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/image/component-example.ts", - "line": 32, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamImageComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4914, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4915, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4916, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4903, - "name": "fileChangeHandler", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4904, - "name": "fileChangeHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4905, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/image/component-example.ts", - "line": 49, - "character": 26 - } - ] - }, - { - "id": 4909, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4910, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4911, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4912, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4913, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4896 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4895, - 4894, - 4907, - 4906, - 4898, - 4908, - 4897, - 4893, - 4892 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4914, - 4903, - 4909, - 4911 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/image/component-example.ts", - "line": 31, - "character": 46 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4917, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/image/component-example.ts", - "line": 20, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4891 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4917 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/image/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4918, - "name": "\"src/_docs/components/info-accordion/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/info-accordion/component-example.ts", - "children": [ - { - "id": 4919, - "name": "InfoAccordionExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-info-accordion',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 4931, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4934, - "name": "new InfoAccordionExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4935, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4936, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4937, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "InfoAccordionExampleComponent", - "id": 4919 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 62, - "character": 51 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4930, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 62, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/info-accordion/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4920, - "name": "dataConfig", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 27, - "character": 12 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 4921, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 4923, - "name": "detail", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 30, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Details for Federal Acquisition Regulation: \"" - }, - { - "id": 4926, - "name": "img", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 33, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"http://placehold.it/200x200\"" - }, - { - "id": 4924, - "name": "link", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 31, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"View FAR\"" - }, - { - "id": 4922, - "name": "title", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 29, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Federal Acquisition Regulation\"" - }, - { - "id": 4925, - "name": "url", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 32, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"https://www.acquisition.gov/?q=browsefar\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4923, - 4926, - 4924, - 4922, - 4925 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n title:\"Federal Acquisition Regulation\",\n detail:\"Details for Federal Acquisition Regulation: \",\n link:\"View FAR\",\n url:\"https://www.acquisition.gov/?q=browsefar\",\n img:\"http://placehold.it/200x200\"\n },\n {\n title:\"Federal Acquisition Regulation\",\n detail:\"Details for Federal Acquisition Regulation: \",\n link:\"View FAR\",\n url:\"https://www.acquisition.gov/?q=browsefar\",\n img:\"http://placehold.it/200x200\"\n },\n {\n title:\"SBA Commercial Market Representative\",\n detail:\"Details for SBA Commercial Market Representative: \",\n link:\"View SBA CMR\",\n url:\"https://www.sba.gov/contracting/resources-small-businesses/commercial-market-representatives\",\n img:\"http://placehold.it/200x200\"\n },\n {\n title:\"Request DUNS Number\",\n detail:\"Details for Request DUNS Number: \",\n link:\"View DUNS Number\",\n url:\"http://fedgov.dnb.com/webform\",\n img:\"http://placehold.it/200x200\"\n }\n ]" - }, - { - "id": 4929, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 60, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4939, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4938, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4933, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 67, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4940, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4932, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 66, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4928, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 58, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4927, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 57, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamInfoAccordionComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4946, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4947, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4948, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4941, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4942, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4943, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4944, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4945, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4931 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4930, - 4920, - 4929, - 4939, - 4938, - 4933, - 4940, - 4932, - 4928, - 4927 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4946, - 4941, - 4943 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 26, - "character": 42 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4949, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `
    \n
    \n \n
    \n
    `" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4919 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4949 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/info-accordion/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4950, - "name": "\"src/_docs/components/label/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/label/component-example.ts", - "children": [ - { - "id": 4951, - "name": "LabelExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-label',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 4956, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4959, - "name": "new LabelExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4960, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4961, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4962, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "LabelExampleComponent", - "id": 4951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/label/component-example.ts", - "line": 28, - "character": 42 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4955, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/label/component-example.ts", - "line": 28, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/label/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4954, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/label/component-example.ts", - "line": 26, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 4964, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 4963, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 4958, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/label/component-example.ts", - "line": 33, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4965, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 4957, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/label/component-example.ts", - "line": 32, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4953, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/label/component-example.ts", - "line": 24, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4952, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/label/component-example.ts", - "line": 23, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamLabelComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4971, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4972, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4973, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 4966, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4967, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 4968, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4969, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4970, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4956 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4955, - 4954, - 4964, - 4963, - 4958, - 4965, - 4957, - 4953, - 4952 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4971, - 4966, - 4968 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/label/component-example.ts", - "line": 22, - "character": 34 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4974, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/label/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4951 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4974 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/label/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4975, - "name": "\"src/_docs/components/modal/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/modal/component-example.ts", - "children": [ - { - "id": 4976, - "name": "ModalExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-modal',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 4999, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5002, - "name": "new ModalExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5003, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5004, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5005, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "ModalExampleComponent", - "id": 4976 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 118, - "character": 42 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 4998, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 118, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/modal/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 4987, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 93, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5027, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5026, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5001, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 123, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 4988, - "name": "message", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 94, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 4989, - "name": "modalAlertTypes", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 95, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 4990, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 4991, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 96, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"success\"" - }, - { - "id": 4992, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 97, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"success\"" - }, - { - "id": 4993, - "name": "value", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 98, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"success\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4991, - 4992, - 4993 - ] - } - ] - } - } - ] - }, - "defaultValue": " [{\n label:'success',\n name:'success',\n value:'success'\n },{\n label:'warning',\n name:'warning',\n value:'warning'\n },{\n label:'error',\n name:'error',\n value:'error'\n },{\n label:'info',\n name:'info',\n value:'info'\n }]" - }, - { - "id": 5028, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5000, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 122, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 4986, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 91, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 4985, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 90, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamModalComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 4980, - "name": "vcModal1", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'modal1'" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 85, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 4981, - "name": "vcModal2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'modal2'" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 86, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 4982, - "name": "vcModal3", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'modal3'" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 87, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 4983, - "name": "vcModal4", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'modal4'" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 88, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 4984, - "name": "vcModal5", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'modal5'" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 89, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 5034, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5035, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5036, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5029, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5030, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5012, - "name": "onModal2Close", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5013, - "name": "onModal2Close", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 139, - "character": 15 - } - ] - }, - { - "id": 5016, - "name": "onModal3Close", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5017, - "name": "onModal3Close", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 145, - "character": 15 - } - ] - }, - { - "id": 5020, - "name": "onModal4Close", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5021, - "name": "onModal4Close", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 151, - "character": 15 - } - ] - }, - { - "id": 5024, - "name": "onModal5Close", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5025, - "name": "onModal5Close", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 157, - "character": 15 - } - ] - }, - { - "id": 5022, - "name": "onModal5InitClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5023, - "name": "onModal5InitClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 154, - "character": 19 - } - ] - }, - { - "id": 5008, - "name": "onModalClose", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5009, - "name": "onModalClose", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 133, - "character": 14 - } - ] - }, - { - "id": 5010, - "name": "onModalInit2Click", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5011, - "name": "onModalInit2Click", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 136, - "character": 19 - } - ] - }, - { - "id": 5014, - "name": "onModalInit3Click", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5015, - "name": "onModalInit3Click", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 142, - "character": 19 - } - ] - }, - { - "id": 5018, - "name": "onModalInit4Click", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5019, - "name": "onModalInit4Click", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 148, - "character": 19 - } - ] - }, - { - "id": 5006, - "name": "onModalInitClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5007, - "name": "onModalInitClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 130, - "character": 17 - } - ] - }, - { - "id": 5031, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5032, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5033, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 4977, - "name": "modalConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 4979, - "name": "description", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 83, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Description Text\"" - }, - { - "id": 4978, - "name": "title", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 82, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Test Title\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4979, - 4978 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 81, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 4994, - "name": "modalConfig2", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 4997, - "name": "description", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 115, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"lorem ipsum lorem ipsum lorem ipsum lorem ipsum.\"" - }, - { - "id": 4996, - "name": "title", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 114, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Sample Title\"" - }, - { - "id": 4995, - "name": "type", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 113, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"success\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4997, - 4996, - 4995 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 112, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4999 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4998, - 4987, - 5027, - 5026, - 5001, - 4988, - 4989, - 5028, - 5000, - 4986, - 4985, - 4980, - 4981, - 4982, - 4983, - 4984 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5034, - 5029, - 5012, - 5016, - 5020, - 5024, - 5022, - 5008, - 5010, - 5014, - 5018, - 5006, - 5031 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 4977, - 4994 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 80, - "character": 34 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5037, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 13, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n\n\n\n\n\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptate vero, esse ratione quis quasi commodi distinctio sit aut eum facilis minima hic saepe ut ex, aliquid minus non maxime quod!\n\n\n\n\n

    {{message}}

    \n\n
    \n
    \nShow Warning Modal
    \n\n
    \n\n\n\n\n\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4976 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5037 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/modal/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5038, - "name": "\"src/_docs/components/multiselect-dropdown/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/multiselect-dropdown/component-example.ts", - "children": [ - { - "id": 5039, - "name": "MultiselectDropdownExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-multiselect-dropdown',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 5052, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5055, - "name": "new MultiselectDropdownExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5056, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5057, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5058, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "MultiselectDropdownExampleComponent", - "id": 5039 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 42, - "character": 57 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5051, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 42, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/multiselect-dropdown/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5050, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 40, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5040, - "name": "filterTypes", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 28, - "character": 12 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " ['Error', 'Informational', 'Warning']" - }, - { - "id": 5060, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5059, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5054, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 47, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5061, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5053, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 46, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5049, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 38, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5048, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 37, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamMultiSelectDropdownComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5067, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5068, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5069, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5062, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5063, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5064, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5065, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5066, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 5041, - "name": "types", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 5042, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 30, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Types\"" - }, - { - "id": 5043, - "name": "options", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 31, - "character": 11 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 5044, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 5045, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 32, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Informational\"" - }, - { - "id": 5047, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 32, - "character": 60 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"informational\"" - }, - { - "id": 5046, - "name": "value", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 32, - "character": 37 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Informational\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5045, - 5047, - 5046 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n { label: 'Informational', value: 'Informational', name: 'informational' },\n { label: 'Error', value: 'Error', name: 'error' },\n { label: 'Warning', value: 'Warning', name: 'warning' }\n ]" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5042, - 5043 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 29, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5052 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5051, - 5050, - 5040, - 5060, - 5059, - 5054, - 5061, - 5053, - 5049, - 5048 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5067, - 5062, - 5064 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 5041 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 27, - "character": 48 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5070, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5039 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5070 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5071, - "name": "\"src/_docs/components/pagination/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/pagination/component-example.ts", - "children": [ - { - "id": 5072, - "name": "PaginationExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-pagination',\n template: `\n\n\n\n`\n}" - } - } - ], - "children": [ - { - "id": 5080, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5083, - "name": "new PaginationExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5084, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5085, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5086, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "PaginationExampleComponent", - "id": 5072 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/pagination/component-example.ts", - "line": 29, - "character": 47 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5079, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/pagination/component-example.ts", - "line": 29, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/pagination/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5078, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/pagination/component-example.ts", - "line": 27, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5088, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5087, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5082, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/pagination/component-example.ts", - "line": 34, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5089, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5081, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/pagination/component-example.ts", - "line": 33, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5077, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/pagination/component-example.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5076, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/pagination/component-example.ts", - "line": 24, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamPaginationComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5095, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5096, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5097, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5090, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5091, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5092, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5093, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5094, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 5073, - "name": "paginationConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 5074, - "name": "currentPage", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/pagination/component-example.ts", - "line": 21, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "1" - }, - { - "id": 5075, - "name": "totalPages", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/pagination/component-example.ts", - "line": 22, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "4" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5074, - 5075 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/pagination/component-example.ts", - "line": 20, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5080 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5079, - 5078, - 5088, - 5087, - 5082, - 5089, - 5081, - 5077, - 5076 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5095, - 5090, - 5092 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 5073 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/pagination/component-example.ts", - "line": 19, - "character": 39 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5072 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/pagination/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5098, - "name": "\"src/_docs/components/point-of-contact/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/point-of-contact/component-example.ts", - "children": [ - { - "id": 5099, - "name": "POCExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-poc',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 5113, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5116, - "name": "new POCExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5117, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5118, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5119, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "POCExampleComponent", - "id": 5099 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 38, - "character": 53 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5112, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 38, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/point-of-contact/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5111, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 36, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5121, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5120, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5115, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 43, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5122, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5114, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 42, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5110, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 34, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5109, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 33, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamPointOfContactComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5128, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5129, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5130, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5123, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5124, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5125, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5126, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5127, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 5100, - "name": "pointOfContact", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 5102, - "name": "address", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 25, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"1234 Waterway Rd\"" - }, - { - "id": 5103, - "name": "city", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 26, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Norfolk\"" - }, - { - "id": 5106, - "name": "email", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 29, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"jdoe@test.gov\"" - }, - { - "id": 5101, - "name": "fullName", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 24, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"John Doe\"" - }, - { - "id": 5107, - "name": "phone", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 30, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"222-222-2222\"" - }, - { - "id": 5104, - "name": "state", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 27, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"VA\"" - }, - { - "id": 5108, - "name": "website", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 31, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"www.testsite.gov\"" - }, - { - "id": 5105, - "name": "zip", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 28, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"12345\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5102, - 5103, - 5106, - 5101, - 5107, - 5104, - 5108, - 5105 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 23, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5113 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5112, - 5111, - 5121, - 5120, - 5115, - 5122, - 5114, - 5110, - 5109 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5128, - 5123, - 5125 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 5100 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 22, - "character": 32 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5131, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5099 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5131 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/point-of-contact/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5132, - "name": "\"src/_docs/components/progress-bar/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/progress-bar/component-example.ts", - "children": [ - { - "id": 5133, - "name": "SamProgressExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sam-progress-bar',\n template: ''+ code_example +''\n}" - } - } - ], - "children": [ - { - "id": 5138, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5141, - "name": "new SamProgressExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5142, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5143, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5144, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamProgressExampleComponent", - "id": 5133 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/progress-bar/component-example.ts", - "line": 32, - "character": 49 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5137, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/progress-bar/component-example.ts", - "line": 32, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/progress-bar/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5136, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/progress-bar/component-example.ts", - "line": 29, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5146, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5145, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5140, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/progress-bar/component-example.ts", - "line": 37, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5147, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5139, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/progress-bar/component-example.ts", - "line": 36, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5135, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/progress-bar/component-example.ts", - "line": 27, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5134, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/progress-bar/component-example.ts", - "line": 26, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamProgress\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5153, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5154, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5155, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5148, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5149, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5150, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5151, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5152, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5138 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5137, - 5136, - 5146, - 5145, - 5140, - 5147, - 5139, - 5135, - 5134 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5153, - 5148, - 5150 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/progress-bar/component-example.ts", - "line": 25, - "character": 40 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5156, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/progress-bar/component-example.ts", - "line": 19, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `TODO`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5133 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5156 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/progress-bar/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5157, - "name": "\"src/_docs/components/sidenav/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/sidenav/component-example.ts", - "children": [ - { - "id": 5158, - "name": "SidenavExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sidenav',\n template: `\n\nSee sidenav on the left\n\n`\n}" - } - } - ], - "children": [ - { - "id": 5163, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5166, - "name": "new SidenavExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5167, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5168, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5169, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SidenavExampleComponent", - "id": 5158 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/sidenav/component-example.ts", - "line": 27, - "character": 44 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5162, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/sidenav/component-example.ts", - "line": 27, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/sidenav/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5161, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/sidenav/component-example.ts", - "line": 25, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5171, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5170, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5165, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/sidenav/component-example.ts", - "line": 32, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5172, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5164, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/sidenav/component-example.ts", - "line": 31, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5160, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/sidenav/component-example.ts", - "line": 24, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5159, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/sidenav/component-example.ts", - "line": 23, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamSidenavComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5178, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5179, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5180, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5173, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5174, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5175, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5176, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5177, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5163 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5162, - 5161, - 5171, - 5170, - 5165, - 5172, - 5164, - 5160, - 5159 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5178, - 5173, - 5175 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/sidenav/component-example.ts", - "line": 22, - "character": 36 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5181, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/sidenav/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5158 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5181 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/sidenav/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5182, - "name": "\"src/_docs/components/spinner/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/spinner/component-example.ts", - "children": [ - { - "id": 5183, - "name": "SpinnerExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-spinner',\n template: `\n\n` + code_example + `\n\n`\n}" - } - } - ], - "children": [ - { - "id": 5188, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5191, - "name": "new SpinnerExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5192, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5193, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5194, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SpinnerExampleComponent", - "id": 5183 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/spinner/component-example.ts", - "line": 28, - "character": 44 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5187, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/spinner/component-example.ts", - "line": 28, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/spinner/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5186, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/spinner/component-example.ts", - "line": 26, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5196, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5195, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5190, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/spinner/component-example.ts", - "line": 33, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5197, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5189, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/spinner/component-example.ts", - "line": 32, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5185, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/spinner/component-example.ts", - "line": 24, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5184, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/spinner/component-example.ts", - "line": 23, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamSpinnerComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5203, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5204, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5205, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5198, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5199, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5200, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5201, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5202, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5188 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5187, - 5186, - 5196, - 5195, - 5190, - 5197, - 5189, - 5185, - 5184 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5203, - 5198, - 5200 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/spinner/component-example.ts", - "line": 22, - "character": 36 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5206, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/spinner/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5183 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5206 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/spinner/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5207, - "name": "\"src/_docs/components/tabs/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/tabs/component-example.ts", - "children": [ - { - "id": 5208, - "name": "TabsExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-tabs',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 5213, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5216, - "name": "new TabsExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5217, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5218, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5219, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "TabsExampleComponent", - "id": 5208 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/tabs/component-example.ts", - "line": 36, - "character": 41 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5212, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/tabs/component-example.ts", - "line": 36, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/tabs/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5211, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/tabs/component-example.ts", - "line": 33, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5227, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5226, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5215, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/tabs/component-example.ts", - "line": 41, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5228, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5214, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/tabs/component-example.ts", - "line": 40, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5210, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/tabs/component-example.ts", - "line": 31, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5209, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/tabs/component-example.ts", - "line": 30, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamTabsComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5220, - "name": "currentTabSelected", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5221, - "name": "currentTabSelected", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5222, - "name": "evt", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/tabs/component-example.ts", - "line": 48, - "character": 27 - } - ] - }, - { - "id": 5234, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5235, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5236, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5229, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5230, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5231, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5232, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5233, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 5223, - "name": "tabSelected", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5224, - "name": "tabSelected", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5225, - "name": "evt", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/tabs/component-example.ts", - "line": 50, - "character": 19 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5213 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5212, - 5211, - 5227, - 5226, - 5215, - 5228, - 5214, - 5210, - 5209 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5220, - 5234, - 5229, - 5231, - 5223 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/tabs/component-example.ts", - "line": 29, - "character": 33 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5237, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/tabs/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n \n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Culpa rerum nemo officia nam atque nulla tempore explicabo, at voluptatem omnis ad, possimus. Odio, ex, nostrum. Pariatur tempore, accusamus deleniti magnam!\n \n \n Lorem ipsum dolor sit amet. Doloribus similique ea quam laudantium, cum ducimus labore natus dicta excepturi nam voluptas ut placeat eum esse, beatae rem. Tempore expedita, nostrum.\n \n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5208 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5237 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/tabs/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5238, - "name": "\"src/_docs/components/upload/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/components/upload/component-example.ts", - "children": [ - { - "id": 5239, - "name": "SamUploadComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sam-upload',\n template: ''+ code_example +''\n}" - } - } - ], - "children": [ - { - "id": 5244, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5247, - "name": "new SamUploadComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5248, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5249, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5250, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamUploadComponentExampleComponent", - "id": 5239 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/components/upload/component-example.ts", - "line": 31, - "character": 43 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5243, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/upload/component-example.ts", - "line": 31, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/upload/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5242, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/upload/component-example.ts", - "line": 29, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5252, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5251, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5246, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/upload/component-example.ts", - "line": 36, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5253, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5245, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/components/upload/component-example.ts", - "line": 35, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5241, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/upload/component-example.ts", - "line": 27, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5240, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/components/upload/component-example.ts", - "line": 26, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamUploadComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5259, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5260, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5261, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5254, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5255, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5256, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5257, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5258, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5244 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5243, - 5242, - 5252, - 5251, - 5246, - 5253, - 5245, - 5241, - 5240 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5259, - 5254, - 5256 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/upload/component-example.ts", - "line": 25, - "character": 47 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5262, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/components/upload/component-example.ts", - "line": 19, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `TODO`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5239 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5262 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/components/upload/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9141, - "name": "\"src/_docs/data-structures/interfaces/interfaces.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/data-structures/interfaces/interfaces.component.ts", - "children": [ - { - "id": 9142, - "name": "InterfacesComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-interfaces',\n templateUrl: 'interfaces.template.html'\n}" - } - } - ], - "children": [ - { - "id": 9144, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9146, - "name": "new InterfacesComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9147, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - } - ], - "type": { - "type": "reference", - "name": "InterfacesComponent", - "id": 9142 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/data-structures/interfaces/interfaces.component.ts", - "line": 20, - "character": 27 - } - ] - }, - { - "id": 9143, - "name": "interfaces", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/data-structures/interfaces/interfaces.component.ts", - "line": 20, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - }, - { - "id": 9145, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/data-structures/interfaces/interfaces.component.ts", - "line": 22, - "character": 28 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9144 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9143, - 9145 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/data-structures/interfaces/interfaces.component.ts", - "line": 19, - "character": 32 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9142 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/data-structures/interfaces/interfaces.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5263, - "name": "\"src/_docs/directives/click-outside/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/directives/click-outside/component-example.ts", - "children": [ - { - "id": 5264, - "name": "ClickOutsideExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-click-outside',\n template: `\n\n

    Click value: {{clickedValue}}

    \n`+code_example+`\n
    \n`\n}" - } - } - ], - "children": [ - { - "id": 5270, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5273, - "name": "new ClickOutsideExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5274, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5275, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5276, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "ClickOutsideExampleComponent", - "id": 5264 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/click-outside/component-example.ts", - "line": 30, - "character": 50 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5269, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/click-outside/component-example.ts", - "line": 30, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/directives/click-outside/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5265, - "name": "clickedValue", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/click-outside/component-example.ts", - "line": 24, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"None\"" - }, - { - "id": 5268, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/click-outside/component-example.ts", - "line": 28, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5282, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5281, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5272, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/click-outside/component-example.ts", - "line": 35, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5283, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5271, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/click-outside/component-example.ts", - "line": 34, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5267, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/click-outside/component-example.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5266, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/click-outside/component-example.ts", - "line": 25, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamClickOutsideDirective\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5279, - "name": "clickInsideHandler", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5280, - "name": "clickInsideHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/click-outside/component-example.ts", - "line": 46, - "character": 27 - } - ] - }, - { - "id": 5277, - "name": "clickOutsideHandler", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5278, - "name": "clickOutsideHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/click-outside/component-example.ts", - "line": 42, - "character": 28 - } - ] - }, - { - "id": 5289, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5290, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5291, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5284, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5285, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5286, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5287, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5288, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5270 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5269, - 5265, - 5268, - 5282, - 5281, - 5272, - 5283, - 5271, - 5267, - 5266 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5279, - 5277, - 5289, - 5284, - 5286 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/click-outside/component-example.ts", - "line": 23, - "character": 41 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5292, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/directives/click-outside/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5264 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5292 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/click-outside/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5293, - "name": "\"src/_docs/directives/drag-drop/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/directives/drag-drop/component-example.ts", - "children": [ - { - "id": 5294, - "name": "SamDragDropDirectiveExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sam-drag-drop',\n template: ''+ code_example +''\n}" - } - } - ], - "children": [ - { - "id": 5299, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5302, - "name": "new SamDragDropDirectiveExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5303, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5304, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5305, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamDragDropDirectiveExampleComponent", - "id": 5294 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/drag-drop/component-example.ts", - "line": 32, - "character": 46 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5298, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/drag-drop/component-example.ts", - "line": 32, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/drag-drop/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5297, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/drag-drop/component-example.ts", - "line": 29, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5307, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5306, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5301, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/drag-drop/component-example.ts", - "line": 37, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5308, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5300, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/drag-drop/component-example.ts", - "line": 36, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5296, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/drag-drop/component-example.ts", - "line": 27, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5295, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/drag-drop/component-example.ts", - "line": 26, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamDragDropDirective\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5314, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5315, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5316, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5309, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5310, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5311, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5312, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5313, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5299 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5298, - 5297, - 5307, - 5306, - 5301, - 5308, - 5300, - 5296, - 5295 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5314, - 5309, - 5311 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/drag-drop/component-example.ts", - "line": 25, - "character": 49 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5317, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/directives/drag-drop/component-example.ts", - "line": 19, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `TODO`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5294 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5317 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/drag-drop/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5318, - "name": "\"src/_docs/directives/focus/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/directives/focus/component-example.ts", - "children": [ - { - "id": 5319, - "name": "SamFocusDirectiveExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-sam-focus',\n template: ' '+ code_example + ''\n}" - } - } - ], - "children": [ - { - "id": 5324, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5327, - "name": "new SamFocusDirectiveExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5328, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5329, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5330, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamFocusDirectiveExampleComponent", - "id": 5319 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/focus/component-example.ts", - "line": 32, - "character": 42 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5323, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/focus/component-example.ts", - "line": 32, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/directives/focus/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5322, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/focus/component-example.ts", - "line": 30, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5332, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5331, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5326, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/focus/component-example.ts", - "line": 37, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5333, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5325, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/focus/component-example.ts", - "line": 36, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5321, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/focus/component-example.ts", - "line": 28, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5320, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/focus/component-example.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamFocusDirective\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5339, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5340, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5341, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5334, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5335, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5336, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5337, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5338, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5324 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5323, - 5322, - 5332, - 5331, - 5326, - 5333, - 5325, - 5321, - 5320 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5339, - 5334, - 5336 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/focus/component-example.ts", - "line": 26, - "character": 46 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5342, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/directives/focus/component-example.ts", - "line": 20, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"TODO\"" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5319 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5342 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/focus/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5343, - "name": "\"src/_docs/directives/sticky/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/directives/sticky/component-example.ts", - "children": [ - { - "id": 5344, - "name": "StickyExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sticky',\n template: `\n\nScroll down and see Sidenav\n\n
    \n`\n}" - } - } - ], - "children": [ - { - "id": 5349, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5352, - "name": "new StickyExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5353, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5354, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5355, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "StickyExampleComponent", - "id": 5344 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/sticky/component-example.ts", - "line": 39, - "character": 43 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5348, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/sticky/component-example.ts", - "line": 39, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/directives/sticky/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5347, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/sticky/component-example.ts", - "line": 27, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `
    \n
    \n \n  \n
    \n
    \n ...\n
    \n
    `", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5357, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5356, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5351, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/sticky/component-example.ts", - "line": 44, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5358, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5350, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/sticky/component-example.ts", - "line": 43, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5346, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/sticky/component-example.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5345, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/sticky/component-example.ts", - "line": 24, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamStickyComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5364, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5365, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5366, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5359, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5360, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5361, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5362, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5363, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5349 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5348, - 5347, - 5357, - 5356, - 5351, - 5358, - 5350, - 5346, - 5345 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5364, - 5359, - 5361 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/sticky/component-example.ts", - "line": 23, - "character": 35 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5344 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/sticky/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5367, - "name": "\"src/_docs/directives/tab-outside/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/directives/tab-outside/component-example.ts", - "children": [ - { - "id": 5368, - "name": "TabOutsideExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-taboutside',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 5374, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5377, - "name": "new TabOutsideExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5378, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5379, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5380, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "TabOutsideExampleComponent", - "id": 5368 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/tab-outside/component-example.ts", - "line": 32, - "character": 48 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5373, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/tab-outside/component-example.ts", - "line": 32, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/directives/tab-outside/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5371, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/tab-outside/component-example.ts", - "line": 28, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5387, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5386, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5376, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/tab-outside/component-example.ts", - "line": 37, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5388, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5375, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/tab-outside/component-example.ts", - "line": 36, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5372, - "name": "tabAway", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/tab-outside/component-example.ts", - "line": 30, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"not tabbed away\"" - }, - { - "id": 5370, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/tab-outside/component-example.ts", - "line": 26, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5369, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/directives/tab-outside/component-example.ts", - "line": 25, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamTabOutsideDirective\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5394, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5395, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5396, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5389, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5390, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5384, - "name": "reset", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5385, - "name": "reset", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/tab-outside/component-example.ts", - "line": 47, - "character": 14 - } - ] - }, - { - "id": 5391, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5392, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5393, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 5381, - "name": "tabHandler", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5382, - "name": "tabHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5383, - "name": "evt", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/tab-outside/component-example.ts", - "line": 44, - "character": 19 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5374 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5373, - 5371, - 5387, - 5386, - 5376, - 5388, - 5375, - 5372, - 5370, - 5369 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5394, - 5389, - 5384, - 5391, - 5381 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/tab-outside/component-example.ts", - "line": 24, - "character": 39 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5397, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/directives/tab-outside/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ` \n

    {{ tabAway }}

    \n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5368 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5397 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/directives/tab-outside/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9169, - "name": "\"src/_docs/doc.module.dynamic\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/doc.module.dynamic.ts", - "comment": { - "shortText": "/" - }, - "children": [ - { - "id": 9170, - "name": "DocModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "AppModule` is the main entry point into Angular2's bootstraping process" - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n\tdeclarations: [\n\t\tAccordionExampleComponent,\n\t\tSamActionButtonExampleComponent,\n\t\tSamActionsDropdownComponentExampleComponent,\n\t\tAlertExampleComponent,\n\t\tSamAlertFooterComponentExampleComponent,\n\t\tSamBadgeComponentExampleComponent,\n\t\tBannerExampleComponent,\n\t\tSamBreadcrumbsComponentExampleComponent,\n\t\tCollapsibleExampleComponent,\n\t\tSamCommentsComponentExampleComponent,\n\t\tDownloadExampleComponent,\n\t\tSamFilesComponentExampleComponent,\n\t\tFiltersContainerExampleComponent,\n\t\tSamHeaderComponentExampleComponent,\n\t\tHistoryExampleComponent,\n\t\tSamImageComponentExampleComponent,\n\t\tInfoAccordionExampleComponent,\n\t\tLabelExampleComponent,\n\t\tModalExampleComponent,\n\t\tMultiselectDropdownExampleComponent,\n\t\tPaginationExampleComponent,\n\t\tPOCExampleComponent,\n\t\tSamProgressExampleComponent,\n\t\tSidenavExampleComponent,\n\t\tSpinnerExampleComponent,\n\t\tTabsExampleComponent,\n\t\tSamUploadComponentExampleComponent,\n\t\tClickOutsideExampleComponent,\n\t\tSamDragDropDirectiveExampleComponent,\n\t\tSamFocusDirectiveExampleComponent,\n\t\tStickyExampleComponent,\n\t\tTabOutsideExampleComponent,\n\t\tButtonExampleComponent,\n\t\tSamBoxComponentExampleComponent,\n\t\tSamContainerComponentExampleComponent,\n\t\tSamHeadingComponentExampleComponent,\n\t\tSamIconComponentExampleComponent,\n\t\tSamListComponentExampleComponent,\n\t\tSamMasterPageComponentExampleComponent,\n\t\tSamPageComponentExampleComponent,\n\t\tSamSidebarComponentExampleComponent,\n\t\tSamYoutubeComponentExampleComponent,\n\t\tAutocompleteExampleComponent,\n\t\tAutocompleteMultiselectExampleComponent,\n\t\tCheckboxExampleComponent,\n\t\tDateExampleComponent,\n\t\tSamDateRangeComponentExampleComponent,\n\t\tDateTimeExampleComponent,\n\t\tNumberExampleComponent,\n\t\tRadioExampleComponent,\n\t\tSelectExampleComponent,\n\t\tTextExampleComponent,\n\t\tTextareaExampleComponent,\n\t\tTimeExampleComponent,\n\t\tToggleSwitchExampleComponent,\n\t\tNameEntryExampleComponent,\n\t\tPhoneEntryExampleComponent,\n\t\tCountryServiceDirectiveExampleComponent,\n\t\tStateServiceDirectiveExampleComponent,\n\t\tFieldsetWrapperExampleComponent,\n\t\tLabelWrapperExampleComponent,InterfacesComponent,DocTemplateComponent,StaticPageComponent,BaseExampleComponent\n\t],\n\tentryComponents: [\n\t\tAccordionExampleComponent,\n\t\tSamActionButtonExampleComponent,\n\t\tSamActionsDropdownComponentExampleComponent,\n\t\tAlertExampleComponent,\n\t\tSamAlertFooterComponentExampleComponent,\n\t\tSamBadgeComponentExampleComponent,\n\t\tBannerExampleComponent,\n\t\tSamBreadcrumbsComponentExampleComponent,\n\t\tCollapsibleExampleComponent,\n\t\tSamCommentsComponentExampleComponent,\n\t\tDownloadExampleComponent,\n\t\tSamFilesComponentExampleComponent,\n\t\tFiltersContainerExampleComponent,\n\t\tSamHeaderComponentExampleComponent,\n\t\tHistoryExampleComponent,\n\t\tSamImageComponentExampleComponent,\n\t\tInfoAccordionExampleComponent,\n\t\tLabelExampleComponent,\n\t\tModalExampleComponent,\n\t\tMultiselectDropdownExampleComponent,\n\t\tPaginationExampleComponent,\n\t\tPOCExampleComponent,\n\t\tSamProgressExampleComponent,\n\t\tSidenavExampleComponent,\n\t\tSpinnerExampleComponent,\n\t\tTabsExampleComponent,\n\t\tSamUploadComponentExampleComponent,\n\t\tClickOutsideExampleComponent,\n\t\tSamDragDropDirectiveExampleComponent,\n\t\tSamFocusDirectiveExampleComponent,\n\t\tStickyExampleComponent,\n\t\tTabOutsideExampleComponent,\n\t\tButtonExampleComponent,\n\t\tSamBoxComponentExampleComponent,\n\t\tSamContainerComponentExampleComponent,\n\t\tSamHeadingComponentExampleComponent,\n\t\tSamIconComponentExampleComponent,\n\t\tSamListComponentExampleComponent,\n\t\tSamMasterPageComponentExampleComponent,\n\t\tSamPageComponentExampleComponent,\n\t\tSamSidebarComponentExampleComponent,\n\t\tSamYoutubeComponentExampleComponent,\n\t\tAutocompleteExampleComponent,\n\t\tAutocompleteMultiselectExampleComponent,\n\t\tCheckboxExampleComponent,\n\t\tDateExampleComponent,\n\t\tSamDateRangeComponentExampleComponent,\n\t\tDateTimeExampleComponent,\n\t\tNumberExampleComponent,\n\t\tRadioExampleComponent,\n\t\tSelectExampleComponent,\n\t\tTextExampleComponent,\n\t\tTextareaExampleComponent,\n\t\tTimeExampleComponent,\n\t\tToggleSwitchExampleComponent,\n\t\tNameEntryExampleComponent,\n\t\tPhoneEntryExampleComponent,\n\t\tCountryServiceDirectiveExampleComponent,\n\t\tStateServiceDirectiveExampleComponent,\n\t\tFieldsetWrapperExampleComponent,\n\t\tLabelWrapperExampleComponent,InterfacesComponent,DocTemplateComponent,StaticPageComponent,BaseExampleComponent\n\t],\n\timports: [\n\t\tBrowserModule,\n\t\tCommonModule,\n\t\tFormsModule,\n\t\tSamUIKitModule,\n\t\trouting,\n\t\tSiteComponentsModule\n\t],\n\texports: [BaseExampleComponent]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.module.dynamic.ts", - "line": 224, - "character": 22 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9170 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.module.dynamic.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6374, - "name": "\"src/_docs/doc.routes.dynamic\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/doc.routes.dynamic.ts", - "comment": { - "shortText": "/" - }, - "children": [ - { - "id": 6375, - "name": "ROUTES", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/doc.routes.dynamic.ts", - "line": 72, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "Routes" - }, - "defaultValue": " [\n\t\n\t{ path: 'components/accordion', component: AccordionExampleComponent },\n\t{ path: 'components/actions/action-button', component: SamActionButtonExampleComponent },\n\t{ path: 'components/actions/actions-dropdown', component: SamActionsDropdownComponentExampleComponent },\n\t{ path: 'components/alert', component: AlertExampleComponent },\n\t{ path: 'components/alert-footer', component: SamAlertFooterComponentExampleComponent },\n\t{ path: 'components/badge', component: SamBadgeComponentExampleComponent },\n\t{ path: 'components/banner', component: BannerExampleComponent },\n\t{ path: 'components/breadcrumbs', component: SamBreadcrumbsComponentExampleComponent },\n\t{ path: 'components/collapsible', component: CollapsibleExampleComponent },\n\t{ path: 'components/comments', component: SamCommentsComponentExampleComponent },\n\t{ path: 'components/download', component: DownloadExampleComponent },\n\t{ path: 'components/files', component: SamFilesComponentExampleComponent },\n\t{ path: 'components/filters-container', component: FiltersContainerExampleComponent },\n\t{ path: 'components/header', component: SamHeaderComponentExampleComponent },\n\t{ path: 'components/history', component: HistoryExampleComponent },\n\t{ path: 'components/image', component: SamImageComponentExampleComponent },\n\t{ path: 'components/info-accordion', component: InfoAccordionExampleComponent },\n\t{ path: 'components/label', component: LabelExampleComponent },\n\t{ path: 'components/modal', component: ModalExampleComponent },\n\t{ path: 'components/multiselect-dropdown', component: MultiselectDropdownExampleComponent },\n\t{ path: 'components/pagination', component: PaginationExampleComponent },\n\t{ path: 'components/point-of-contact', component: POCExampleComponent },\n\t{ path: 'components/progress-bar', component: SamProgressExampleComponent },\n\t{ path: 'components/sidenav', component: SidenavExampleComponent },\n\t{ path: 'components/spinner', component: SpinnerExampleComponent },\n\t{ path: 'components/tabs', component: TabsExampleComponent },\n\t{ path: 'components/upload', component: SamUploadComponentExampleComponent },\n\t{ path: 'directives/click-outside', component: ClickOutsideExampleComponent },\n\t{ path: 'directives/drag-drop', component: SamDragDropDirectiveExampleComponent },\n\t{ path: 'directives/focus', component: SamFocusDirectiveExampleComponent },\n\t{ path: 'directives/sticky', component: StickyExampleComponent },\n\t{ path: 'directives/tab-outside', component: TabOutsideExampleComponent },\n\t{ path: 'elements/button', component: ButtonExampleComponent },\n\t{ path: 'experimental/box', component: SamBoxComponentExampleComponent },\n\t{ path: 'experimental/container', component: SamContainerComponentExampleComponent },\n\t{ path: 'experimental/heading', component: SamHeadingComponentExampleComponent },\n\t{ path: 'experimental/icon', component: SamIconComponentExampleComponent },\n\t{ path: 'experimental/list', component: SamListComponentExampleComponent },\n\t{ path: 'experimental/master-page', component: SamMasterPageComponentExampleComponent },\n\t{ path: 'experimental/page', component: SamPageComponentExampleComponent },\n\t{ path: 'experimental/sidebar', component: SamSidebarComponentExampleComponent },\n\t{ path: 'experimental/youtube', component: SamYoutubeComponentExampleComponent },\n\t{ path: 'form-controls/autocomplete', component: AutocompleteExampleComponent },\n\t{ path: 'form-controls/autocomplete-multiselect', component: AutocompleteMultiselectExampleComponent },\n\t{ path: 'form-controls/checkbox', component: CheckboxExampleComponent },\n\t{ path: 'form-controls/date', component: DateExampleComponent },\n\t{ path: 'form-controls/date-range', component: SamDateRangeComponentExampleComponent },\n\t{ path: 'form-controls/date-time', component: DateTimeExampleComponent },\n\t{ path: 'form-controls/number', component: NumberExampleComponent },\n\t{ path: 'form-controls/radiobutton', component: RadioExampleComponent },\n\t{ path: 'form-controls/select', component: SelectExampleComponent },\n\t{ path: 'form-controls/text', component: TextExampleComponent },\n\t{ path: 'form-controls/textarea', component: TextareaExampleComponent },\n\t{ path: 'form-controls/time', component: TimeExampleComponent },\n\t{ path: 'form-controls/toggle-switch', component: ToggleSwitchExampleComponent },\n\t{ path: 'form-templates/name-entry', component: NameEntryExampleComponent },\n\t{ path: 'form-templates/phone-entry', component: PhoneEntryExampleComponent },\n\t{ path: 'service-directives/autocomplete/country', component: CountryServiceDirectiveExampleComponent },\n\t{ path: 'service-directives/autocomplete/state', component: StateServiceDirectiveExampleComponent },\n\t{ path: 'wrappers/fieldset-wrapper', component: FieldsetWrapperExampleComponent },\n\t{ path: 'wrappers/label-wrapper', component: LabelWrapperExampleComponent },\n\t\n\t{ path: 'architecture/form-service', component: StaticPageComponent, data: { markdownfile: '_static/architecture/Form-Service.md' } },\n\t{ path: 'architecture/modules-and-lazy-loading', component: StaticPageComponent, data: { markdownfile: '_static/architecture/Modules-And-Lazy-Loading.md' } },\n\t{ path: 'architecture/title-service', component: StaticPageComponent, data: { markdownfile: '_static/architecture/Title-Service.md' } },\n\t{ path: 'overview/contribute', component: StaticPageComponent, data: { markdownfile: '_static/overview/Contribute.md' } },\n\t{ path: 'overview/getting-started', component: StaticPageComponent, data: { markdownfile: '_static/overview/Getting-Started.md' } },\n\t{ path: 'overview/giving-back', component: StaticPageComponent, data: { markdownfile: '_static/overview/Giving-Back.md' } },\n\t{ path: 'overview/how-to-use-this-site', component: StaticPageComponent, data: { markdownfile: '_static/overview/How-to-use-this-site.md' } },\n\t{ path: 'pages/basic-page', component: StaticPageComponent, data: { markdownfile: '_static/pages/Basic-Page.md' } },\n\t{ path: 'pages/buttons-and-links', component: StaticPageComponent, data: { markdownfile: '_static/pages/Buttons-and-Links.md' } },\n\t{ path: 'pages/colors', component: StaticPageComponent, data: { markdownfile: '_static/pages/Colors.md' } },\n\t{ path: 'pages/complex-data-entry', component: StaticPageComponent, data: { markdownfile: '_static/pages/Complex-Data-Entry.md' } },\n\t{ path: 'pages/global-elements', component: StaticPageComponent, data: { markdownfile: '_static/pages/Global-Elements.md' } },\n\t{ path: 'pages/graphics-and-images', component: StaticPageComponent, data: { markdownfile: '_static/pages/Graphics-and-Images.md' } },\n\t{ path: 'pages/list-page', component: StaticPageComponent, data: { markdownfile: '_static/pages/List-Page.md' } },\n\t{ path: 'pages/page-templates', component: StaticPageComponent, data: { markdownfile: '_static/pages/Page-Templates.md' } },\n\t{ path: 'pages/simple-data-entry', component: StaticPageComponent, data: { markdownfile: '_static/pages/Simple-Data-Entry.md' } },\n\t{ path: 'pages/typography', component: StaticPageComponent, data: { markdownfile: '_static/pages/Typography.md' } },\n\t{ path: 'pages/workspace-page', component: StaticPageComponent, data: { markdownfile: '_static/pages/Workspace-Page.md' } },\n]" - }, - { - "id": 6376, - "name": "routing", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/doc.routes.dynamic.ts", - "line": 155, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "ModuleWithProviders" - }, - "defaultValue": " RouterModule.forChild(ROUTES)" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 6375, - 6376 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.routes.dynamic.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6335, - "name": "\"src/_docs/doc.template\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/doc.template.ts", - "children": [ - { - "id": 6336, - "name": "DocTemplateComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-template',\n templateUrl: 'doc.template.html'\n}" - } - } - ], - "children": [ - { - "id": 6348, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6350, - "name": "new DocTemplateComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6351, - "name": "router", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Router" - } - } - ], - "type": { - "type": "reference", - "name": "DocTemplateComponent", - "id": 6336 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 28, - "character": 4 - } - ] - }, - { - "id": 6341, - "name": "design", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 19, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6338, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 16, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6340, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 18, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6342, - "name": "implementation", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 20, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6337, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 15, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6344, - "name": "panelSelected", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 23, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 6349, - "name": "router", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 30, - "character": 28 - } - ], - "type": { - "type": "reference", - "name": "Router" - } - }, - { - "id": 6343, - "name": "tabSelected", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 22, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 6339, - "name": "typedoc", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 17, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6355, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6356, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 39, - "character": 16 - } - ] - }, - { - "id": 6352, - "name": "resolveRoute", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6353, - "name": "resolveRoute", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6354, - "name": "path", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 32, - "character": 14 - } - ] - }, - { - "id": 6345, - "name": "sidenavConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 6347, - "name": "children", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 27, - "character": 14 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "undefined" - } - ] - }, - "defaultValue": " []" - }, - { - "id": 6346, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 26, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Documentation Sidenav\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 6347, - 6346 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 25, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6348 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6341, - 6338, - 6340, - 6342, - 6337, - 6344, - 6349, - 6343, - 6339 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6355, - 6352 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 6345 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 13, - "character": 33 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 6357, - "name": "DOCS", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 6, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " environment.DOCS" - }, - { - "id": 6358, - "name": "STATICPAGES", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 7, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " environment.STATICPAGES" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6336 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 6357, - 6358 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/doc.template.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5398, - "name": "\"src/_docs/elements/button/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/elements/button/component-example.ts", - "children": [ - { - "id": 5399, - "name": "ButtonExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-button',\n template: `\n \n \n \n \n \n

    Actions

    \n \n

    Primary

    \n

    \n Use the darker, primary color set for the most important buttons the \n users will look for in order to initiate an activity (e.g., Create Listing) \n or complete an activity (e.g., Submit). Typically no more than one button \n in this color should appear on the page, although there may be occasions \n to modify this rule. Primary buttons generally appear at the top of a \n page when the action is to initiate work, or at the bottom of the form, \n such as when the action is to submit that form.\n

    \n \n ` + code_example_1 + `\n \n \n
    \n
    \n Submit buttons\n
    \n

    \n There is a specific button type for submit buttons.\n

    \n
    \n \n ` + code_example_1_2 + `\n \n \n Will generate the code below\n \n \n \n \n \n

    Secondary

    \n

    \n Use the secondary color set for the buttons of secondary importance. \n Examples include search or form-related actions, such as adding data to \n a table or adding terms in the Advanced section of the Agency Picker.\n

    \n \n ` + code_example_2 + `\n \n \n \n \n

    Tertiary

    \n

    \n They represent useful, but not necessary actions the user may want to take. \n Generally, these buttons are represented by an icon and related term, or \n simply an icon. Examples include actions such as 'Edit', 'Subscribe', \n 'Favorite', or 'Share'.\n

    \n \n ` + code_example_3 + `\n \n \n \n \n

    Negative

    \n

    \n Use the negative button when you want to perform a potentially destructive \n action.\n

    \n \n ` + code_example_4 + `\n \n \n \n \n

    States

    \n \n

    Disabled

    \n \n ` + code_example_disabled + `\n \n \n
    \n `\n}" - } - } - ], - "children": [ - { - "id": 5410, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5413, - "name": "new ButtonExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5414, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5415, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5416, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "ButtonExampleComponent", - "id": 5399 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 122, - "character": 41 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5409, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 122, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/elements/button/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5408, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 120, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_disabled.trim()", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5402, - "name": "example_1", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 113, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_1.trim()" - }, - { - "id": 5403, - "name": "example_1_2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 114, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_1_2.trim()" - }, - { - "id": 5404, - "name": "example_1_3", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 115, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_1_3.trim()" - }, - { - "id": 5405, - "name": "example_2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 116, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_2.trim()" - }, - { - "id": 5406, - "name": "example_3", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 117, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_3.trim()" - }, - { - "id": 5407, - "name": "example_4", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 118, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_4.trim()" - }, - { - "id": 5420, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5419, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5412, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 127, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5421, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5411, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 126, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5401, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 111, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5400, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 110, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamButtonComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5425, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5426, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5427, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5417, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5418, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 134, - "character": 10 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5422, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5423, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5424, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5410 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5409, - 5408, - 5402, - 5403, - 5404, - 5405, - 5406, - 5407, - 5420, - 5419, - 5412, - 5421, - 5411, - 5401, - 5400 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5425, - 5417, - 5422 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 109, - "character": 35 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5428, - "name": "code_example_1", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 9, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - }, - { - "id": 5429, - "name": "code_example_1_2", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 10, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - }, - { - "id": 5430, - "name": "code_example_1_3", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 11, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - }, - { - "id": 5431, - "name": "code_example_2", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 12, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - }, - { - "id": 5432, - "name": "code_example_3", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 13, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - }, - { - "id": 5433, - "name": "code_example_4", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 14, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - }, - { - "id": 5434, - "name": "code_example_disabled", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 15, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n\n\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5399 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5428, - 5429, - 5430, - 5431, - 5432, - 5433, - 5434 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/elements/button/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5435, - "name": "\"src/_docs/experimental/box/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/experimental/box/component-example.ts", - "children": [ - { - "id": 5436, - "name": "SamBoxComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sam-box',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development.\n

    \n
    \n\n

    Types

    \n\n

    Default

    \n\n \n ` + code_example_1 + `\n \n\n

    Primary

    \n\n \n ` + code_example_2 + `\n \n\n

    Outline

    \n\n \n ` + code_example_3 + `\n \n\n
    `\n}" - } - } - ], - "children": [ - { - "id": 5443, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5446, - "name": "new SamBoxComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5447, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5448, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5449, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamBoxComponentExampleComponent", - "id": 5436 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/box/component-example.ts", - "line": 76, - "character": 42 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5442, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/box/component-example.ts", - "line": 76, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/experimental/box/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5452, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5439, - "name": "example_1", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/box/component-example.ts", - "line": 72, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_1.trim()" - }, - { - "id": 5440, - "name": "example_2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/box/component-example.ts", - "line": 73, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_2.trim()" - }, - { - "id": 5441, - "name": "example_3", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/box/component-example.ts", - "line": 74, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_3.trim()" - }, - { - "id": 5451, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5450, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5445, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/box/component-example.ts", - "line": 81, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5453, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5444, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/box/component-example.ts", - "line": 80, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5438, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/box/component-example.ts", - "line": 70, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5437, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/box/component-example.ts", - "line": 69, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamBoxComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5459, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5460, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5461, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5454, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5455, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5456, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5457, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5458, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5443 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5442, - 5452, - 5439, - 5440, - 5441, - 5451, - 5450, - 5445, - 5453, - 5444, - 5438, - 5437 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5459, - 5454, - 5456 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/box/component-example.ts", - "line": 67, - "character": 44 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5462, - "name": "code_example_1", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/box/component-example.ts", - "line": 19, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\nLorem Ipsum\n`" - }, - { - "id": 5463, - "name": "code_example_2", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/box/component-example.ts", - "line": 23, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\nLorem Ipsum\n`" - }, - { - "id": 5464, - "name": "code_example_3", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/box/component-example.ts", - "line": 27, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\nLorem Ipsum\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5436 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5462, - 5463, - 5464 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/box/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5465, - "name": "\"src/_docs/experimental/container/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/experimental/container/component-example.ts", - "children": [ - { - "id": 5466, - "name": "SamContainerComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sam-container',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development. \n

    \n
    \n\n

    \n Wrapping any content with sam-container will create a 6 column \n layout inside the container.\n

    \n\n \n ` + code_example_1 + `\n \n\n

    Emphasis

    \n

    \n By default any direct child of the container (p,a,div,span,etc) will \n take all the horizontal space avaliable. This can be adjusted by using \n the data-emphasis atribute.\n

    \n\n

    Lowest

    \n \n ` + code_example_4 + `\n \n\n

    Low

    \n \n ` + code_example_5 + `\n \n\n

    Divided

    \n \n ` + code_example_2 + `\n \n\n

    High

    \n \n ` + code_example_3 + `\n \n\n\n
    `\n}" - } - } - ], - "children": [ - { - "id": 5475, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5478, - "name": "new SamContainerComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5479, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5480, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5481, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamContainerComponentExampleComponent", - "id": 5466 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 150, - "character": 48 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5474, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 150, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/experimental/container/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5484, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5469, - "name": "example_1", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 142, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_1" - }, - { - "id": 5470, - "name": "example_2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 143, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_2" - }, - { - "id": 5471, - "name": "example_3", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 144, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_3" - }, - { - "id": 5472, - "name": "example_4", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 145, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_4" - }, - { - "id": 5473, - "name": "example_5", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 146, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_5" - }, - { - "id": 5483, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5482, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5477, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 155, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5485, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5476, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 154, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5468, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 140, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\" \"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5467, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 139, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamContainerComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5491, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5492, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5493, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5486, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5487, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5488, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5489, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5490, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5475 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5474, - 5484, - 5469, - 5470, - 5471, - 5472, - 5473, - 5483, - 5482, - 5477, - 5485, - 5476, - 5468, - 5467 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5491, - 5486, - 5488 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 138, - "character": 50 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5494, - "name": "code_example_1", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 18, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n

    \n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus id ipsum ut \n arcu pharetra pharetra sit amet eu libero. Ut tristique lacus dolor, nec \n lacinia ante ornare a. Phasellus sagittis, nulla eu porta imperdiet, nisi \n odio interdum dolor, sed dictum leo magna at odio. Donec at molestie elit. \n

    \n
    \n`" - }, - { - "id": 5495, - "name": "code_example_2", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 29, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n

    \n Left column\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus id ipsum ut \n arcu pharetra pharetra sit amet eu libero.\n

    \n

    \n Right column\n Pellentesque pellentesque orci eget lectus aliquet laoreet. Proin ac \n ultrices diam. Aenean et magna lorem.\n

    \n
    \n`" - }, - { - "id": 5496, - "name": "code_example_3", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 44, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n

    \n Left column\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus id ipsum ut \n arcu pharetra pharetra sit amet eu libero.\n

    \n

    \n Right column\n Pellentesque pellentesque orci eget lectus aliquet laoreet.\n

    \n
    \n`" - }, - { - "id": 5497, - "name": "code_example_4", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 58, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n

    \n Left column\n Lorem ipsum dolor sit amet.\n

    \n

    \n Right column\n Pellentesque pellentesque orci eget lectus aliquet laoreet.\n

    \n
    \n`" - }, - { - "id": 5498, - "name": "code_example_5", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 71, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n

    \n Left column\n Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n

    \n

    \n Right column\n Pellentesque pellentesque orci eget lectus aliquet laoreet.\n

    \n
    \n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5466 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5494, - 5495, - 5496, - 5497, - 5498 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/container/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5499, - "name": "\"src/_docs/experimental/heading/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/experimental/heading/component-example.ts", - "children": [ - { - "id": 5500, - "name": "SamHeadingComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sam-heading',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development. \n

    \n
    \n\n

    Importance

    \n\n \n ` + code_example_1 + `\n \n\n \n ` + code_example_2 + `\n \n\n \n ` + code_example_3 + `\n \n\n \n ` + code_example_4 + `\n \n\n

    Sup Heading

    \n\n
    \n
    \n Availability:\n
    \n

    \n This option its only available for highest importance \n headings \n

    \n
    \n\n \n ` + code_example_5 + `\n \n\n

    Icons

    \n\n \n ` + code_example_6 + `\n \n\n
    `\n}" - } - } - ], - "children": [ - { - "id": 5510, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5513, - "name": "new SamHeadingComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5514, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5515, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5516, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamHeadingComponentExampleComponent", - "id": 5500 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 111, - "character": 46 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5509, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 111, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/experimental/heading/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5519, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5503, - "name": "example_1", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 102, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_1.trim()" - }, - { - "id": 5504, - "name": "example_2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 103, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_2.trim()" - }, - { - "id": 5505, - "name": "example_3", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 104, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_3.trim()" - }, - { - "id": 5506, - "name": "example_4", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 105, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_4.trim()" - }, - { - "id": 5507, - "name": "example_5", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 106, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_5.trim()" - }, - { - "id": 5508, - "name": "example_6", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 107, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_6.trim()" - }, - { - "id": 5518, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5517, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5512, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 116, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5520, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5511, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 115, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5502, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 100, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5501, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 99, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamHeadingComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5526, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5527, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5528, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5521, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5522, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5523, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5524, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5525, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5510 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5509, - 5519, - 5503, - 5504, - 5505, - 5506, - 5507, - 5508, - 5518, - 5517, - 5512, - 5520, - 5511, - 5502, - 5501 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5526, - 5521, - 5523 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 98, - "character": 48 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5529, - "name": "code_example_1", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 18, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - }, - { - "id": 5530, - "name": "code_example_2", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 22, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - }, - { - "id": 5531, - "name": "code_example_3", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 26, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - }, - { - "id": 5532, - "name": "code_example_4", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 30, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - }, - { - "id": 5533, - "name": "code_example_5", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 34, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - }, - { - "id": 5534, - "name": "code_example_6", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 38, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5500 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5529, - 5530, - 5531, - 5532, - 5533, - 5534 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/heading/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5535, - "name": "\"src/_docs/experimental/icon/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/experimental/icon/component-example.ts", - "children": [ - { - "id": 5536, - "name": "SamIconComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sam-icon',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development. \n

    \n
    \n\n

    Available

    \n\n \n ` + code_example_1 + `\n \n\n
    `\n}" - } - } - ], - "children": [ - { - "id": 5543, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5546, - "name": "new SamIconComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5547, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5548, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5549, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamIconComponentExampleComponent", - "id": 5536 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/icon/component-example.ts", - "line": 68, - "character": 43 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5542, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/icon/component-example.ts", - "line": 68, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/experimental/icon/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5552, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5539, - "name": "example_1", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/icon/component-example.ts", - "line": 63, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_1.trim()" - }, - { - "id": 5540, - "name": "example_2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/icon/component-example.ts", - "line": 64, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_2.trim()" - }, - { - "id": 5541, - "name": "example_3", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/icon/component-example.ts", - "line": 65, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_3.trim()" - }, - { - "id": 5551, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5550, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5545, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/icon/component-example.ts", - "line": 73, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5553, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5544, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/icon/component-example.ts", - "line": 72, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5538, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/icon/component-example.ts", - "line": 61, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5537, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/icon/component-example.ts", - "line": 60, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamIconComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5559, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5560, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5561, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5554, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5555, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5556, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5557, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5558, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5543 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5542, - 5552, - 5539, - 5540, - 5541, - 5551, - 5550, - 5545, - 5553, - 5544, - 5538, - 5537 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5559, - 5554, - 5556 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/icon/component-example.ts", - "line": 59, - "character": 45 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5562, - "name": "code_example_1", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/icon/component-example.ts", - "line": 18, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n\n\n\n\n\n\n\n`" - }, - { - "id": 5563, - "name": "code_example_2", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/icon/component-example.ts", - "line": 29, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - }, - { - "id": 5564, - "name": "code_example_3", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/icon/component-example.ts", - "line": 33, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5536 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5562, - 5563, - 5564 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/icon/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5565, - "name": "\"src/_docs/experimental/list/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/experimental/list/component-example.ts", - "children": [ - { - "id": 5566, - "name": "SamListComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sam-list',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development. \n

    \n
    \n\n

    Text

    \n\n \n ` + code_example_1 + `\n \n\n

    Link

    \n\n \n ` + code_example_2 + `\n \n\n

    Icon

    \n\n \n ` + code_example_3 + `\n \n\n
    `\n}" - } - } - ], - "children": [ - { - "id": 5585, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5588, - "name": "new SamListComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5589, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5590, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5591, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamListComponentExampleComponent", - "id": 5566 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 106, - "character": 43 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5584, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 106, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/experimental/list/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5594, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5581, - "name": "example_1", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 101, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_1.trim()" - }, - { - "id": 5582, - "name": "example_2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 102, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_2.trim()" - }, - { - "id": 5583, - "name": "example_3", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 103, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_3.trim()" - }, - { - "id": 5593, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5569, - "name": "listData", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 68, - "character": 10 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 5570, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 5571, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 70, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Orci varius natoque\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5571 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n \"text\": \"Orci varius natoque\"\n },\n {\n \"text\": \"Vivamus ac est eget ipsum\"\n }\n ]" - }, - { - "id": 5576, - "name": "listIconData", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 88, - "character": 14 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 5577, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 5578, - "name": "icon", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 90, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"user\"" - }, - { - "id": 5579, - "name": "link", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 91, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"#\"" - }, - { - "id": 5580, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 92, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Orci varius natoque\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5578, - 5579, - 5580 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n \"icon\": \"user\",\n \"link\": \"#\",\n \"text\": \"Orci varius natoque\"\n },\n {\n \"icon\": \"book\",\n \"link\": \"#\",\n \"text\": \"Vivamus ac est eget ipsum\"\n }\n ]" - }, - { - "id": 5572, - "name": "listLinkData", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 77, - "character": 14 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 5573, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 5574, - "name": "link", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 79, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"#\"" - }, - { - "id": 5575, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 80, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Orci varius natoque\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5574, - 5575 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n \"link\": \"#\",\n \"text\": \"Orci varius natoque\"\n },\n {\n \"link\": \"#\",\n \"text\": \"Vivamus ac est eget ipsum\"\n }\n ]" - }, - { - "id": 5592, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5587, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 111, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5595, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5586, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 110, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5568, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 66, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5567, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 65, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamListComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5601, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5602, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5603, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5596, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5597, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5598, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5599, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5600, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5585 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5584, - 5594, - 5581, - 5582, - 5583, - 5593, - 5569, - 5576, - 5572, - 5592, - 5587, - 5595, - 5586, - 5568, - 5567 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5601, - 5596, - 5598 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 64, - "character": 45 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5604, - "name": "code_example_1", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 18, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - }, - { - "id": 5605, - "name": "code_example_2", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 22, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - }, - { - "id": 5606, - "name": "code_example_3", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 26, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5566 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5604, - 5605, - 5606 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/list/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5607, - "name": "\"src/_docs/experimental/master-page/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/experimental/master-page/component-example.ts", - "children": [ - { - "id": 5608, - "name": "SamMasterPageComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sam-master-page',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development. \n

    \n
    \n\n

    \n Component that serves as a container for the page component(sam-page). \n It is responsable for main site navigation and global UI services.\n

    \n\n
    `\n}" - } - } - ], - "children": [ - { - "id": 5613, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5616, - "name": "new SamMasterPageComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5617, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5618, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5619, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamMasterPageComponentExampleComponent", - "id": 5608 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/master-page/component-example.ts", - "line": 49, - "character": 50 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5612, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/master-page/component-example.ts", - "line": 49, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/experimental/master-page/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5611, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/master-page/component-example.ts", - "line": 46, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5621, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5620, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5615, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/master-page/component-example.ts", - "line": 54, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5622, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5614, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/master-page/component-example.ts", - "line": 53, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5610, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/master-page/component-example.ts", - "line": 44, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\" \"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5609, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/master-page/component-example.ts", - "line": 43, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamMasterPageComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5628, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5629, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5630, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5623, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5624, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5625, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5626, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5627, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5613 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5612, - 5611, - 5621, - 5620, - 5615, - 5622, - 5614, - 5610, - 5609 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5628, - 5623, - 5625 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/master-page/component-example.ts", - "line": 42, - "character": 51 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5631, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/master-page/component-example.ts", - "line": 19, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `TODO`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5608 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5631 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/master-page/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5632, - "name": "\"src/_docs/experimental/page/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/experimental/page/component-example.ts", - "children": [ - { - "id": 5633, - "name": "SamPageComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sam-page',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development. \n

    \n
    \n\n

    \n Examples found in Patterns\n section.\n

    \n\n
    `\n}" - } - } - ], - "children": [ - { - "id": 5638, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5641, - "name": "new SamPageComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5642, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5643, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5644, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamPageComponentExampleComponent", - "id": 5633 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/page/component-example.ts", - "line": 48, - "character": 43 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5637, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/page/component-example.ts", - "line": 48, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/experimental/page/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5636, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/page/component-example.ts", - "line": 46, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5646, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5645, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5640, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/page/component-example.ts", - "line": 53, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5647, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5639, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/page/component-example.ts", - "line": 52, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5635, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/page/component-example.ts", - "line": 44, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5634, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/page/component-example.ts", - "line": 43, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamPageComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5653, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5654, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5655, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5648, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5649, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5650, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5651, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5652, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5638 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5637, - 5636, - 5646, - 5645, - 5640, - 5647, - 5639, - 5635, - 5634 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5653, - 5648, - 5650 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/page/component-example.ts", - "line": 42, - "character": 45 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5656, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/page/component-example.ts", - "line": 19, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `TODO`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5633 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5656 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/page/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5657, - "name": "\"src/_docs/experimental/sidebar/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/experimental/sidebar/component-example.ts", - "children": [ - { - "id": 5658, - "name": "SamSidebarComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sam-sidebar',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development. \n

    \n
    \n\n

    \n Examples found in Patterns\n section.\n

    \n\n
    `\n}" - } - } - ], - "children": [ - { - "id": 5663, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5666, - "name": "new SamSidebarComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5667, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5668, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5669, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamSidebarComponentExampleComponent", - "id": 5658 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/sidebar/component-example.ts", - "line": 48, - "character": 46 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5662, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/sidebar/component-example.ts", - "line": 48, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/experimental/sidebar/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5661, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/sidebar/component-example.ts", - "line": 46, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5671, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5670, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5665, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/sidebar/component-example.ts", - "line": 53, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5672, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5664, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/sidebar/component-example.ts", - "line": 52, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5660, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/sidebar/component-example.ts", - "line": 44, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5659, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/sidebar/component-example.ts", - "line": 43, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamSidebarComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5678, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5679, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5680, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5673, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5674, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5675, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5676, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5677, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5663 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5662, - 5661, - 5671, - 5670, - 5665, - 5672, - 5664, - 5660, - 5659 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5678, - 5673, - 5675 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/sidebar/component-example.ts", - "line": 42, - "character": 48 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5681, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/sidebar/component-example.ts", - "line": 19, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `TODO`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5658 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5681 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/sidebar/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5682, - "name": "\"src/_docs/experimental/youtube/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/experimental/youtube/component-example.ts", - "children": [ - { - "id": 5683, - "name": "SamYoutubeComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-sam-youtube',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development.\n

    \n
    \n\n \n ` + code_example_1 + `\n \n\n
    `\n}" - } - } - ], - "children": [ - { - "id": 5688, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5691, - "name": "new SamYoutubeComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5692, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5693, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5694, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamYoutubeComponentExampleComponent", - "id": 5683 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/youtube/component-example.ts", - "line": 49, - "character": 46 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5687, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/youtube/component-example.ts", - "line": 49, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/experimental/youtube/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5697, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5686, - "name": "example_1", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/youtube/component-example.ts", - "line": 46, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_1.trim()" - }, - { - "id": 5696, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5695, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5690, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/youtube/component-example.ts", - "line": 54, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5698, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5689, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/youtube/component-example.ts", - "line": 53, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5685, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/youtube/component-example.ts", - "line": 44, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5684, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/experimental/youtube/component-example.ts", - "line": 43, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamYoutubeComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5704, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5705, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5706, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5699, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5700, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5701, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5702, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5703, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5688 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5687, - 5697, - 5686, - 5696, - 5695, - 5690, - 5698, - 5689, - 5685, - 5684 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5704, - 5699, - 5701 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/youtube/component-example.ts", - "line": 42, - "character": 48 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5707, - "name": "code_example_1", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/experimental/youtube/component-example.ts", - "line": 18, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5683 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5707 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/experimental/youtube/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5758, - "name": "\"src/_docs/form-controls/autocomplete-multiselect/autocomplete.service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", - "children": [ - { - "id": 5759, - "name": "ACTestService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 5764, - "name": "end", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", - "line": 32, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "2" - }, - { - "id": 5765, - "name": "lastSearch", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", - "line": 33, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 5762, - "name": "limit", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", - "line": 29, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 5761, - "name": "offset", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", - "line": 28, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "1" - }, - { - "id": 5763, - "name": "start", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", - "line": 31, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 5760, - "name": "values", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", - "line": 9, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " [\n { key: 'Random', value: 'Random'},\n { key: 'Just some data', value: 'Just some data'},\n { key: 'This has no category', value: 'This has no category'},\n { key: 'I have no parent', value: 'I have no parent'},\n { key: 'Christy', value: 'Christy'},\n { key: 'Carlos', value: 'Carlos'},\n { key: 'Colin', value: 'Colin'},\n { key: 'Diego', value: 'Diego'},\n { key: 'Delaware', value: 'Delaware'},\n { key: 'Maryland', value: 'Maryland'},\n { key: 'Virginia', value: 'Virginia'},\n { key: 'Washington, DC', value: 'Washington, DC'},\n { key: 'Onitama', value: 'Onitama'},\n { key: 'Power Grid', value: 'Power Grid' },\n { key: 'Splendor', value: 'Splendor'},\n { key: 'Ticket To Ride', value: 'Ticket to Ride'}\n ]" - }, - { - "id": 5771, - "name": "fetch", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5772, - "name": "fetch", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5773, - "name": "val", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 5774, - "name": "pageEnd", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 5775, - "name": "serviceOptions", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", - "line": 42, - "character": 14 - } - ] - }, - { - "id": 5776, - "name": "filter", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 5777, - "name": "filter", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5778, - "name": "val", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", - "line": 60, - "character": 16 - } - ] - }, - { - "id": 5769, - "name": "resetPagination", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5770, - "name": "resetPagination", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", - "line": 37, - "character": 24 - } - ] - }, - { - "id": 5766, - "name": "setFetchMethod", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5767, - "name": "setFetchMethod", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5768, - "name": "_", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", - "line": 35, - "character": 23 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 5764, - 5765, - 5762, - 5761, - 5763, - 5760 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5771, - 5776, - 5769, - 5766 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", - "line": 8, - "character": 26 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "AutocompleteService", - "id": 5749 - } - ] - }, - { - "id": 5779, - "name": "TestACDirective", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Directive", - "type": { - "type": "reference", - "name": "Directive" - }, - "arguments": { - "obj": "{\n selector: 'sam-autocomplete-multiselect[test], sam-autcomplete-refactor[test]',\n providers: [\n { provide: AutocompleteService, useClass: ACTestService }\n ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", - "line": 78, - "character": 28 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5759, - 5779 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5780, - "name": "\"src/_docs/form-controls/autocomplete-multiselect/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "children": [ - { - "id": 5781, - "name": "AutocompleteMultiselectExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-autocomplete-multiselect',\n template: `\n\n` + code_example + `\n
    \n
    \n
    \n

    Working with Paginated Services

    \n
    \n

    The autocomplete multiselect supports working with services that use pagination \n to implement an infinite scroll effect. The component itself stores the values \n passed to it and removes duplicates. However, the developer using the component \n must track the pagination by search string herself.\n \n The following class demonstrates how to setup pagination with the component.\n As with any autocomplete service, we start by implementing the \n AutocompleteService interface.

    \n \n

    The values in this component come from a private member property, but this could\n just as easily come from a service call. In that case, the developer would need\n to use Angular's @Injectable() decorator.

    \n \n

    In this simple example, we use the property names start and end to track \n pagination; however, typically pagination properties are called offset and \n limit.\n \n We initialize the start property to 0 to start at the beginning of the \n index. The end property indicates the last index in the array that should \n return from the results.\n \n Finally, lastSearch is used to track the current filter string. When the \n string changes, the pagination should reset since the result list should be \n different.

    \n \n

    The resetPagination method is used to reset the pagination variables back to \n their initial state when the searchString changes.

    \n \n

    The fetch method from the AutocompleteService is where most of the magic \n happens. First, we check if the latest search string, val, is the same as the \n lastSearch. If not, we reset pagination.

    \n \n

    Next, if the pageEnd parameter is true and val hasn't changed \n since the last search, increment the indices that are used for pagination. In \n this case, I also added a check that if the index is out of scope, return an \n empty array.

    \n \n

    Finally, we call the filter method to return the sliced array with the \n correct indices.

    \n \n

    In an ideal world, most of this tracking will be done by an API call. \n However, this example serves to demonstrate the concerns that developers need \n to account for when implementing pagination on this component.

    \n
    \n

    Complete Service Code

    \n \n
    \n
    \n
    \n`,\nproviders: [\n { provide: AutocompleteService, useClass: ACTestService }\n]\n}" - } - } - ], - "children": [ - { - "id": 5805, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5808, - "name": "new AutocompleteMultiselectExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5809, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5810, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5811, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "AutocompleteMultiselectExampleComponent", - "id": 5781 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 297, - "character": 64 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5804, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 297, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-controls/autocomplete-multiselect/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5796, - "name": "code", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 288, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example1" - }, - { - "id": 5797, - "name": "code2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 289, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example2" - }, - { - "id": 5798, - "name": "code3", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 290, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example3" - }, - { - "id": 5799, - "name": "code4", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 291, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example4" - }, - { - "id": 5800, - "name": "code5", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 292, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example5" - }, - { - "id": 5801, - "name": "code6", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 293, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example6" - }, - { - "id": 5802, - "name": "code7", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 294, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example7" - }, - { - "id": 5803, - "name": "code8", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 295, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " finalCode" - }, - { - "id": 5795, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 286, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5813, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5812, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5807, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 302, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5786, - "name": "multiselectOptions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 272, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 5787, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 5788, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 273, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Apple\"" - }, - { - "id": 5789, - "name": "value", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 273, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Apple\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5788, - 5789 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n { key: 'Apple', value: 'Apple' },\n { key: 'Grape', value: 'Grape' },\n { key: 'Banana', value: 'Banana' },\n { key: 'Orange', value: 'Orange' },\n { key: 'Acorn', value: 'Acorn' },\n ]" - }, - { - "id": 5814, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5806, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 301, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5794, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 285, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5793, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 284, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamAutocompleteMultiselectComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5782, - "name": "value", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 270, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"apple\"" - }, - { - "id": 5820, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5821, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5822, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5815, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5816, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5817, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5818, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5819, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 5790, - "name": "multiselectConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 5791, - "name": "keyProperty", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 281, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"key\"" - }, - { - "id": 5792, - "name": "valueProperty", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 282, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"value\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5791, - 5792 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 280, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 5783, - "name": "value2", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 5784, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 271, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"code05\"" - }, - { - "id": 5785, - "name": "value", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 271, - "character": 38 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"pineapple\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5784, - 5785 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 271, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5805 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5804, - 5796, - 5797, - 5798, - 5799, - 5800, - 5801, - 5802, - 5803, - 5795, - 5813, - 5812, - 5807, - 5786, - 5814, - 5806, - 5794, - 5793, - 5782 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5820, - 5815, - 5817 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 5790, - 5783 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 269, - "character": 52 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5832, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 145, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `
    \n
    \n

    Simple Example

    \n \n \n
    \n
    \n

    One With Everything

    \n \n \n
    \n
    \n

    Component with Pagination

    \n \n \n
    \n
    `" - }, - { - "id": 5823, - "name": "code_example1", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 17, - "character": 19 - } - ], - "type": { - "type": "stringLiteral", - "value": "export class ACTestService implements AutocompleteService {" - }, - "defaultValue": "\"export class ACTestService implements AutocompleteService {\"" - }, - { - "id": 5824, - "name": "code_example2", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 19, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n private values: any = [\n { key: 'Random', value: 'Random'},\n { key: 'Just some data', value: 'Just some data'},\n ...\n ];\n`" - }, - { - "id": 5825, - "name": "code_example3", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 27, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n \\tprivate start: number = 0;\n private end: number = 2;\n private lastSearch: string;\n\n public setFetchMethod(_: any) {}\n`" - }, - { - "id": 5826, - "name": "code_example4", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 35, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n \\tpublic resetPagination() {\n this.start = 0;\n this.end = 2;\n }\n`" - }, - { - "id": 5827, - "name": "code_example5", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 42, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n \\tpublic fetch(val: string, pageEnd: boolean, serviceOptions: any) {\n if (val !== this.lastSearch) {\n this.resetPagination();\n }\n`" - }, - { - "id": 5828, - "name": "code_example6", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 49, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n \\tif (pageEnd && val === this.lastSearch) {\n this.start = this.end;\n this.end = this.end + 2;\n if (this.end > this.values.length) {\n return Observable.of([]);\n }\n }\n\n this.lastSearch = val;\n`" - }, - { - "id": 5829, - "name": "code_example7", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 61, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n \\treturn Observable.of(this.filter(val).slice(this.start, this.end));\n }\n\n private filter (val) {\n return this.values.filter(\n (value) => {\n if (value.key.toLowerCase().includes(val.toLowerCase())\n || value.value.toLowerCase().includes(val.toLowerCase())) {\n return value;\n }\n }\n );\n }\n}\n`" - }, - { - "id": 5830, - "name": "finalCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 78, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\nexport class ACTestService implements AutocompleteService {\n private values: any = [\n { key: 'Random', value: 'Random'},\n { key: 'Just some data', value: 'Just some data'},\n ...\n ];\n\n private start: number = 0;\n private end: number = 2;\n private lastSearch: string;\n\n public setFetchMethod(_: any) {}\n\n public resetPagination() {\n this.start = 0;\n this.end = 2;\n }\n public fetch(val: string, pageEnd: boolean, serviceOptions: any) {\n if (val !== this.lastSearch) {\n this.resetPagination();\n }\n if (pageEnd && val === this.lastSearch) {\n this.start = this.end;\n this.end = this.end + 2;\n if (this.end > this.values.length) {\n return Observable.of([]);\n }\n }\n\n this.lastSearch = val;\n return Observable.of(this.filter(val).slice(this.start, this.end));\n }\n\n private filter (val) {\n return this.values.filter(\n (value) => {\n if (value.key.toLowerCase().includes(val.toLowerCase())\n || value.value.toLowerCase().includes(val.toLowerCase())) {\n return value;\n }\n }\n );\n }\n}\n`" - }, - { - "id": 5831, - "name": "paginatedComponent", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 125, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5781 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5832, - 5823, - 5824, - 5825, - 5826, - 5827, - 5828, - 5829, - 5830, - 5831 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5708, - "name": "\"src/_docs/form-controls/autocomplete/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-controls/autocomplete/component-example.ts", - "children": [ - { - "id": 5709, - "name": "AutocompleteExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-autocomplete',\n template: `\n\n` + code_example + `\n\n`\n}" - } - } - ], - "children": [ - { - "id": 5729, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5732, - "name": "new AutocompleteExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5733, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5734, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5735, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "AutocompleteExampleComponent", - "id": 5709 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 152, - "character": 52 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5728, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 152, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-controls/autocomplete/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5724, - "name": "countryValue", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 147, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 5727, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 150, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5737, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5719, - "name": "kv_options", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 130, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 5720, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 5721, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 131, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"code01\"" - }, - { - "id": 5722, - "name": "value", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 132, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"apple\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5721, - 5722 - ] - } - ] - } - } - ] - }, - "defaultValue": " [{\n code: 'code01',\n value: 'apple'\n }, {\n code: 'code02',\n value: 'orange'\n }, {\n code: 'code03',\n value: 'grape'\n }, {\n code: 'code04',\n value: 'banana'\n }, {\n code: 'code05',\n value: 'pineapple'\n }]" - }, - { - "id": 5736, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5731, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 157, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5714, - "name": "options", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 123, - "character": 16 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " ['apple', 'orange', 'grape', 'banana', 'pineapple']" - }, - { - "id": 5738, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5730, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 156, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5723, - "name": "stateValue", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 146, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 5726, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 149, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5725, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 148, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamAutocompleteComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5710, - "name": "value", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 121, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"apple\"" - }, - { - "id": 5744, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5745, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5746, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5739, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5740, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5741, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5742, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5743, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 5715, - "name": "kv_config", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true, - "isPublic": true - }, - "children": [ - { - "id": 5716, - "name": "keyValueConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 5717, - "name": "keyProperty", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 126, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"code\"" - }, - { - "id": 5718, - "name": "valueProperty", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 127, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"value\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5717, - 5718 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 125, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 5716 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 124, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 5711, - "name": "value2", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true, - "isPublic": true - }, - "children": [ - { - "id": 5712, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 122, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"code05\"" - }, - { - "id": 5713, - "name": "value", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 122, - "character": 41 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"pineapple\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5712, - 5713 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 122, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5729 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5728, - 5724, - 5727, - 5737, - 5719, - 5736, - 5731, - 5714, - 5738, - 5730, - 5723, - 5726, - 5725, - 5710 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5744, - 5739, - 5741 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 5715, - 5711 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 120, - "character": 41 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5747, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `
    \n
    \n

    Example with Selectable Categories and Subheading

    \n \n \n
    \n
    \n

    Example with Unselectable Categories and Subheadings

    \n \n \n
    \n
    \n

    Example with Array of Strings

    \n \n \n
    \n
    \n

    Example with Key Value Pairs

    \n \n \n
    \n
    \n

    Example with Injected State Service Directive

    \n \n \n
    \n
    \n

    Example With Injected Country Service Directive

    \n \n \n
    \n
    `" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5709 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5747 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5833, - "name": "\"src/_docs/form-controls/checkbox/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-controls/checkbox/component-example.ts", - "children": [ - { - "id": 5834, - "name": "CheckboxExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-checkbox',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 5857, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5860, - "name": "new CheckboxExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5861, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5862, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5863, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "CheckboxExampleComponent", - "id": 5834 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 67, - "character": 48 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5856, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 67, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-controls/checkbox/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5835, - "name": "checkboxModel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 42, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " ['ma']" - }, - { - "id": 5836, - "name": "checkboxModel2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 43, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " ['ma']" - }, - { - "id": 5855, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 65, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5865, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5864, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5859, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 72, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5866, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5858, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 71, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5854, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 63, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5853, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 62, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamCheckboxComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5872, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5873, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5874, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5867, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5868, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5869, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5870, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5871, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 5837, - "name": "checkboxConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 5844, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 51, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Select a region (normal)\"" - }, - { - "id": 5843, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 50, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"my-sr-name\"" - }, - { - "id": 5838, - "name": "options", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 45, - "character": 11 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 5839, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 5841, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 46, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"DC\"" - }, - { - "id": 5842, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 46, - "character": 37 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"checkbox-dc\"" - }, - { - "id": 5840, - "name": "value", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 46, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"dc\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5841, - 5842, - 5840 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {value: 'dc', label: 'DC', name: 'checkbox-dc'},\n {value: 'ma', label: 'Maryland', name: 'checkbox-maryland'},\n {value: 'va', label: 'Virginia', name: 'checkbox-virginia'},\n ]" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5844, - 5843, - 5838 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 44, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 5845, - "name": "disabledCheckboxConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 5852, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 60, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Select a region (disabled)\"" - }, - { - "id": 5851, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 59, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"my-sr-name\"" - }, - { - "id": 5846, - "name": "options", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 54, - "character": 11 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 5847, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 5849, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 55, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"DC\"" - }, - { - "id": 5850, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 55, - "character": 37 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"checkbox-dc\"" - }, - { - "id": 5848, - "name": "value", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 55, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"dc\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5849, - 5850, - 5848 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {value: 'dc', label: 'DC', name: 'checkbox-dc'},\n {value: 'ma', label: 'Maryland', name: 'checkbox-maryland'},\n {value: 'va', label: 'Virginia', name: 'checkbox-virginia'},\n ]" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5852, - 5851, - 5846 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 53, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5857 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5856, - 5835, - 5836, - 5855, - 5865, - 5864, - 5859, - 5866, - 5858, - 5854, - 5853 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5872, - 5867, - 5869 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 5837, - 5845 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 41, - "character": 37 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5875, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n
    \n\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5834 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5875 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/checkbox/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5902, - "name": "\"src/_docs/form-controls/date-range/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-controls/date-range/component-example.ts", - "children": [ - { - "id": 5903, - "name": "SamDateRangeComponentExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-sam-date-range',\n template: '' + code_example + ''\n}" - } - } - ], - "children": [ - { - "id": 5914, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5917, - "name": "new SamDateRangeComponentExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5918, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5919, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5920, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SamDateRangeComponentExampleComponent", - "id": 5903 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 54, - "character": 50 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5913, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 54, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-controls/date-range/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5906, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 44, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5922, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5921, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5916, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 59, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5923, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5915, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 58, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5905, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 42, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5904, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 41, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamDateRangeComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5929, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5930, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5931, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5924, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5925, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5926, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5927, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5928, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 5907, - "name": "dateRangeModel", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true, - "isPublic": true - }, - "children": [ - { - "id": 5909, - "name": "endDate", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 47, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"2017-04-23\"" - }, - { - "id": 5908, - "name": "startDate", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 46, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"2016-02-03\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5909, - 5908 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 45, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 5910, - "name": "dateRangeModel2", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true, - "isPublic": true - }, - "children": [ - { - "id": 5912, - "name": "endDate", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 51, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"2017-04-23\"" - }, - { - "id": 5911, - "name": "startDate", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 50, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"2016-02-03\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5912, - 5911 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 49, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5914 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5913, - 5906, - 5922, - 5921, - 5916, - 5923, - 5915, - 5905, - 5904 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5929, - 5924, - 5926 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 5907, - 5910 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 40, - "character": 50 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5932, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 20, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n
    \n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5903 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5932 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/date-range/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5933, - "name": "\"src/_docs/form-controls/date-time/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-controls/date-time/component-example.ts", - "children": [ - { - "id": 5934, - "name": "DateTimeExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-datetime',\n template: `\n\n` + code_example + `\n\n`\n}" - } - } - ], - "children": [ - { - "id": 5940, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5943, - "name": "new DateTimeExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5944, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5945, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5946, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "DateTimeExampleComponent", - "id": 5934 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/date-time/component-example.ts", - "line": 29, - "character": 49 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5939, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-time/component-example.ts", - "line": 29, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-controls/date-time/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5935, - "name": "dateTime", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-time/component-example.ts", - "line": 23, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"2016-12-12T13:01\"" - }, - { - "id": 5938, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-time/component-example.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5948, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5947, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5942, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-time/component-example.ts", - "line": 34, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5949, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5941, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-time/component-example.ts", - "line": 33, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5937, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-time/component-example.ts", - "line": 25, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5936, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-time/component-example.ts", - "line": 24, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamDateTimeComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5955, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5956, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5957, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5950, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5951, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5952, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5953, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5954, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5940 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5939, - 5935, - 5938, - 5948, - 5947, - 5942, - 5949, - 5941, - 5937, - 5936 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5955, - 5950, - 5952 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/date-time/component-example.ts", - "line": 22, - "character": 37 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5958, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/date-time/component-example.ts", - "line": 12, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5934 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5958 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/date-time/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5876, - "name": "\"src/_docs/form-controls/date/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-controls/date/component-example.ts", - "children": [ - { - "id": 5877, - "name": "DateExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-date',\n template: `\n\n` + code_example + `\n\n`\n}" - } - } - ], - "children": [ - { - "id": 5883, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5886, - "name": "new DateExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5887, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5888, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5889, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "DateExampleComponent", - "id": 5877 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/date/component-example.ts", - "line": 29, - "character": 44 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5882, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date/component-example.ts", - "line": 29, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-controls/date/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5878, - "name": "dateModel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date/component-example.ts", - "line": 23, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"2016-02-03\"" - }, - { - "id": 5881, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date/component-example.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5891, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5890, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5885, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date/component-example.ts", - "line": 34, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5892, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5884, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date/component-example.ts", - "line": 33, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5880, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date/component-example.ts", - "line": 25, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5879, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/date/component-example.ts", - "line": 24, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamDateComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5898, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5899, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5900, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5893, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5894, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5895, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5896, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5897, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5883 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5882, - 5878, - 5881, - 5891, - 5890, - 5885, - 5892, - 5884, - 5880, - 5879 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5898, - 5893, - 5895 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/date/component-example.ts", - "line": 22, - "character": 33 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5901, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/date/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5877 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5901 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/date/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5959, - "name": "\"src/_docs/form-controls/number/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-controls/number/component-example.ts", - "children": [ - { - "id": 5960, - "name": "NumberExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-number',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 5966, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5969, - "name": "new NumberExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 5970, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 5971, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 5972, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "NumberExampleComponent", - "id": 5960 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/number/component-example.ts", - "line": 32, - "character": 46 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 5965, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/number/component-example.ts", - "line": 32, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-controls/number/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 5964, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/number/component-example.ts", - "line": 30, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 5974, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 5973, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 5968, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/number/component-example.ts", - "line": 37, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5961, - "name": "numValue", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/number/component-example.ts", - "line": 26, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "10" - }, - { - "id": 5975, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 5967, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/number/component-example.ts", - "line": 36, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5963, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/number/component-example.ts", - "line": 28, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5962, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/number/component-example.ts", - "line": 27, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamNumberComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 5981, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5982, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5983, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 5976, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5977, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 5978, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 5979, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5980, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 5966 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 5965, - 5964, - 5974, - 5973, - 5968, - 5961, - 5975, - 5967, - 5963, - 5962 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 5981, - 5976, - 5978 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/number/component-example.ts", - "line": 25, - "character": 35 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 5984, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/number/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5960 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 5984 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/number/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5985, - "name": "\"src/_docs/form-controls/radiobutton/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-controls/radiobutton/component-example.ts", - "children": [ - { - "id": 5986, - "name": "RadioExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-radio',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 6002, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6005, - "name": "new RadioExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6006, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 6007, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 6008, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "RadioExampleComponent", - "id": 5986 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 47, - "character": 51 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 6001, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 47, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-controls/radiobutton/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 6000, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 45, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 6010, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 6009, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 6004, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 52, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 5987, - "name": "radioModel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 30, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": "\"ma\"" - }, - { - "id": 6011, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 6003, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 51, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 5999, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 43, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 5998, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 42, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamRadioButtonComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 6017, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6018, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6019, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 6012, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6013, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 6014, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6015, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6016, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 5988, - "name": "radioConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 5996, - "name": "errorMessage", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 39, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 5997, - "name": "hint", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 40, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 5995, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 38, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Select a region\"" - }, - { - "id": 5994, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 37, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"radio-component\"" - }, - { - "id": 5989, - "name": "options", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 32, - "character": 11 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 5990, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 5992, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 33, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"DC\"" - }, - { - "id": 5993, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 33, - "character": 37 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"radio-dc\"" - }, - { - "id": 5991, - "name": "value", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 33, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"dc\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5992, - 5993, - 5991 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {value: 'dc', label: 'DC', name: 'radio-dc'},\n {value: 'ma', label: 'Maryland', name: 'radio-maryland'},\n {value: 'va', label: 'Virginia', name: 'radio-virginia'},\n ]" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 5996, - 5997, - 5995, - 5994, - 5989 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 31, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6002 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6001, - 6000, - 6010, - 6009, - 6004, - 5987, - 6011, - 6003, - 5999, - 5998 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6017, - 6012, - 6014 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 5988 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 29, - "character": 34 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 6020, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5986 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 6020 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6021, - "name": "\"src/_docs/form-controls/select/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-controls/select/component-example.ts", - "children": [ - { - "id": 6022, - "name": "SelectExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-select',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 6037, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6040, - "name": "new SelectExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6041, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 6042, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 6043, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "SelectExampleComponent", - "id": 6022 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 45, - "character": 46 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 6036, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 45, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-controls/select/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 6035, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 43, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 6045, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 6044, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 6039, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 50, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 6046, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 6023, - "name": "selectModel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 28, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 6038, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 49, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 6034, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 41, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 6033, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 40, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamSelectComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 6052, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6053, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6054, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 6047, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6048, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 6049, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6050, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6051, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 6024, - "name": "selectConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 6030, - "name": "disabled", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 36, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 6031, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 37, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Region\"" - }, - { - "id": 6032, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 38, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"region\"" - }, - { - "id": 6025, - "name": "options", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 30, - "character": 11 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 6026, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 6028, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 32, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Washington DC\"" - }, - { - "id": 6029, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 32, - "character": 48 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"dc\"" - }, - { - "id": 6027, - "name": "value", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 32, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"dc\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 6028, - 6029, - 6027 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {value:'', label: 'Default option', name: 'empty', disabled: true},\n {value: 'dc', label: 'Washington DC', name: 'dc'},\n {value: 'ma', label: 'Maryland', name: 'maryland'},\n {value: 'va', label: 'Virginia', name: 'virginia'},\n ]" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 6030, - 6031, - 6032, - 6025 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 29, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6037 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6036, - 6035, - 6045, - 6044, - 6039, - 6046, - 6023, - 6038, - 6034, - 6033 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6052, - 6047, - 6049 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 6024 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 27, - "character": 35 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 6055, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6022 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 6055 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/select/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6056, - "name": "\"src/_docs/form-controls/text/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-controls/text/component-example.ts", - "children": [ - { - "id": 6057, - "name": "TextExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-text',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 6069, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6072, - "name": "new TextExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6073, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 6074, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 6075, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "TextExampleComponent", - "id": 6057 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 43, - "character": 44 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 6068, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 43, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-controls/text/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 6067, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 41, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 6077, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 6076, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 6071, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 48, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 6078, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 6070, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 47, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 6058, - "name": "textModel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 30, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Some Text\"" - }, - { - "id": 6066, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 39, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 6065, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 38, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamTextComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 6084, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6085, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6086, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 6079, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6080, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 6081, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6082, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6083, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 6059, - "name": "textConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 6064, - "name": "disabled", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 36, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 6062, - "name": "errorMessage", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 34, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Uh-oh, something went wrong\"" - }, - { - "id": 6061, - "name": "hint", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 33, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Zipcode can be short or long version\"" - }, - { - "id": 6060, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 32, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter zipcode\"" - }, - { - "id": 6063, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 35, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"aria-friendly-name\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 6064, - 6062, - 6061, - 6060, - 6063 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 31, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6069 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6068, - 6067, - 6077, - 6076, - 6071, - 6078, - 6070, - 6058, - 6066, - 6065 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6084, - 6079, - 6081 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 6059 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 29, - "character": 33 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 6087, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6057 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 6087 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/text/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6088, - "name": "\"src/_docs/form-controls/textarea/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-controls/textarea/component-example.ts", - "children": [ - { - "id": 6089, - "name": "TextareaExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-textarea',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 6101, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6104, - "name": "new TextareaExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6105, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 6106, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 6107, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "TextareaExampleComponent", - "id": 6089 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 50, - "character": 48 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 6100, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 50, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-controls/textarea/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 6099, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 41, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n`", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 6109, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 6108, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 6103, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 55, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 6110, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 6102, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 54, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 6090, - "name": "textareaModel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 30, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Some Text\"" - }, - { - "id": 6098, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 39, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 6097, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 38, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamTextareaComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 6116, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6117, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6118, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 6111, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6112, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 6113, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6114, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6115, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 6091, - "name": "textareaConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 6096, - "name": "disabled", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 36, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 6094, - "name": "errorMessage", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 34, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Uh-oh, something went wrong\"" - }, - { - "id": 6093, - "name": "hint", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 33, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Zipcode can be short or long version\"" - }, - { - "id": 6092, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 32, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter zipcode\"" - }, - { - "id": 6095, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 35, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"aria-friendly-name\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 6096, - 6094, - 6093, - 6092, - 6095 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 31, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6101 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6100, - 6099, - 6109, - 6108, - 6103, - 6110, - 6102, - 6090, - 6098, - 6097 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6116, - 6111, - 6113 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 6091 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 29, - "character": 37 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 6119, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6089 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 6119 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/textarea/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6120, - "name": "\"src/_docs/form-controls/time/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-controls/time/component-example.ts", - "children": [ - { - "id": 6121, - "name": "TimeExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-time',\n template: `\n\n`+code_example+`\n
    \n
    \n`\n}" - } - } - ], - "children": [ - { - "id": 6127, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6130, - "name": "new TimeExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6131, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 6132, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 6133, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "TimeExampleComponent", - "id": 6121 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/time/component-example.ts", - "line": 30, - "character": 44 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 6126, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/time/component-example.ts", - "line": 30, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-controls/time/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 6125, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/time/component-example.ts", - "line": 28, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 6135, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 6134, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 6129, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/time/component-example.ts", - "line": 35, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 6136, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 6128, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/time/component-example.ts", - "line": 34, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 6122, - "name": "time", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/time/component-example.ts", - "line": 24, - "character": 5 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"13:01\"" - }, - { - "id": 6124, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/time/component-example.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 6123, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/time/component-example.ts", - "line": 25, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamTimeComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 6142, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6143, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6144, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 6137, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6138, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 6139, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6140, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6141, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6127 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6126, - 6125, - 6135, - 6134, - 6129, - 6136, - 6128, - 6122, - 6124, - 6123 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6142, - 6137, - 6139 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/time/component-example.ts", - "line": 23, - "character": 33 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 6145, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/time/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6121 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 6145 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/time/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6146, - "name": "\"src/_docs/form-controls/toggle-switch/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-controls/toggle-switch/component-example.ts", - "children": [ - { - "id": 6147, - "name": "ToggleSwitchExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-toggle-switch',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 6152, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6155, - "name": "new ToggleSwitchExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6156, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 6157, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 6158, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "ToggleSwitchExampleComponent", - "id": 6147 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", - "line": 33, - "character": 53 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 6151, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", - "line": 33, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-controls/toggle-switch/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 6150, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", - "line": 31, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 6160, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 6159, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 6154, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", - "line": 38, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 6161, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 6153, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", - "line": 37, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 6149, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 6148, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", - "line": 28, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamToggleSwitchComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 6167, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6168, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6169, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 6162, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6163, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 6164, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6165, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6166, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6152 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6151, - 6150, - 6160, - 6159, - 6154, - 6161, - 6153, - 6149, - 6148 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6167, - 6162, - 6164 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", - "line": 26, - "character": 41 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 6170, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `
    \n
    \n \n
    \n
    `" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6147 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 6170 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6171, - "name": "\"src/_docs/form-templates/name-entry/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-templates/name-entry/component-example.ts", - "children": [ - { - "id": 6172, - "name": "NameEntryExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-name-entry',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 6183, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6186, - "name": "new NameEntryExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6187, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 6188, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 6189, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "NameEntryExampleComponent", - "id": 6172 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 35, - "character": 51 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 6182, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 35, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-templates/name-entry/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 6181, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 33, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 6191, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 6190, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 6185, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 40, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 6192, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 6184, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 39, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 6180, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 31, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 6179, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 30, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamNameEntryComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 6198, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6199, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6200, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 6193, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6194, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 6195, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6196, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6197, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - }, - { - "id": 6173, - "name": "nameModel", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 6175, - "name": "firstName", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 25, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"John\"" - }, - { - "id": 6177, - "name": "lastName", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 27, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Doe\"" - }, - { - "id": 6176, - "name": "middleName", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 26, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 6178, - "name": "suffix", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 28, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Sr.\"" - }, - { - "id": 6174, - "name": "title", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 24, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Mr.\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 6175, - 6177, - 6176, - 6178, - 6174 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 23, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6183 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6182, - 6181, - 6191, - 6190, - 6185, - 6192, - 6184, - 6180, - 6179 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6198, - 6193, - 6195 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 6173 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 22, - "character": 38 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 6201, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " ``" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6172 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 6201 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-templates/name-entry/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6202, - "name": "\"src/_docs/form-templates/phone-entry/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/form-templates/phone-entry/component-example.ts", - "children": [ - { - "id": 6203, - "name": "PhoneEntryExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n\tselector: 'doc-phone-entry',\n template: `\n\n`+code_example+`\n\n`\n}" - } - } - ], - "children": [ - { - "id": 6210, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6213, - "name": "new PhoneEntryExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6214, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 6215, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 6216, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "PhoneEntryExampleComponent", - "id": 6203 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", - "line": 31, - "character": 52 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 6209, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", - "line": 31, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/form-templates/phone-entry/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 6208, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", - "line": 29, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 6224, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 6223, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 6212, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", - "line": 36, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 6204, - "name": "phoneModel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", - "line": 24, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"123-456-3366\"" - }, - { - "id": 6205, - "name": "phoneModel2", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", - "line": 25, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"1+(123)456-3366\"" - }, - { - "id": 6225, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 6211, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", - "line": 35, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 6207, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", - "line": 27, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 6206, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", - "line": 26, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SamPhoneEntryComponent\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 6231, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6232, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6233, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 6226, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6227, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 6220, - "name": "phoneModel2Change", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6221, - "name": "phoneModel2Change", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6222, - "name": "phoneNum", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", - "line": 47, - "character": 26 - } - ] - }, - { - "id": 6217, - "name": "phoneModelChange", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6218, - "name": "phoneModelChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6219, - "name": "phoneNum", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", - "line": 43, - "character": 25 - } - ] - }, - { - "id": 6228, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6229, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6230, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6210 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6209, - 6208, - 6224, - 6223, - 6212, - 6204, - 6205, - 6225, - 6211, - 6207, - 6206 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6231, - 6226, - 6220, - 6217, - 6228 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", - "line": 23, - "character": 39 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 6234, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", - "line": 12, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6203 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 6234 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6235, - "name": "\"src/_docs/service-directives/autocomplete/country/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/service-directives/autocomplete/country/component-example.ts", - "children": [ - { - "id": 6236, - "name": "CountryServiceDirectiveExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-sam-autocomplete',\n template: ' + code_example + '\n}" - } - } - ], - "children": [ - { - "id": 6241, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6244, - "name": "new CountryServiceDirectiveExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6245, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 6246, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 6247, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "CountryServiceDirectiveExampleComponent", - "id": 6236 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", - "line": 32, - "character": 65 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 6240, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", - "line": 32, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/service-directives/autocomplete/country/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 6239, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", - "line": 30, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 6249, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 6248, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 6243, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", - "line": 37, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 6250, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 6242, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", - "line": 36, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 6238, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", - "line": 28, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 6237, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"CountryServiceDirective\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 6256, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6257, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6258, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 6251, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6252, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 6253, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6254, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6255, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6241 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6240, - 6239, - 6249, - 6248, - 6243, - 6250, - 6242, - 6238, - 6237 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6256, - 6251, - 6253 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", - "line": 26, - "character": 52 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 6259, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", - "line": 20, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"TODO\"" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6236 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 6259 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6260, - "name": "\"src/_docs/service-directives/autocomplete/state/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/service-directives/autocomplete/state/component-example.ts", - "children": [ - { - "id": 6261, - "name": "StateServiceDirectiveExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-sam-autocomplete',\n template: ' + code_example + '\n}" - } - } - ], - "children": [ - { - "id": 6266, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6269, - "name": "new StateServiceDirectiveExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6270, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 6271, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 6272, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "StateServiceDirectiveExampleComponent", - "id": 6261 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", - "line": 32, - "character": 63 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 6265, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", - "line": 32, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/service-directives/autocomplete/state/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 6264, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", - "line": 30, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 6274, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 6273, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 6268, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", - "line": 37, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 6275, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 6267, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", - "line": 36, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 6263, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", - "line": 28, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 6262, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"StateServiceDirective\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 6281, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6282, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6283, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 6276, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6277, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 6278, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6279, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6280, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6266 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6265, - 6264, - 6274, - 6273, - 6268, - 6275, - 6267, - 6263, - 6262 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6281, - 6276, - 6278 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", - "line": 26, - "character": 50 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 6284, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", - "line": 20, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"TODO\"" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6261 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 6284 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6359, - "name": "\"src/_docs/static.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/static.component.ts", - "children": [ - { - "id": 6360, - "name": "StaticPageComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-placeholder-example',\n template: `\n \n `\n}" - } - } - ], - "children": [ - { - "id": 6364, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6368, - "name": "new StaticPageComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6369, - "name": "route", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ActivatedRoute" - } - }, - { - "id": 6370, - "name": "router", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Router" - } - }, - { - "id": 6371, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "StaticPageComponent", - "id": 6360 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/static.component.ts", - "line": 29, - "character": 44 - } - ] - }, - { - "id": 6363, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/static.component.ts", - "line": 29, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/components/spinner/\"" - }, - { - "id": 6361, - "name": "content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/static.component.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6362, - "name": "defaultContent", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/static.component.ts", - "line": 28, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `

    No Documentation Yet

    Coming soon

    `" - }, - { - "id": 6367, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/static.component.ts", - "line": 34, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - }, - { - "id": 6365, - "name": "route", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/static.component.ts", - "line": 32, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "ActivatedRoute" - } - }, - { - "id": 6366, - "name": "router", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/static.component.ts", - "line": 33, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "Router" - } - }, - { - "id": 6372, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6373, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/_docs/static.component.ts", - "line": 37, - "character": 17 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6364 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6363, - 6361, - 6362, - 6367, - 6365, - 6366 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6372 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/static.component.ts", - "line": 26, - "character": 32 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6360 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/static.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6285, - "name": "\"src/_docs/wrappers/fieldset-wrapper/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/wrappers/fieldset-wrapper/component-example.ts", - "children": [ - { - "id": 6286, - "name": "FieldsetWrapperExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-sam-fieldset-wrapper',\n template: `` + code_example + ``\n}" - } - } - ], - "children": [ - { - "id": 6291, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6294, - "name": "new FieldsetWrapperExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6295, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 6296, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 6297, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "FieldsetWrapperExampleComponent", - "id": 6286 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", - "line": 35, - "character": 51 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 6290, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", - "line": 35, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/wrappers/fieldset-wrapper/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 6289, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", - "line": 33, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 6299, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 6298, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 6293, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", - "line": 40, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 6300, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 6292, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", - "line": 39, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 6288, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", - "line": 31, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 6287, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", - "line": 30, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"FieldsetWrapper\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 6306, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6307, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6308, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 6301, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6302, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 6303, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6304, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6305, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6291 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6290, - 6289, - 6299, - 6298, - 6293, - 6300, - 6292, - 6288, - 6287 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6306, - 6301, - 6303 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", - "line": 29, - "character": 44 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 6309, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", - "line": 20, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n \n \n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6286 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 6309 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6310, - "name": "\"src/_docs/wrappers/label-wrapper/component-example\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/_docs/wrappers/label-wrapper/component-example.ts", - "children": [ - { - "id": 6311, - "name": "LabelWrapperExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-sam-label-wrapper',\n template: '' + code_example + ''\n}" - } - } - ], - "children": [ - { - "id": 6316, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6319, - "name": "new LabelWrapperExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6320, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 6321, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 6322, - "name": "mdService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "type": { - "type": "reference", - "name": "LabelWrapperExampleComponent", - "id": 6311 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", - "line": 35, - "character": 48 - } - ], - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.__constructor", - "id": 4090 - } - }, - { - "id": 6315, - "name": "base", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", - "line": 35, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"_docs/wrappers/label-wrapper/\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.base", - "id": 4089 - } - }, - { - "id": 6314, - "name": "example", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", - "line": 33, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.example", - "id": 4087 - } - }, - { - "id": 6324, - "name": "guidance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 26, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.guidance", - "id": 4086 - } - }, - { - "id": 6323, - "name": "markdown", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.markdown", - "id": 4085 - } - }, - { - "id": 6318, - "name": "mdService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", - "line": 40, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.mdService", - "id": 4093 - } - }, - { - "id": 6325, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 29, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.sections", - "id": 4088 - } - }, - { - "id": 6317, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", - "line": 39, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - }, - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.service", - "id": 4092 - } - }, - { - "id": 6313, - "name": "typedoc_content", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", - "line": 31, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_content", - "id": 4084 - } - }, - { - "id": 6312, - "name": "typedoc_target", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", - "line": 30, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"LabelWrapper\"", - "overwrites": { - "type": "reference", - "name": "BaseExampleComponent.typedoc_target", - "id": 4083 - } - }, - { - "id": 6331, - "name": "fetchSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6332, - "name": "fetchSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6333, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 88, - "character": 21 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.fetchSection", - "id": 4103 - } - }, - { - "id": 6326, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6327, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 43, - "character": 17 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.ngOnInit", - "id": 4098 - } - }, - { - "id": 6328, - "name": "setupTypedocContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6329, - "name": "setupTypedocContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6330, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - }, - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "sources": [ - { - "fileName": "src/_docs/baseexample.component.ts", - "line": 51, - "character": 28 - } - ], - "inheritedFrom": { - "type": "reference", - "name": "BaseExampleComponent.setupTypedocContent", - "id": 4100 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6316 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6315, - 6314, - 6324, - 6323, - 6318, - 6325, - 6317, - 6313, - 6312 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6331, - 6326, - 6328 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", - "line": 29, - "character": 41 - } - ], - "extendedTypes": [ - { - "type": "reference", - "name": "BaseExampleComponent", - "id": 4082 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - }, - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 6334, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", - "line": 20, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n \n`" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6311 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 6334 - ] - } - ], - "sources": [ - { - "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4050, - "name": "\"src/app/app.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/app/app.component.ts", - "children": [ - { - "id": 4051, - "name": "AppComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'app',\n animations: [ routerTransition ],\n encapsulation: ViewEncapsulation.None,\n template: `\n
    \n \n
    \n \n `,\n providers: [DocumentationService]\n}" - } - } - ], - "children": [ - { - "id": 4063, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4067, - "name": "new AppComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4068, - "name": "route", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ActivatedRoute" - } - }, - { - "id": 4069, - "name": "router", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Router" - } - }, - { - "id": 4070, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - } - ], - "type": { - "type": "reference", - "name": "AppComponent", - "id": 4051 - } - } - ], - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 50, - "character": 39 - } - ] - }, - { - "id": 4064, - "name": "route", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 53, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "ActivatedRoute" - } - }, - { - "id": 4065, - "name": "router", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 54, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "Router" - } - }, - { - "id": 4066, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 55, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - }, - { - "id": 4059, - "name": "showBanner", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 47, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4060, - "name": "showHeader", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 48, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 4061, - "name": "showUIKitHeader", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 49, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4062, - "name": "showUIKitSearchHeader", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 50, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4057, - "name": "staticpagelist", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 45, - "character": 23 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 4058, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {} - } - } - }, - { - "id": 4055, - "name": "uikitList", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 44, - "character": 18 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 4056, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {} - } - } - }, - { - "id": 4071, - "name": "getState", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4072, - "name": "getState", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4073, - "name": "outlet", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 57, - "character": 17 - } - ] - }, - { - "id": 4077, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4078, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 66, - "character": 17 - } - ] - }, - { - "id": 4074, - "name": "resolveRoute", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4075, - "name": "resolveRoute", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4076, - "name": "path", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 61, - "character": 21 - } - ] - }, - { - "id": 4052, - "name": "sidenavConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true, - "isPublic": true - }, - "children": [ - { - "id": 4054, - "name": "children", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 41, - "character": 14 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "undefined" - } - ] - }, - "defaultValue": " []" - }, - { - "id": 4053, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 40, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"test\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4054, - 4053 - ] - } - ], - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 39, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4063 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4064, - 4065, - 4066, - 4059, - 4060, - 4061, - 4062, - 4057, - 4055 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4071, - 4077, - 4074 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 4052 - ] - } - ], - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 37, - "character": 25 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4079, - "name": "DOCS", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 17, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " environment.DOCS" - }, - { - "id": 4080, - "name": "STATICPAGES", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 18, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " environment.STATICPAGES" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4051 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 4079, - 4080 - ] - } - ], - "sources": [ - { - "fileName": "src/app/app.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9171, - "name": "\"src/app/app.module\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/app/app.module.ts", - "children": [ - { - "id": 9172, - "name": "AppModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "`AppModule` is the main entry point into Angular2's bootstraping process" - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n bootstrap: [ AppComponent ],\n declarations: [\n AppComponent,\n HomeComponent\n ],\n imports: [ // import Angular's modules\n DocModule,\n BrowserModule,\n BrowserAnimationsModule,\n FormsModule,\n HttpModule,\n SamUIKitModule,\n SiteComponentsModule,\n RouterModule.forRoot(ROUTES)\n ],\n providers: [ // expose our Services and Providers into Angular's dependency injection\n ENV_PROVIDERS,\n APP_PROVIDERS,\n SamAlertFooterService,\n MarkdownService\n ]\n}" - } - } - ], - "children": [ - { - "id": 9173, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9176, - "name": "new AppModule", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9177, - "name": "appRef", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ApplicationRef" - } - }, - { - "id": 9178, - "name": "samAlertFooterService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamAlertFooterService", - "id": 3911 - } - } - ], - "type": { - "type": "reference", - "name": "AppModule", - "id": 9172 - } - } - ], - "sources": [ - { - "fileName": "src/app/app.module.ts", - "line": 55, - "character": 24 - } - ] - }, - { - "id": 9174, - "name": "appRef", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/app/app.module.ts", - "line": 58, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "ApplicationRef" - } - }, - { - "id": 9175, - "name": "samAlertFooterService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/app/app.module.ts", - "line": 59, - "character": 32 - } - ], - "type": { - "type": "reference", - "name": "SamAlertFooterService", - "id": 3911 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9173 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9174, - 9175 - ] - } - ], - "sources": [ - { - "fileName": "src/app/app.module.ts", - "line": 55, - "character": 22 - } - ] - }, - { - "id": 9179, - "name": "APP_PROVIDERS", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/app/app.module.ts", - "line": 25, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " [\n]" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9172 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 9179 - ] - } - ], - "sources": [ - { - "fileName": "src/app/app.module.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 3948, - "name": "\"src/app/app.routes\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/app/app.routes.ts", - "children": [ - { - "id": 3949, - "name": "ROUTES", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/app.routes.ts", - "line": 4, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "Routes" - }, - "defaultValue": " [\n { \n path: '', \n component: HomeComponent\n },\n { \n path: 'patterns', \n loadChildren: \"../patterns/patterns.module#ExamplesModule\"\n }\n]" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3949 - ] - } - ], - "sources": [ - { - "fileName": "src/app/app.routes.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 3936, - "name": "\"src/app/environment\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/app/environment.ts", - "children": [ - { - "id": 3943, - "name": "ENV_PROVIDERS", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/environment.ts", - "line": 59, - "character": 26 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " [\n ...PROVIDERS\n]" - }, - { - "id": 3937, - "name": "PROVIDERS", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/app/environment.ts", - "line": 12, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - }, - "defaultValue": " [\n // common env directives\n]" - }, - { - "id": 3942, - "name": "decorateModuleRef", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/environment.ts", - "line": 57, - "character": 30 - } - ], - "type": { - "type": "reference", - "name": "(Anonymous function)", - "id": 3939 - }, - "defaultValue": " _decorateModuleRef" - }, - { - "id": 3938, - "name": "_decorateModuleRef", - "kind": 64, - "kindString": "Function", - "flags": {}, - "signatures": [ - { - "id": 3939, - "name": "_decorateModuleRef", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "typeParameter": [ - { - "id": 3940, - "name": "T", - "kind": 131072, - "kindString": "Type parameter", - "flags": {} - } - ], - "parameters": [ - { - "id": 3941, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "typeParameter", - "name": "T" - } - } - ], - "type": { - "type": "typeParameter", - "name": "T" - } - } - ], - "sources": [ - { - "fileName": "src/app/environment.ts", - "line": 19, - "character": 22 - } - ] - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3943, - 3937, - 3942 - ] - }, - { - "title": "Functions", - "kind": 64, - "children": [ - 3938 - ] - } - ], - "sources": [ - { - "fileName": "src/app/environment.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 3944, - "name": "\"src/app/home.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/app/home.component.ts", - "children": [ - { - "id": 3945, - "name": "HomeComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n templateUrl: 'home.template.html',\n}" - } - } - ], - "children": [ - { - "id": 3946, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 3947, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/app/home.component.ts", - "line": 8, - "character": 10 - } - ] - } - ], - "groups": [ - { - "title": "Methods", - "kind": 2048, - "children": [ - 3946 - ] - } - ], - "sources": [ - { - "fileName": "src/app/home.component.ts", - "line": 6, - "character": 26 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 3945 - ] - } - ], - "sources": [ - { - "fileName": "src/app/home.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9202, - "name": "\"src/app/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/app/index.ts", - "sources": [ - { - "fileName": "src/app/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 3987, - "name": "\"src/app/router.animations\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/app/router.animations.ts", - "children": [ - { - "id": 3988, - "name": "routerTransition", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/router.animations.ts", - "line": 3, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "AnimationTriggerMetadata" - }, - "defaultValue": " trigger('routerTransition', [\n\t// this will skip on load\n\ttransition(':enter, initial => *', []),\n\t\n\ttransition('home => examples', [\n\t\tgroup([\n\t\t\tquery(':enter, :leave', style({ position: 'fixed', width:'100%' })\n\t\t\t, { optional: true }),\n\t\t\tquery(':enter', [\n\t\t\t\tstyle({ transform: 'translateX(100%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(0%)' }))\n\t\t\t], { optional: true }),\n\t\t\tquery(':leave', [\n\t\t\t\tstyle({ transform: 'translateX(0%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(-100%)' }))\n\t\t\t], { optional: true }),\n\t\t])\n\t]),\n\n\ttransition('examples => home', [\n\t\tquery(':enter, :leave', style({ position: 'fixed', width:'100%' })\n\t\t, { optional: true }),\n\t\tgroup([\n\t\t\tquery(':enter', [\n\t\t\t\tstyle({ transform: 'translateX(-100%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(0%)' }))\n\t\t\t], { optional: true }),\n\t\t\tquery(':leave', [\n\t\t\t\tstyle({ transform: 'translateX(0%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(100%)' }))\n\t\t\t], { optional: true }),\n\t\t])\n\t]),\n\n\ttransition('* => home', [\n\t\tquery(':enter, :leave', style({ position: 'fixed', width:'100%' })\n\t\t, { optional: true }),\n\t\tgroup([\n\t\t\tquery(':enter', [\n\t\t\t\tstyle({ transform: 'translateX(-100%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(0%)' }))\n\t\t\t], { optional: true }),\n\t\t\tquery(':leave', [\n\t\t\t\tstyle({ transform: 'translateX(0%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(100%)' }))\n\t\t\t], { optional: true }),\n\t\t])\n\t]),\n\n\ttransition('* => examples', [\n\t\tquery(':enter, :leave', style({ position: 'fixed', width:'100%' })\n\t\t, { optional: true }),\n\t\tgroup([\n\t\t\tquery(':enter', [\n\t\t\t\tstyle({ transform: 'translateX(-100%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(0%)' }))\n\t\t\t], { optional: true }),\n\t\t\tquery(':leave', [\n\t\t\t\tstyle({ transform: 'translateX(0%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(100%)' }))\n\t\t\t], { optional: true }),\n\t\t])\n\t]),\n\t\n\ttransition('* <=> *', [\n\t\tquery(':enter, :leave', style({ position: 'fixed', width:'100%' })\n\t\t, { optional: true }),\n\t\tgroup([\n\t\t\tquery(':enter', [\n\t\t\t\tstyle({ transform: 'translateX(100%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(0%)' }))\n\t\t\t], { optional: true }),\n\t\t\tquery(':leave', [\n\t\t\t\tstyle({ transform: 'translateX(0%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(-100%)' }))\n\t\t\t], { optional: true }),\n\t\t])\n\t]),\n])" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 3988 - ] - } - ], - "sources": [ - { - "fileName": "src/app/router.animations.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 3950, - "name": "\"src/app/services/documentation.service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/app/services/documentation.service.ts", - "children": [ - { - "id": 3951, - "name": "DocumentationService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Injectable", - "type": { - "type": "reference", - "name": "Injectable" - }, - "arguments": {} - } - ], - "children": [ - { - "id": 3952, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 3954, - "name": "new DocumentationService", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 3955, - "name": "_http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - } - ], - "type": { - "type": "reference", - "name": "DocumentationService", - "id": 3951 - } - } - ], - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 13, - "character": 35 - } - ] - }, - { - "id": 3953, - "name": "_http", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 15, - "character": 27 - } - ], - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 3960, - "name": "generateJSONReport", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 3961, - "name": "generateJSONReport", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "reference", - "name": "Subscription" - } - } - ], - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 48, - "character": 27 - } - ] - }, - { - "id": 3962, - "name": "getComponentById", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 3963, - "name": "getComponentById", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Gets first component from docs.json that matches the provided id.\nIt is expected each id should be unique." - }, - "parameters": [ - { - "id": 3964, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "type": { - "type": "reference", - "name": "ReplaySubject", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 142, - "character": 25 - } - ] - }, - { - "id": 3965, - "name": "getComponentByName", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 3966, - "name": "getComponentByName", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Gets first component from docs.json that matches the provideded name.\nIt is expected that each name is unique." - }, - "parameters": [ - { - "id": 3967, - "name": "name", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "ReplaySubject", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 162, - "character": 27 - } - ] - }, - { - "id": 3968, - "name": "getComponentProperties", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 3969, - "name": "getComponentProperties", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Gets array of properties for a component given the component's name." - }, - "parameters": [ - { - "id": 3970, - "name": "name", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "ReplaySubject", - "typeArguments": [ - { - "type": "instrinct", - "isArray": true, - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 181, - "character": 31 - } - ] - }, - { - "id": 3971, - "name": "getComponentPropertiesById", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 3972, - "name": "getComponentPropertiesById", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Gets a property of a component by its id." - }, - "parameters": [ - { - "id": 3973, - "name": "componentName", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 3974, - "name": "propertyId", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "type": { - "type": "reference", - "name": "ReplaySubject", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 212, - "character": 35 - } - ] - }, - { - "id": 3975, - "name": "getComponentPropertiesByName", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 3976, - "name": "getComponentPropertiesByName", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Gets a property of a component by its name." - }, - "parameters": [ - { - "id": 3977, - "name": "componentName", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 3978, - "name": "name", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "ReplaySubject", - "typeArguments": [ - { - "type": "instrinct", - "isArray": true, - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 233, - "character": 37 - } - ] - }, - { - "id": 3958, - "name": "getComponents", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 3959, - "name": "getComponents", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Gets all components from docs.json" - }, - "type": { - "type": "reference", - "name": "ReplaySubject", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 25, - "character": 22 - } - ] - }, - { - "id": 3979, - "name": "getInterfaces", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 3980, - "name": "getInterfaces", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Gets array of interfaces from docs.jsons" - }, - "type": { - "type": "reference", - "name": "ReplaySubject", - "typeArguments": [ - { - "type": "instrinct", - "isArray": true, - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 254, - "character": 22 - } - ] - }, - { - "id": 3981, - "name": "getTypes", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 3982, - "name": "getTypes", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Gets array of types form docs.json" - }, - "type": { - "type": "reference", - "name": "ReplaySubject", - "typeArguments": [ - { - "type": "instrinct", - "isArray": true, - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 280, - "character": 17 - } - ] - }, - { - "id": 3956, - "name": "loadData", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 3957, - "name": "loadData", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 17, - "character": 17 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 3952 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 3953 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 3960, - 3962, - 3965, - 3968, - 3971, - 3975, - 3958, - 3979, - 3981, - 3956 - ] - } - ], - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 13, - "character": 33 - } - ] - }, - { - "id": 3983, - "name": "regexComponent", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 6, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "RegExp" - }, - "defaultValue": " new RegExp('([^/]*(\\.component|\\.directive))')" - }, - { - "id": 3986, - "name": "regexInterfaces", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 9, - "character": 21 - } - ], - "type": { - "type": "reference", - "name": "RegExp" - }, - "defaultValue": " new RegExp('interfaces.ts')" - }, - { - "id": 3984, - "name": "regexNotComponent", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 7, - "character": 23 - } - ], - "type": { - "type": "reference", - "name": "RegExp" - }, - "defaultValue": " new RegExp('([^.component])')" - }, - { - "id": 3985, - "name": "regexTypes", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 8, - "character": 16 - } - ], - "type": { - "type": "reference", - "name": "RegExp" - }, - "defaultValue": " new RegExp('types.ts')" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 3951 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 3983, - 3986, - 3984, - 3985 - ] - } - ], - "sources": [ - { - "fileName": "src/app/services/documentation.service.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 3989, - "name": "\"src/app/services/markdown/markdown-processor\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/app/services/markdown/markdown-processor.ts", - "children": [ - { - "id": 3990, - "name": "MarkdownProcessor", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 4003, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4006, - "name": "new MarkdownProcessor", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4007, - "name": "assetsDir", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 4008, - "name": "ext", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"txt\"" - } - ], - "type": { - "type": "reference", - "name": "MarkdownProcessor", - "id": 3990 - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 5, - "character": 54 - } - ] - }, - { - "id": 4004, - "name": "assetsDir", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 8, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 3995, - "name": "changeFileExt", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 4, - "character": 23 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3996, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 3997, - "name": "__call", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 3998, - "name": "a", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "isArray": true, - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 4, - "character": 24 - } - ] - } - } - }, - { - "id": 4005, - "name": "ext", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 9, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 3999, - "name": "prependAssetsDir", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 5, - "character": 26 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 4000, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 4001, - "name": "__call", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4002, - "name": "a", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "isArray": true, - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 5, - "character": 27 - } - ] - } - } - }, - { - "id": 3991, - "name": "processString", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 3, - "character": 22 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 3992, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 3993, - "name": "__call", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 3994, - "name": "a", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 3, - "character": 23 - } - ] - } - } - }, - { - "id": 4027, - "name": "joinBase", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 4028, - "name": "joinBase", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4029, - "name": "arr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "isArray": true, - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 114, - "character": 18 - } - ] - }, - { - "id": 4018, - "name": "joinString", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 4019, - "name": "joinString", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4020, - "name": "arr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "isArray": true, - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 79, - "character": 20 - } - ] - }, - { - "id": 4036, - "name": "pipe", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 4037, - "name": "pipe", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4038, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Function" - } - }, - { - "id": 4039, - "name": "fns", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "reference", - "isArray": true, - "name": "Function" - } - } - ], - "type": { - "type": "reference", - "name": "(Anonymous function)" - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 160, - "character": 14 - } - ] - }, - { - "id": 4033, - "name": "setAssetsDir", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 4034, - "name": "setAssetsDir", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4035, - "name": "root", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "prependAssetsDir" - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 150, - "character": 22 - } - ] - }, - { - "id": 4015, - "name": "setFileExt", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 4016, - "name": "setFileExt", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4017, - "name": "ext", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "(Anonymous function)" - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 50, - "character": 20 - } - ] - }, - { - "id": 4021, - "name": "splitBase", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 4022, - "name": "splitBase", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4023, - "name": "str", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 91, - "character": 19 - } - ] - }, - { - "id": 4012, - "name": "splitString", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 4013, - "name": "splitString", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4014, - "name": "str", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 39, - "character": 21 - } - ] - }, - { - "id": 4009, - "name": "stripLeadingSlash", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 4010, - "name": "stripLeadingSlash", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4011, - "name": "str", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 25, - "character": 27 - } - ] - }, - { - "id": 4024, - "name": "swapFileExt", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 4025, - "name": "swapFileExt", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4026, - "name": "ext", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "(Anonymous function)" - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 97, - "character": 21 - } - ] - }, - { - "id": 4030, - "name": "validateFileArray", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 4031, - "name": "validateFileArray", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4032, - "name": "arr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "isArray": true, - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 126, - "character": 27 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4003 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4004, - 3995, - 4005, - 3999, - 3991 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4027, - 4018, - 4036, - 4033, - 4015, - 4021, - 4012, - 4009, - 4024, - 4030 - ] - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 1, - "character": 30 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 3990 - ] - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown-processor.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4040, - "name": "\"src/app/services/markdown/markdown.service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/app/services/markdown/markdown.service.ts", - "children": [ - { - "id": 4041, - "name": "MarkdownService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Injectable", - "type": { - "type": "reference", - "name": "Injectable" - }, - "arguments": {} - } - ], - "children": [ - { - "id": 4043, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4045, - "name": "new MarkdownService", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4046, - "name": "http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Http" - } - } - ], - "type": { - "type": "reference", - "name": "MarkdownService", - "id": 4041 - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown.service.ts", - "line": 8, - "character": 24 - } - ] - }, - { - "id": 4044, - "name": "http", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/services/markdown/markdown.service.ts", - "line": 10, - "character": 26 - } - ], - "type": { - "type": "reference", - "name": "Http" - } - }, - { - "id": 4042, - "name": "processString", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/services/markdown/markdown.service.ts", - "line": 8, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 4047, - "name": "get", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4048, - "name": "get", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4049, - "name": "file", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "reference", - "name": "Response" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown.service.ts", - "line": 18, - "character": 12 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4043 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4044, - 4042 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4047 - ] - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown.service.ts", - "line": 6, - "character": 28 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4041 - ] - } - ], - "sources": [ - { - "fileName": "src/app/services/markdown/markdown.service.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9152, - "name": "\"src/app/site-components/example/code.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/app/site-components/example/code.component.ts", - "children": [ - { - "id": 9153, - "name": "CodeExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'code-example',\n template: ``,\n}" - } - } - ], - "children": [ - { - "id": 9159, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9162, - "name": "new CodeExampleComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9163, - "name": "_renderer", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Renderer2" - } - }, - { - "id": 9164, - "name": "_el", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ElementRef" - } - } - ], - "type": { - "type": "reference", - "name": "CodeExampleComponent", - "id": 9153 - } - } - ], - "sources": [ - { - "fileName": "src/app/site-components/example/code.component.ts", - "line": 14, - "character": 30 - } - ] - }, - { - "id": 9161, - "name": "_el", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/site-components/example/code.component.ts", - "line": 18, - "character": 15 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 9160, - "name": "_renderer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/site-components/example/code.component.ts", - "line": 17, - "character": 21 - } - ], - "type": { - "type": "reference", - "name": "Renderer2" - } - }, - { - "id": 9154, - "name": "code", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/app/site-components/example/code.component.ts", - "line": 9, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9157, - "name": "codeNode", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/site-components/example/code.component.ts", - "line": 13, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "Node" - } - }, - { - "id": 9155, - "name": "language", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/app/site-components/example/code.component.ts", - "line": 10, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9158, - "name": "nativeElement", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/site-components/example/code.component.ts", - "line": 14, - "character": 23 - } - ], - "type": { - "type": "reference", - "name": "Node" - } - }, - { - "id": 9156, - "name": "preNode", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/app/site-components/example/code.component.ts", - "line": 12, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Node" - } - }, - { - "id": 9165, - "name": "ngAfterViewInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 9166, - "name": "ngAfterViewInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/app/site-components/example/code.component.ts", - "line": 22, - "character": 24 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9159 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9161, - 9160, - 9154, - 9157, - 9155, - 9158, - 9156 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 9165 - ] - } - ], - "sources": [ - { - "fileName": "src/app/site-components/example/code.component.ts", - "line": 8, - "character": 33 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "AfterViewInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9153 - ] - } - ], - "sources": [ - { - "fileName": "src/app/site-components/example/code.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9148, - "name": "\"src/app/site-components/example/example.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/app/site-components/example/example.component.ts", - "children": [ - { - "id": 9149, - "name": "ExampleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'doc-example',\n templateUrl: 'example.template.html',\n}" - } - } - ], - "children": [ - { - "id": 9150, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9151, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/app/site-components/example/example.component.ts", - "line": 9, - "character": 10 - } - ] - } - ], - "groups": [ - { - "title": "Methods", - "kind": 2048, - "children": [ - 9150 - ] - } - ], - "sources": [ - { - "fileName": "src/app/site-components/example/example.component.ts", - "line": 7, - "character": 29 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9149 - ] - } - ], - "sources": [ - { - "fileName": "src/app/site-components/example/example.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9167, - "name": "\"src/app/site-components/sitecomponents.module\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/app/site-components/sitecomponents.module.ts", - "children": [ - { - "id": 9168, - "name": "SiteComponentsModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n declarations: [\n ExampleComponent,\n CodeExampleComponent\n ],\n imports: [\n ],\n exports: [\n ExampleComponent,\n CodeExampleComponent\n ],\n}" - } - } - ], - "sources": [ - { - "fileName": "src/app/site-components/sitecomponents.module.ts", - "line": 18, - "character": 33 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9168 - ] - } - ], - "sources": [ - { - "fileName": "src/app/site-components/sitecomponents.module.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9180, - "name": "\"src/environments/environment\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/environments/environment.ts", - "children": [ - { - "id": 9181, - "name": "environment", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 9188, - "name": "DOCS", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/environments/environment.ts", - "line": 7, - "character": 6 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9189, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9193, - "name": "component", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/environments/environment.ts", - "line": 7, - "character": 93 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"AccordionExampleComponent\"" - }, - { - "id": 9192, - "name": "item", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/environments/environment.ts", - "line": 7, - "character": 69 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Accordion\"" - }, - { - "id": 9190, - "name": "link", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/environments/environment.ts", - "line": 7, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"components/accordion\"" - }, - { - "id": 9191, - "name": "section", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/environments/environment.ts", - "line": 7, - "character": 49 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Components\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9193, - 9192, - 9190, - 9191 - ] - } - ] - } - } - ] - }, - "defaultValue": " [{\"link\":\"components/accordion\",\"section\":\"Components\",\"item\":\"Accordion\",\"component\":\"AccordionExampleComponent\"},{\"link\":\"components/actions/action-button\",\"section\":\"Components\",\"item\":\"Action Button\",\"component\":\"SamActionButtonExampleComponent\",\"subsection\":\"Actions\"},{\"link\":\"components/actions/actions-dropdown\",\"section\":\"Components\",\"item\":\"Actions Dropdown\",\"component\":\"SamActionsDropdownComponentExampleComponent\",\"subsection\":\"Actions\"},{\"link\":\"components/alert\",\"section\":\"Components\",\"item\":\"Alert\",\"component\":\"AlertExampleComponent\"},{\"link\":\"components/alert-footer\",\"section\":\"Components\",\"item\":\"Alert Footer\",\"component\":\"SamAlertFooterComponentExampleComponent\"},{\"link\":\"components/badge\",\"section\":\"Components\",\"item\":\"Badge\",\"component\":\"SamBadgeComponentExampleComponent\"},{\"link\":\"components/banner\",\"section\":\"Components\",\"item\":\"Banner\",\"component\":\"BannerExampleComponent\"},{\"link\":\"components/breadcrumbs\",\"section\":\"Components\",\"item\":\"Breadcrumbs\",\"component\":\"SamBreadcrumbsComponentExampleComponent\"},{\"link\":\"components/collapsible\",\"section\":\"Components\",\"item\":\"Collapsible\",\"component\":\"CollapsibleExampleComponent\"},{\"link\":\"components/comments\",\"section\":\"Components\",\"item\":\"Comments\",\"component\":\"SamCommentsComponentExampleComponent\"},{\"link\":\"components/download\",\"section\":\"Components\",\"item\":\"Download\",\"component\":\"DownloadExampleComponent\"},{\"link\":\"components/files\",\"section\":\"Components\",\"item\":\"Files\",\"component\":\"SamFilesComponentExampleComponent\"},{\"link\":\"components/filters-container\",\"section\":\"Components\",\"item\":\"Filters Container\",\"component\":\"FiltersContainerExampleComponent\"},{\"link\":\"components/header\",\"section\":\"Components\",\"item\":\"Header\",\"component\":\"SamHeaderComponentExampleComponent\"},{\"link\":\"components/history\",\"section\":\"Components\",\"item\":\"History\",\"component\":\"HistoryExampleComponent\"},{\"link\":\"components/image\",\"section\":\"Components\",\"item\":\"Image\",\"component\":\"SamImageComponentExampleComponent\"},{\"link\":\"components/info-accordion\",\"section\":\"Components\",\"item\":\"Info Accordion\",\"component\":\"InfoAccordionExampleComponent\"},{\"link\":\"components/label\",\"section\":\"Components\",\"item\":\"Label\",\"component\":\"LabelExampleComponent\"},{\"link\":\"components/modal\",\"section\":\"Components\",\"item\":\"Modal\",\"component\":\"ModalExampleComponent\"},{\"link\":\"components/multiselect-dropdown\",\"section\":\"Components\",\"item\":\"Multiselect Dropdown\",\"component\":\"MultiselectDropdownExampleComponent\"},{\"link\":\"components/pagination\",\"section\":\"Components\",\"item\":\"Pagination\",\"component\":\"PaginationExampleComponent\"},{\"link\":\"components/point-of-contact\",\"section\":\"Components\",\"item\":\"Point Of Contact\",\"component\":\"POCExampleComponent\"},{\"link\":\"components/progress-bar\",\"section\":\"Components\",\"item\":\"Progress Bar\",\"component\":\"SamProgressExampleComponent\"},{\"link\":\"components/sidenav\",\"section\":\"Components\",\"item\":\"Sidenav\",\"component\":\"SidenavExampleComponent\"},{\"link\":\"components/spinner\",\"section\":\"Components\",\"item\":\"Spinner\",\"component\":\"SpinnerExampleComponent\"},{\"link\":\"components/tabs\",\"section\":\"Components\",\"item\":\"Tabs\",\"component\":\"TabsExampleComponent\"},{\"link\":\"components/upload\",\"section\":\"Components\",\"item\":\"Upload\",\"component\":\"SamUploadComponentExampleComponent\"},{\"link\":\"directives/click-outside\",\"section\":\"Directives\",\"item\":\"Click Outside\",\"component\":\"ClickOutsideExampleComponent\"},{\"link\":\"directives/drag-drop\",\"section\":\"Directives\",\"item\":\"Drag Drop\",\"component\":\"SamDragDropDirectiveExampleComponent\"},{\"link\":\"directives/focus\",\"section\":\"Directives\",\"item\":\"Focus\",\"component\":\"SamFocusDirectiveExampleComponent\"},{\"link\":\"directives/sticky\",\"section\":\"Directives\",\"item\":\"Sticky\",\"component\":\"StickyExampleComponent\"},{\"link\":\"directives/tab-outside\",\"section\":\"Directives\",\"item\":\"Tab Outside\",\"component\":\"TabOutsideExampleComponent\"},{\"link\":\"elements/button\",\"section\":\"Elements\",\"item\":\"Button\",\"component\":\"ButtonExampleComponent\"},{\"link\":\"experimental/box\",\"section\":\"Experimental\",\"item\":\"Box\",\"component\":\"SamBoxComponentExampleComponent\"},{\"link\":\"experimental/container\",\"section\":\"Experimental\",\"item\":\"Container\",\"component\":\"SamContainerComponentExampleComponent\"},{\"link\":\"experimental/heading\",\"section\":\"Experimental\",\"item\":\"Heading\",\"component\":\"SamHeadingComponentExampleComponent\"},{\"link\":\"experimental/icon\",\"section\":\"Experimental\",\"item\":\"Icon\",\"component\":\"SamIconComponentExampleComponent\"},{\"link\":\"experimental/list\",\"section\":\"Experimental\",\"item\":\"List\",\"component\":\"SamListComponentExampleComponent\"},{\"link\":\"experimental/master-page\",\"section\":\"Experimental\",\"item\":\"Master Page\",\"component\":\"SamMasterPageComponentExampleComponent\"},{\"link\":\"experimental/page\",\"section\":\"Experimental\",\"item\":\"Page\",\"component\":\"SamPageComponentExampleComponent\"},{\"link\":\"experimental/sidebar\",\"section\":\"Experimental\",\"item\":\"Sidebar\",\"component\":\"SamSidebarComponentExampleComponent\"},{\"link\":\"experimental/youtube\",\"section\":\"Experimental\",\"item\":\"Youtube\",\"component\":\"SamYoutubeComponentExampleComponent\"},{\"link\":\"form-controls/autocomplete\",\"section\":\"Form Controls\",\"item\":\"Autocomplete\",\"component\":\"AutocompleteExampleComponent\"},{\"link\":\"form-controls/autocomplete-multiselect\",\"section\":\"Form Controls\",\"item\":\"Autocomplete Multiselect\",\"component\":\"AutocompleteMultiselectExampleComponent\"},{\"link\":\"form-controls/checkbox\",\"section\":\"Form Controls\",\"item\":\"Checkbox\",\"component\":\"CheckboxExampleComponent\"},{\"link\":\"form-controls/date\",\"section\":\"Form Controls\",\"item\":\"Date\",\"component\":\"DateExampleComponent\"},{\"link\":\"form-controls/date-range\",\"section\":\"Form Controls\",\"item\":\"Date Range\",\"component\":\"SamDateRangeComponentExampleComponent\"},{\"link\":\"form-controls/date-time\",\"section\":\"Form Controls\",\"item\":\"Date Time\",\"component\":\"DateTimeExampleComponent\"},{\"link\":\"form-controls/number\",\"section\":\"Form Controls\",\"item\":\"Number\",\"component\":\"NumberExampleComponent\"},{\"link\":\"form-controls/radiobutton\",\"section\":\"Form Controls\",\"item\":\"Radiobutton\",\"component\":\"RadioExampleComponent\"},{\"link\":\"form-controls/select\",\"section\":\"Form Controls\",\"item\":\"Select\",\"component\":\"SelectExampleComponent\"},{\"link\":\"form-controls/text\",\"section\":\"Form Controls\",\"item\":\"Text\",\"component\":\"TextExampleComponent\"},{\"link\":\"form-controls/textarea\",\"section\":\"Form Controls\",\"item\":\"Textarea\",\"component\":\"TextareaExampleComponent\"},{\"link\":\"form-controls/time\",\"section\":\"Form Controls\",\"item\":\"Time\",\"component\":\"TimeExampleComponent\"},{\"link\":\"form-controls/toggle-switch\",\"section\":\"Form Controls\",\"item\":\"Toggle Switch\",\"component\":\"ToggleSwitchExampleComponent\"},{\"link\":\"form-templates/name-entry\",\"section\":\"Form Templates\",\"item\":\"Name Entry\",\"component\":\"NameEntryExampleComponent\"},{\"link\":\"form-templates/phone-entry\",\"section\":\"Form Templates\",\"item\":\"Phone Entry\",\"component\":\"PhoneEntryExampleComponent\"},{\"link\":\"service-directives/autocomplete/country\",\"section\":\"Service Directives\",\"item\":\"Country\",\"component\":\"CountryServiceDirectiveExampleComponent\",\"subsection\":\"Autocomplete\"},{\"link\":\"service-directives/autocomplete/state\",\"section\":\"Service Directives\",\"item\":\"State\",\"component\":\"StateServiceDirectiveExampleComponent\",\"subsection\":\"Autocomplete\"},{\"link\":\"wrappers/fieldset-wrapper\",\"section\":\"Wrappers\",\"item\":\"Fieldset Wrapper\",\"component\":\"FieldsetWrapperExampleComponent\"},{\"link\":\"wrappers/label-wrapper\",\"section\":\"Wrappers\",\"item\":\"Label Wrapper\",\"component\":\"LabelWrapperExampleComponent\"}]" - }, - { - "id": 9194, - "name": "ENV", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/environments/environment.ts", - "line": 8, - "character": 5 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"undefined\"" - }, - { - "id": 9182, - "name": "STATICPAGES", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/environments/environment.ts", - "line": 6, - "character": 13 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9183, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9184, - "name": "file", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/environments/environment.ts", - "line": 6, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/architecture/Form-Service.md\"" - }, - { - "id": 9187, - "name": "item", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/environments/environment.ts", - "line": 6, - "character": 179 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Form Service\"" - }, - { - "id": 9185, - "name": "link", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/environments/environment.ts", - "line": 6, - "character": 119 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"architecture/form-service\"" - }, - { - "id": 9186, - "name": "section", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/environments/environment.ts", - "line": 6, - "character": 157 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Architecture\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9184, - 9187, - 9185, - 9186 - ] - } - ] - } - } - ] - }, - "defaultValue": " [{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/architecture/Form-Service.md\",\"link\":\"architecture/form-service\",\"section\":\"Architecture\",\"item\":\"Form Service\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/architecture/Modules-And-Lazy-Loading.md\",\"link\":\"architecture/modules-and-lazy-loading\",\"section\":\"Architecture\",\"item\":\"Modules And Lazy Loading\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/architecture/Title-Service.md\",\"link\":\"architecture/title-service\",\"section\":\"Architecture\",\"item\":\"Title Service\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/overview/Contribute.md\",\"link\":\"overview/contribute\",\"section\":\"Overview\",\"item\":\"Contribute\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/overview/Getting-Started.md\",\"link\":\"overview/getting-started\",\"section\":\"Overview\",\"item\":\"Getting Started\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/overview/Giving-Back.md\",\"link\":\"overview/giving-back\",\"section\":\"Overview\",\"item\":\"Giving Back\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/overview/How-to-use-this-site.md\",\"link\":\"overview/how-to-use-this-site\",\"section\":\"Overview\",\"item\":\"How To Use This Site\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Basic-Page.md\",\"link\":\"pages/basic-page\",\"section\":\"Pages\",\"item\":\"Basic Page\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Buttons-and-Links.md\",\"link\":\"pages/buttons-and-links\",\"section\":\"Pages\",\"item\":\"Buttons And Links\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Colors.md\",\"link\":\"pages/colors\",\"section\":\"Pages\",\"item\":\"Colors\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Complex-Data-Entry.md\",\"link\":\"pages/complex-data-entry\",\"section\":\"Pages\",\"item\":\"Complex Data Entry\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Global-Elements.md\",\"link\":\"pages/global-elements\",\"section\":\"Pages\",\"item\":\"Global Elements\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Graphics-and-Images.md\",\"link\":\"pages/graphics-and-images\",\"section\":\"Pages\",\"item\":\"Graphics And Images\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/List-Page.md\",\"link\":\"pages/list-page\",\"section\":\"Pages\",\"item\":\"List Page\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Page-Templates.md\",\"link\":\"pages/page-templates\",\"section\":\"Pages\",\"item\":\"Page Templates\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Simple-Data-Entry.md\",\"link\":\"pages/simple-data-entry\",\"section\":\"Pages\",\"item\":\"Simple Data Entry\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Typography.md\",\"link\":\"pages/typography\",\"section\":\"Pages\",\"item\":\"Typography\"},{\"file\":\"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Workspace-Page.md\",\"link\":\"pages/workspace-page\",\"section\":\"Pages\",\"item\":\"Workspace Page\"}]" - }, - { - "id": 9195, - "name": "production", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/environments/environment.ts", - "line": 9, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9188, - 9194, - 9182, - 9195 - ] - } - ], - "sources": [ - { - "fileName": "src/environments/environment.ts", - "line": 5, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 9181 - ] - } - ], - "sources": [ - { - "fileName": "src/environments/environment.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9203, - "name": "\"src/environments/environment.prod\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/environments/environment.prod.ts", - "children": [ - { - "id": 9204, - "name": "environment", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 9205, - "name": "production", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/environments/environment.prod.ts", - "line": 2, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9205 - ] - } - ], - "sources": [ - { - "fileName": "src/environments/environment.prod.ts", - "line": 1, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 9204 - ] - } - ], - "sources": [ - { - "fileName": "src/environments/environment.prod.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9196, - "name": "\"src/main\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/main.ts", - "sources": [ - { - "fileName": "src/main.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9377, - "name": "\"src/patterns/pages/page-a/page-doc.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/pages/page-a/page-doc.component.ts", - "children": [ - { - "id": 9378, - "name": "PageADocComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n templateUrl: \"page-doc.template.html\"\n}" - } - } - ], - "children": [ - { - "id": 9380, - "name": "code_component", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-doc.component.ts", - "line": 57, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_component" - }, - { - "id": 9379, - "name": "code_template", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-doc.component.ts", - "line": 56, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_template" - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 9380, - 9379 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-doc.component.ts", - "line": 55, - "character": 30 - } - ] - }, - { - "id": 9382, - "name": "code_example_component", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-doc.component.ts", - "line": 20, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\nimport { Component} from '@angular/core';\n\n// Relative path: adjust to match your folder structure\nimport { MenuItem } from 'sam-ui-elements/src/ui-kit/components/sidenav';\n\n@Component({\n template: 'your template html',\n})\nexport class PageComponent{\n\n sidenavModel: MenuItem = {\n label: \"SideNavigation\",\n children: [\n {\n label: \"Lorem ipsum dolor\",\n route: \"#\"\n },\n {\n label: \"Nullam at mauris\",\n route: \"#\"\n }\n ]\n };\n \n breadcrumbs = [\n { breadcrumb: 'Consectetur adipiscing', url: '/' },\n { breadcrumb: 'Lorem ipsum dolor'}\n ];\n \n}`" - }, - { - "id": 9381, - "name": "code_example_template", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-doc.component.ts", - "line": 3, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n\n \n \n \n\n

    \n Quisque lacinia commodo neque et suscipit. Integer rutrum mauris ex, non \n ornare leo interdum nec. Suspendisse vitae tortor aliquam, tincidunt metus \n ut, cursus est. Maecenas luctus maximus se...\n

    \n
    `" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9378 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 9382, - 9381 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-doc.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9383, - "name": "\"src/patterns/pages/page-a/page-settings.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/pages/page-a/page-settings.component.ts", - "children": [ - { - "id": 9384, - "name": "PageASettingsComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n templateUrl: 'page-settings.template.html'\n}" - } - } - ], - "children": [ - { - "id": 9396, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9398, - "name": "new PageASettingsComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9399, - "name": "pagesservice", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "PagesService", - "id": 9253 - } - } - ], - "type": { - "type": "reference", - "name": "PageASettingsComponent", - "id": 9384 - } - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 18, - "character": 4 - } - ] - }, - { - "id": 9397, - "name": "pagesservice", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 20, - "character": 34 - } - ], - "type": { - "type": "reference", - "name": "PagesService", - "id": 9253 - } - }, - { - "id": 9385, - "name": "radioModel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 8, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": "\"lorem\"" - }, - { - "id": 9400, - "name": "updateData", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9401, - "name": "updateData", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9402, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 24, - "character": 12 - } - ] - }, - { - "id": 9386, - "name": "radioConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 9394, - "name": "errorMessage", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 16, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 9395, - "name": "hint", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 17, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 9393, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 15, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Select data\"" - }, - { - "id": 9392, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 14, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"radio-settings\"" - }, - { - "id": 9387, - "name": "options", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 10, - "character": 11 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9388, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9390, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 11, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SAM Help Section\"" - }, - { - "id": 9391, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 11, - "character": 53 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"radio-help\"" - }, - { - "id": 9389, - "name": "value", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 11, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"help\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9390, - 9391, - 9389 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {value: 'help', label: 'SAM Help Section', name: 'radio-help'},\n {value: 'lorem', label: 'Lorem Ipsum', name: 'radio-lorem'}\n ]" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9394, - 9395, - 9393, - 9392, - 9387 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 9, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9396 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9397, - 9385 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 9400 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 9386 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 7, - "character": 35 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9384 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page-settings.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9369, - "name": "\"src/patterns/pages/page-a/page.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/pages/page-a/page.component.ts", - "children": [ - { - "id": 9370, - "name": "PageAComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n templateUrl: 'page.template.html'\n}" - } - } - ], - "children": [ - { - "id": 9371, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9374, - "name": "new PageAComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9375, - "name": "masterpageservice", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamMasterPageService", - "id": 8923 - } - }, - { - "id": 9376, - "name": "pagesservice", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "PagesService", - "id": 9253 - } - } - ], - "type": { - "type": "reference", - "name": "PageAComponent", - "id": 9370 - } - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page.component.ts", - "line": 9, - "character": 29 - } - ] - }, - { - "id": 9372, - "name": "masterpageservice", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page.component.ts", - "line": 12, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "SamMasterPageService", - "id": 8923 - } - }, - { - "id": 9373, - "name": "pagesservice", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page.component.ts", - "line": 13, - "character": 24 - } - ], - "type": { - "type": "reference", - "name": "PagesService", - "id": 9253 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9371 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9372, - 9373 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page.component.ts", - "line": 9, - "character": 27 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9370 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-a/page.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9412, - "name": "\"src/patterns/pages/page-b/page-doc.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/pages/page-b/page-doc.component.ts", - "children": [ - { - "id": 9413, - "name": "PageBDocComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n templateUrl: \"page-doc.template.html\"\n}" - } - } - ], - "children": [ - { - "id": 9415, - "name": "code_component", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-b/page-doc.component.ts", - "line": 57, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_component" - }, - { - "id": 9414, - "name": "code_template", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-b/page-doc.component.ts", - "line": 56, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_template" - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 9415, - 9414 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-b/page-doc.component.ts", - "line": 55, - "character": 30 - } - ] - }, - { - "id": 9417, - "name": "code_example_component", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/page-b/page-doc.component.ts", - "line": 20, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\nimport { Component} from '@angular/core';\n\n// Relative path: adjust to match your folder structure\nimport { MenuItem } from 'sam-ui-elements/src/ui-kit/components/sidenav';\n\n@Component({\n template: 'your template html',\n})\nexport class PageComponent{\n\n sidenavModel: MenuItem = {\n label: \"SideNavigation\",\n children: [\n {\n label: \"Lorem ipsum dolor\",\n route: \"#\"\n },\n {\n label: \"Nullam at mauris\",\n route: \"#\"\n }\n ]\n };\n \n breadcrumbs = [\n { breadcrumb: 'Consectetur adipiscing', url: '/' },\n { breadcrumb: 'Lorem ipsum dolor'}\n ];\n \n}`" - }, - { - "id": 9416, - "name": "code_example_template", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/page-b/page-doc.component.ts", - "line": 3, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n\n \n \n \n\n

    \n Quisque lacinia commodo neque et suscipit. Integer rutrum mauris ex, non \n ornare leo interdum nec. Suspendisse vitae tortor aliquam, tincidunt metus \n ut, cursus est. Maecenas luctus maximus se...\n

    \n
    `" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9413 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 9417, - 9416 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-b/page-doc.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9403, - "name": "\"src/patterns/pages/page-b/page.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/pages/page-b/page.component.ts", - "children": [ - { - "id": 9404, - "name": "PageBComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n templateUrl: 'page.template.html'\n}" - } - } - ], - "children": [ - { - "id": 9405, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9407, - "name": "new PageBComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9408, - "name": "masterpageservice", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamMasterPageService", - "id": 8923 - } - } - ], - "type": { - "type": "reference", - "name": "PageBComponent", - "id": 9404 - } - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-b/page.component.ts", - "line": 8, - "character": 28 - } - ] - }, - { - "id": 9409, - "name": "breadcrumbs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-b/page.component.ts", - "line": 15, - "character": 13 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9410, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9411, - "name": "breadcrumb", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/page-b/page.component.ts", - "line": 17, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Lorem ipsum dolor\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9411 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n { breadcrumb: 'Consectetur adipiscing', url: '/' },\n { breadcrumb: 'Lorem ipsum dolor'}\n ]" - }, - { - "id": 9406, - "name": "masterpageservice", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/page-b/page.component.ts", - "line": 10, - "character": 39 - } - ], - "type": { - "type": "reference", - "name": "SamMasterPageService", - "id": 8923 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9405 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9409, - 9406 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-b/page.component.ts", - "line": 8, - "character": 27 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9404 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/page-b/page.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9363, - "name": "\"src/patterns/pages/pages.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/pages/pages.component.ts", - "children": [ - { - "id": 9364, - "name": "PagesComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n template: `\n \n \n \n `,\n providers: [PagesService]\n}" - } - } - ], - "children": [ - { - "id": 9365, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9367, - "name": "new PagesComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9368, - "name": "pagesservice", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "PagesService", - "id": 9253 - } - } - ], - "type": { - "type": "reference", - "name": "PagesComponent", - "id": 9364 - } - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/pages.component.ts", - "line": 12, - "character": 29 - } - ] - }, - { - "id": 9366, - "name": "pagesservice", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.component.ts", - "line": 14, - "character": 34 - } - ], - "type": { - "type": "reference", - "name": "PagesService", - "id": 9253 - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9365 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9366 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/pages.component.ts", - "line": 12, - "character": 27 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9364 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/pages.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9534, - "name": "\"src/patterns/pages/pages.module\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/pages/pages.module.ts", - "children": [ - { - "id": 9535, - "name": "PagesModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n declarations: [\n PagesComponent,\n PageAComponent,\n PageADocComponent,\n PageASettingsComponent,\n PageBComponent,\n PageBDocComponent,\n ],\n imports: [\n CommonModule,\n PagesRoutingModule,\n SamUIKitModule,\n SiteComponentsModule,\n SamFutureModule\n ],\n exports: [\n ],\n}" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/pages.module.ts", - "line": 38, - "character": 24 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9535 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/pages.module.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9418, - "name": "\"src/patterns/pages/pages.routes\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/pages/pages.routes.ts", - "children": [ - { - "id": 9419, - "name": "PagesRoutingModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n RouterModule.forChild(pagesRoutes)\n ],\n exports: [\n RouterModule \n ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/pages.routes.ts", - "line": 54, - "character": 31 - } - ] - }, - { - "id": 9420, - "name": "pagesRoutes", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.routes.ts", - "line": 14, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Routes" - }, - "defaultValue": " [\n {\n path: 'page',\n component: PagesComponent,\n children: [\n {\n path: 'a',\n component: PageAComponent\n },\n {\n path: 'a-doc',\n component: PageADocComponent,\n outlet: \"master-modal\"\n },\n {\n path: 'a-settings',\n component: PageASettingsComponent,\n outlet: \"master-modal\"\n },\n {\n path: 'b',\n component: PageBComponent\n },\n {\n path: 'b-doc',\n component: PageBDocComponent,\n outlet: \"master-modal\"\n }\n ]\n }\n]" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9419 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 9420 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/pages.routes.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9252, - "name": "\"src/patterns/pages/pages.service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/pages/pages.service.ts", - "children": [ - { - "id": 9253, - "name": "PagesService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Injectable", - "type": { - "type": "reference", - "name": "Injectable" - }, - "arguments": {} - } - ], - "children": [ - { - "id": 9359, - "name": "updatePageData", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9360, - "name": "updatePageData", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9361, - "name": "page", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 9362, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 177, - "character": 16 - } - ] - }, - { - "id": 9322, - "name": "PageA", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 9323, - "name": "data", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 173, - "character": 8 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 9324, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9327, - "name": "breadcrumbs", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 93, - "character": 15 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9328, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9329, - "name": "breadcrumb", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 95, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Customer Support\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9329 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n { breadcrumb: 'Help Center', url: '/' },\n { breadcrumb: 'Customer Support'}\n ]" - }, - { - "id": 9340, - "name": "contentBelowBoxes", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 118, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SAM Users can generally be grouped in to three types: federal users, award recipients (entity users), and public users.\"" - }, - { - "id": 9334, - "name": "contentBoxButton", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 103, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Sign Up\"" - }, - { - "id": 9333, - "name": "contentBoxDescription", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 102, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"You can now create your user account in SAM\"" - }, - { - "id": 9332, - "name": "contentBoxTitle", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 101, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Sign Up Now\"" - }, - { - "id": 9342, - "name": "contentFirstParagraph", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 122, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"You can search for the following public information without a user account.\"" - }, - { - "id": 9343, - "name": "contentFirstParagraphList", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 124, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9344, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9345, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 125, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Federal assistance listings\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9345 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\"text\": \"Federal assistance listings\"},\n {\"text\": \"Contract opportunities\"},\n {\"text\": \"Contract awards\"},\n {\"text\": \"Entity registrations\"}\n ]" - }, - { - "id": 9346, - "name": "contentFirstParagraphList2", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 130, - "character": 30 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9347, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9348, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 131, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Entity exclusions\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9348 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\"text\": \"Entity exclusions\"},\n {\"text\": \"Federal hierarchy\"},\n {\"text\": \"Wage determinations\"}\n ]" - }, - { - "id": 9341, - "name": "contentFirstParagraphTitle", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 121, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"What You Can Do Without An Account\"" - }, - { - "id": 9353, - "name": "contentHorizontalMenuItems", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 148, - "character": 30 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9354, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9355, - "name": "icon", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 150, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"video\"" - }, - { - "id": 9356, - "name": "link", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 151, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"#\"" - }, - { - "id": 9357, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 152, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Video\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9355, - 9356, - 9357 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n \"icon\": \"video\",\n \"link\": \"#\",\n \"text\": \"Video\"\n },\n {\n \"icon\": \"comment\",\n \"link\": \"#\",\n \"text\": \"FAQs\"\n },\n {\n \"icon\": \"newspaper\",\n \"link\": \"#\",\n \"text\": \"Articles\"\n },\n {\n \"icon\": \"book\",\n \"link\": \"#\",\n \"text\": \"Definitions\"\n }\n ]" - }, - { - "id": 9352, - "name": "contentHorizontalMenuTitle", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 147, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Learning Center: User Accounts\"" - }, - { - "id": 9350, - "name": "contentSecondParagraph", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 137, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"While you won't be able to access any additional capabilities yet, you can prepare by creating your account now. When the additional features become ready in the upcoming months, you'll be ready to sign in.\"" - }, - { - "id": 9351, - "name": "contentSecondParagraph2", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 141, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Note: Even if you have an existing account in one of the legacy systems (e.g., SAM.gov, FBO.gov, CFDA.gov) you'll need to create a new account for beta.SAM.gov. In the future, after all of the individual systems are retired, this account will be your only account for all of our features\"" - }, - { - "id": 9349, - "name": "contentSecondParagraphTitle", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 136, - "character": 31 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Sign Up Now\"" - }, - { - "id": 9335, - "name": "contentSecondaryBoxList", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 105, - "character": 27 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9336, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9337, - "name": "icon", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 107, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"video\"" - }, - { - "id": 9338, - "name": "link", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 108, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"#\"" - }, - { - "id": 9339, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 109, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Title of video that is small\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9337, - 9338, - 9339 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n \"icon\": \"video\",\n \"link\": \"#\",\n \"text\": \"Title of video that is small\"\n },\n {\n \"icon\": \"video\",\n \"link\": \"#\",\n \"text\": \"Title of video that is a little bit longer\"\n }\n ]" - }, - { - "id": 9331, - "name": "sidebarBoxTitle", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 99, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Learning Center\"" - }, - { - "id": 9330, - "name": "sidebarLink", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 98, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Help Home\"" - }, - { - "id": 9325, - "name": "suptitle", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 90, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Help Center\"" - }, - { - "id": 9326, - "name": "title", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 91, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"User Accounts\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9327, - 9340, - 9334, - 9333, - 9332, - 9342, - 9343, - 9346, - 9341, - 9353, - 9352, - 9350, - 9351, - 9349, - 9335, - 9331, - 9330, - 9325, - 9326 - ] - } - ] - } - }, - "defaultValue": " this.helpData" - }, - { - "id": 9358, - "name": "value", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 174, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"help\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9323, - 9358 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 172, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 9288, - "name": "helpData", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 9291, - "name": "breadcrumbs", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 93, - "character": 15 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9292, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9293, - "name": "breadcrumb", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 95, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Customer Support\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9293 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n { breadcrumb: 'Help Center', url: '/' },\n { breadcrumb: 'Customer Support'}\n ]" - }, - { - "id": 9304, - "name": "contentBelowBoxes", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 118, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SAM Users can generally be grouped in to three types: federal users, award recipients (entity users), and public users.\"" - }, - { - "id": 9298, - "name": "contentBoxButton", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 103, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Sign Up\"" - }, - { - "id": 9297, - "name": "contentBoxDescription", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 102, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"You can now create your user account in SAM\"" - }, - { - "id": 9296, - "name": "contentBoxTitle", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 101, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Sign Up Now\"" - }, - { - "id": 9306, - "name": "contentFirstParagraph", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 122, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"You can search for the following public information without a user account.\"" - }, - { - "id": 9307, - "name": "contentFirstParagraphList", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 124, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9308, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9309, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 125, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Federal assistance listings\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9309 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\"text\": \"Federal assistance listings\"},\n {\"text\": \"Contract opportunities\"},\n {\"text\": \"Contract awards\"},\n {\"text\": \"Entity registrations\"}\n ]" - }, - { - "id": 9310, - "name": "contentFirstParagraphList2", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 130, - "character": 30 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9311, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9312, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 131, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Entity exclusions\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9312 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\"text\": \"Entity exclusions\"},\n {\"text\": \"Federal hierarchy\"},\n {\"text\": \"Wage determinations\"}\n ]" - }, - { - "id": 9305, - "name": "contentFirstParagraphTitle", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 121, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"What You Can Do Without An Account\"" - }, - { - "id": 9317, - "name": "contentHorizontalMenuItems", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 148, - "character": 30 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9318, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9319, - "name": "icon", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 150, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"video\"" - }, - { - "id": 9320, - "name": "link", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 151, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"#\"" - }, - { - "id": 9321, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 152, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Video\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9319, - 9320, - 9321 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n \"icon\": \"video\",\n \"link\": \"#\",\n \"text\": \"Video\"\n },\n {\n \"icon\": \"comment\",\n \"link\": \"#\",\n \"text\": \"FAQs\"\n },\n {\n \"icon\": \"newspaper\",\n \"link\": \"#\",\n \"text\": \"Articles\"\n },\n {\n \"icon\": \"book\",\n \"link\": \"#\",\n \"text\": \"Definitions\"\n }\n ]" - }, - { - "id": 9316, - "name": "contentHorizontalMenuTitle", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 147, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Learning Center: User Accounts\"" - }, - { - "id": 9314, - "name": "contentSecondParagraph", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 137, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"While you won't be able to access any additional capabilities yet, you can prepare by creating your account now. When the additional features become ready in the upcoming months, you'll be ready to sign in.\"" - }, - { - "id": 9315, - "name": "contentSecondParagraph2", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 141, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Note: Even if you have an existing account in one of the legacy systems (e.g., SAM.gov, FBO.gov, CFDA.gov) you'll need to create a new account for beta.SAM.gov. In the future, after all of the individual systems are retired, this account will be your only account for all of our features\"" - }, - { - "id": 9313, - "name": "contentSecondParagraphTitle", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 136, - "character": 31 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Sign Up Now\"" - }, - { - "id": 9299, - "name": "contentSecondaryBoxList", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 105, - "character": 27 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9300, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9301, - "name": "icon", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 107, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"video\"" - }, - { - "id": 9302, - "name": "link", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 108, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"#\"" - }, - { - "id": 9303, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 109, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Title of video that is small\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9301, - 9302, - 9303 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n \"icon\": \"video\",\n \"link\": \"#\",\n \"text\": \"Title of video that is small\"\n },\n {\n \"icon\": \"video\",\n \"link\": \"#\",\n \"text\": \"Title of video that is a little bit longer\"\n }\n ]" - }, - { - "id": 9295, - "name": "sidebarBoxTitle", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 99, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Learning Center\"" - }, - { - "id": 9294, - "name": "sidebarLink", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 98, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Help Home\"" - }, - { - "id": 9289, - "name": "suptitle", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 90, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Help Center\"" - }, - { - "id": 9290, - "name": "title", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 91, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"User Accounts\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9291, - 9304, - 9298, - 9297, - 9296, - 9306, - 9307, - 9310, - 9305, - 9317, - 9316, - 9314, - 9315, - 9313, - 9299, - 9295, - 9294, - 9289, - 9290 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 88, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 9254, - "name": "loremData", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 9257, - "name": "breadcrumbs", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 11, - "character": 15 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9258, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9259, - "name": "breadcrumb", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 13, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Lorem ipsum dolor\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9259 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n { breadcrumb: 'Consectetur adipiscing', url: '/' },\n { breadcrumb: 'Lorem ipsum dolor'}\n ]" - }, - { - "id": 9270, - "name": "contentBelowBoxes", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 36, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Sed vestibulum ex rhoncus, feugiat risus laoreet, imperdiet quam. Aliquam erat volutpat.\"" - }, - { - "id": 9264, - "name": "contentBoxButton", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 21, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Placerat\"" - }, - { - "id": 9263, - "name": "contentBoxDescription", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 20, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Mauris aliquam placerat ipsum at eleifend. In dictum.\"" - }, - { - "id": 9262, - "name": "contentBoxTitle", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 19, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Scelerisque pretium\"" - }, - { - "id": 9272, - "name": "contentFirstParagraph", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 40, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec lobortis commodo bibendum.\"" - }, - { - "id": 9273, - "name": "contentFirstParagraphList", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 42, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9274, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9275, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 43, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9275 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\"text\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit\"},\n {\"text\": \"Etiam dignissim enim eget suscipit auctor\"},\n {\"text\": \"Donec eget elit ullamcorper est malesuada\"},\n {\"text\": \"Duis sit amet felis porta, dapibus lectus\"}\n ]" - }, - { - "id": 9276, - "name": "contentFirstParagraphList2", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 48, - "character": 30 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9277, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9278, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 49, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Mauris luctus urna at semper fermentum\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9278 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\"text\": \"Mauris luctus urna at semper fermentum\"},\n {\"text\": \"Ut suscipit nisl sit amet tempus bibendum\"},\n {\"text\": \"Nam eget risus ornare, varius enim nec\"}\n ]" - }, - { - "id": 9271, - "name": "contentFirstParagraphTitle", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 39, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Pharetra Vel Lacus Vitae\"" - }, - { - "id": 9283, - "name": "contentHorizontalMenuItems", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 64, - "character": 30 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9284, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9285, - "name": "icon", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 66, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"none\"" - }, - { - "id": 9286, - "name": "link", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 67, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"#\"" - }, - { - "id": 9287, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 68, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Lorem\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9285, - 9286, - 9287 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n \"icon\": \"none\",\n \"link\": \"#\",\n \"text\": \"Lorem\"\n },\n {\n \"icon\": \"none\",\n \"link\": \"#\",\n \"text\": \"Suspendisse\"\n },\n {\n \"icon\": \"none\",\n \"link\": \"#\",\n \"text\": \"Maecenas\"\n },\n {\n \"icon\": \"none\",\n \"link\": \"#\",\n \"text\": \"Vivamus\"\n }\n ]" - }, - { - "id": 9282, - "name": "contentHorizontalMenuTitle", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 63, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Luctus Velit: Integer fermentum\"" - }, - { - "id": 9280, - "name": "contentSecondParagraph", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 55, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec lobortis commodo bibendum. In mauris dui, pulvinar at feugiat nec, malesuada eget nisl. Cras maximus vestibulum augue, id tincidunt tellus iaculis in.\"" - }, - { - "id": 9281, - "name": "contentSecondParagraph2", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 59, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Duis gravida, purus in hendrerit rutrum, neque lacus fermentum eros, ac suscipit velit sem eget odio. Integer tincidunt tempus porta. Suspendisse quis enim nisi. Ut finibus pellentesque dapibus.\"" - }, - { - "id": 9279, - "name": "contentSecondParagraphTitle", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 54, - "character": 31 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Pharetra Vel Lacus Vitae\"" - }, - { - "id": 9265, - "name": "contentSecondaryBoxList", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 23, - "character": 27 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9266, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9267, - "name": "icon", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 25, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"none\"" - }, - { - "id": 9268, - "name": "link", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 26, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"#\"" - }, - { - "id": 9269, - "name": "text", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 27, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Orci varius natoque\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9267, - 9268, - 9269 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n \"icon\": \"none\",\n \"link\": \"#\",\n \"text\": \"Orci varius natoque\"\n },\n {\n \"icon\": \"none\",\n \"link\": \"#\",\n \"text\": \"Vivamus ac est eget ipsum\"\n }\n ]" - }, - { - "id": 9261, - "name": "sidebarBoxTitle", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 17, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Luctus Velit\"" - }, - { - "id": 9260, - "name": "sidebarLink", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 16, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Ullamcorper nulla\"" - }, - { - "id": 9255, - "name": "suptitle", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 8, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"consectetur\"" - }, - { - "id": 9256, - "name": "title", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 9, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Lorem Ipsum\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9257, - 9270, - 9264, - 9263, - 9262, - 9272, - 9273, - 9276, - 9271, - 9283, - 9282, - 9280, - 9281, - 9279, - 9265, - 9261, - 9260, - 9255, - 9256 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 6, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Methods", - "kind": 2048, - "children": [ - 9359 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 9322, - 9288, - 9254 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 4, - "character": 25 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9253 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/pages/pages.service.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9206, - "name": "\"src/patterns/patterns-home.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/patterns-home.component.ts", - "children": [ - { - "id": 9207, - "name": "PatternsHomeComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n templateUrl: 'patterns-home.template.html'\n}" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/patterns-home.component.ts", - "line": 6, - "character": 34 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9207 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/patterns-home.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9208, - "name": "\"src/patterns/patterns.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/patterns.component.ts", - "children": [ - { - "id": 9209, - "name": "PatternsComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n template: `\n \n \n `\n}" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/patterns.component.ts", - "line": 9, - "character": 30 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9209 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/patterns.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9250, - "name": "\"src/patterns/patterns.module\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/patterns.module.ts", - "children": [ - { - "id": 9251, - "name": "ExamplesModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n declarations: [\n HomeComponent,\n StarterPageComponent,\n BasicPageCodeComponent,\n SidebarBreadcrumbsPageComponent,\n SidebarBreadcrumbsPageCodeComponent,\n TitleOptionsPageComponent,\n TitleOptionsPageCodeComponent,\n PatternsComponent,\n PatternsHomeComponent\n ],\n imports: [\n CommonModule,\n PatternsRoutingModule,\n SamUIKitModule,\n SiteComponentsModule\n ],\n exports: [\n ],\n}" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/patterns.module.ts", - "line": 43, - "character": 27 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9251 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/patterns.module.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9247, - "name": "\"src/patterns/patterns.routes\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/patterns.routes.ts", - "children": [ - { - "id": 9248, - "name": "PatternsRoutingModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n RouterModule.forChild(patternsRoutes)\n ],\n exports: [\n RouterModule\n ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/patterns.routes.ts", - "line": 79, - "character": 34 - } - ] - }, - { - "id": 9249, - "name": "patternsRoutes", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/patterns.routes.ts", - "line": 16, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "Routes" - }, - "defaultValue": " [\n {\n path: 'pages',\n loadChildren: './pages/pages.module#PagesModule'\n },\n {\n path: 'v1',\n component: PatternsComponent,\n children:[\n {\n path: 'home',\n component: HomeComponent\n },\n { \n path: 'basic-page-code', \n outlet:'codesection',\n component: BasicPageCodeComponent\n },\n { \n path: 'sidebar-breadcrumbs-code', \n component: SidebarBreadcrumbsPageCodeComponent, \n outlet:'codesection'\n },\n { \n path: 'title-options-code', \n component: TitleOptionsPageCodeComponent, \n outlet:'codesection'\n },\n { \n path: 'starter-page', \n component: StarterPageComponent \n },\n { \n path: 'sidebar-breadcrumbs', \n component: SidebarBreadcrumbsPageComponent \n },\n { \n path: 'title-options', \n component: TitleOptionsPageComponent \n }\n ]\n },\n {\n path: 'latest',\n component: PatternsComponent,\n children: [\n {\n path: 'home',\n component: PatternsHomeComponent\n }\n ]\n },\n]" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9248 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 9249 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/patterns.routes.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9421, - "name": "\"src/patterns/sam-ui-elements/future/box/box.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/box/box.component.ts", - "children": [ - { - "id": 9422, - "name": "SamBoxComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-box\",\n template: `\n
    \n \n
    \n `\n}" - } - } - ], - "children": [ - { - "id": 9423, - "name": "type", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/box/box.component.ts", - "line": 13, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 9423 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/box/box.component.ts", - "line": 11, - "character": 28 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9422 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/box/box.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9424, - "name": "\"src/patterns/sam-ui-elements/future/box/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/box/index.ts", - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/box/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9425, - "name": "\"src/patterns/sam-ui-elements/future/container/container.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/container/container.component.ts", - "children": [ - { - "id": 9426, - "name": "SamContainerComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-container\",\n template: ``\n}" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/container/container.component.ts", - "line": 7, - "character": 34 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9426 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/container/container.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9427, - "name": "\"src/patterns/sam-ui-elements/future/container/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/container/index.ts", - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/container/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9428, - "name": "\"src/patterns/sam-ui-elements/future/heading/heading.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/heading/heading.component.ts", - "children": [ - { - "id": 9429, - "name": "SamHeadingComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-heading\",\n template: `\n \n

    \n
    {{ sup }}
    \n \n {{ text }}\n

    \n

    \n \n {{ text }}\n

    \n

    \n \n {{ text }}\n

    \n

    \n \n {{ text }}\n

    \n

    \n \n {{ text }}\n

    \n
    \n `\n}" - } - } - ], - "children": [ - { - "id": 9436, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9437, - "name": "new SamHeadingComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "type": { - "type": "reference", - "name": "SamHeadingComponent", - "id": 9429 - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/heading/heading.component.ts", - "line": 39, - "character": 26 - } - ] - }, - { - "id": 9434, - "name": "alignment", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/heading/heading.component.ts", - "line": 37, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9435, - "name": "css_classes", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/heading/heading.component.ts", - "line": 39, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 9433, - "name": "icon", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/heading/heading.component.ts", - "line": 36, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9430, - "name": "importance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/heading/heading.component.ts", - "line": 33, - "character": 28 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9431, - "name": "sup", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/heading/heading.component.ts", - "line": 34, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9432, - "name": "text", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/heading/heading.component.ts", - "line": 35, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9438, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9439, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/heading/heading.component.ts", - "line": 43, - "character": 10 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9436 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9434, - 9435, - 9433, - 9430, - 9431, - 9432 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 9438 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/heading/heading.component.ts", - "line": 31, - "character": 32 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9429 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/heading/heading.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9440, - "name": "\"src/patterns/sam-ui-elements/future/heading/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/heading/index.ts", - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/heading/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9441, - "name": "\"src/patterns/sam-ui-elements/future/icon/icon.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/icon/icon.component.ts", - "children": [ - { - "id": 9442, - "name": "SamIconComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-icon\",\n templateUrl: 'icon.template.html'\n}" - } - } - ], - "children": [ - { - "id": 9443, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/icon/icon.component.ts", - "line": 9, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 9443 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/icon/icon.component.ts", - "line": 7, - "character": 29 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9442 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/icon/icon.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9444, - "name": "\"src/patterns/sam-ui-elements/future/icon/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/icon/index.ts", - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/icon/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9532, - "name": "\"src/patterns/sam-ui-elements/future/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/index.ts", - "children": [ - { - "id": 9533, - "name": "SamFutureModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n CommonModule,\n RouterModule,\n SamUIKitModule\n ],\n declarations: [\n SamBoxComponent,\n SamContainerComponent,\n SamHeadingComponent,\n SamIconComponent,\n SamListComponent,\n SamMasterPageComponent,\n SamPageComponent,\n SamSidebarComponent,\n SamYoutubeComponent\n ],\n exports: [\n SamBoxComponent,\n SamContainerComponent,\n SamHeadingComponent,\n SamIconComponent,\n SamListComponent,\n SamMasterPageComponent,\n SamPageComponent,\n SamSidebarComponent,\n SamYoutubeComponent\n ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/index.ts", - "line": 46, - "character": 28 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9533 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9451, - "name": "\"src/patterns/sam-ui-elements/future/list/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/list/index.ts", - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/list/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9445, - "name": "\"src/patterns/sam-ui-elements/future/list/list.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/list/list.component.ts", - "children": [ - { - "id": 9446, - "name": "SamListComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-list\",\n animations: [\n trigger('listAnimation', [\n state('void', style({\n opacity: 0 \n })),\n state('*', style({\n opacity: 1 \n })),\n transition('* => *', [\n query(':enter', style({ opacity: 0 }), { optional: true}),\n query(':enter', stagger('100ms', [\n animate('1s', style({ opacity: 1 }))\n ]), { optional: true })\n ])\n ])\n ],\n template: `\n \n `\n}" - } - } - ], - "children": [ - { - "id": 9449, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9450, - "name": "new SamListComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "type": { - "type": "reference", - "name": "SamListComponent", - "id": 9446 - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/list/list.component.ts", - "line": 40, - "character": 38 - } - ] - }, - { - "id": 9447, - "name": "items", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/list/list.component.ts", - "line": 39, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 9448, - "name": "orientation", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/list/list.component.ts", - "line": 40, - "character": 29 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9449 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9447, - 9448 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/list/list.component.ts", - "line": 37, - "character": 29 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9446 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/list/list.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9486, - "name": "\"src/patterns/sam-ui-elements/future/master-page/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/master-page/index.ts", - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9464, - "name": "\"src/patterns/sam-ui-elements/future/master-page/master-page.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/master-page/master-page.component.ts", - "children": [ - { - "id": 9465, - "name": "SamMasterPageComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-master-page\",\n templateUrl: 'master-page.template.html',\n providers: [SamMasterPageService]\n}" - } - } - ], - "children": [ - { - "id": 9470, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9475, - "name": "new SamMasterPageComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9476, - "name": "masterpageservice", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamMasterPageService", - "id": 9453 - } - }, - { - "id": 9477, - "name": "router", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Router" - } - }, - { - "id": 9478, - "name": "route", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ActivatedRoute" - } - }, - { - "id": 9479, - "name": "renderer", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Renderer2" - } - } - ], - "type": { - "type": "reference", - "name": "SamMasterPageComponent", - "id": 9465 - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.component.ts", - "line": 18, - "character": 43 - } - ] - }, - { - "id": 9471, - "name": "masterpageservice", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.component.ts", - "line": 21, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "SamMasterPageService", - "id": 9453 - } - }, - { - "id": 9469, - "name": "modalOutletName", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.component.ts", - "line": 18, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"master-modal\"" - }, - { - "id": 9474, - "name": "renderer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.component.ts", - "line": 24, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "Renderer2" - } - }, - { - "id": 9473, - "name": "route", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.component.ts", - "line": 23, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "ActivatedRoute" - } - }, - { - "id": 9472, - "name": "router", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.component.ts", - "line": 22, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "Router" - } - }, - { - "id": 9480, - "name": "findActiveOutlets", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9481, - "name": "findActiveOutlets", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9482, - "name": "activatedRoutes", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.component.ts", - "line": 38, - "character": 19 - } - ] - }, - { - "id": 9483, - "name": "modalActive", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9484, - "name": "modalActive", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9485, - "name": "activeOutlets", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.component.ts", - "line": 46, - "character": 13 - } - ] - }, - { - "id": 9466, - "name": "onClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'click'", - "args": "['$event']" - } - } - ], - "signatures": [ - { - "id": 9467, - "name": "onClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9468, - "name": "$event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.component.ts", - "line": 12, - "character": 44 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9470 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9471, - 9469, - 9474, - 9473, - 9472 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 9480, - 9483, - 9466 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.component.ts", - "line": 10, - "character": 35 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9465 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9452, - "name": "\"src/patterns/sam-ui-elements/future/master-page/master-page.service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/master-page/master-page.service.ts", - "children": [ - { - "id": 9453, - "name": "SamMasterPageService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Injectable", - "type": { - "type": "reference", - "name": "Injectable" - }, - "arguments": {} - } - ], - "children": [ - { - "id": 9454, - "name": "_docLink", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.service.ts", - "line": 6, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9459, - "name": "_settingsLink", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.service.ts", - "line": 14, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9455, - "name": "docLink", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 9458, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "setSignature": [ - { - "id": 9456, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", - "flags": {}, - "parameters": [ - { - "id": 9457, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.service.ts", - "line": 7, - "character": 13 - }, - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.service.ts", - "line": 10, - "character": 13 - } - ] - }, - { - "id": 9460, - "name": "settingsLink", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 9463, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "setSignature": [ - { - "id": 9461, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", - "flags": {}, - "parameters": [ - { - "id": 9462, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.service.ts", - "line": 15, - "character": 18 - }, - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.service.ts", - "line": 18, - "character": 18 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 9454, - 9459 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 9455, - 9460 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.service.ts", - "line": 4, - "character": 33 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9453 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/master-page/master-page.service.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9507, - "name": "\"src/patterns/sam-ui-elements/future/page/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/page/index.ts", - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/page/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9494, - "name": "\"src/patterns/sam-ui-elements/future/page/page.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/page/page.component.ts", - "children": [ - { - "id": 9495, - "name": "SamPageComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-page\",\n templateUrl: 'page.template.html',\n providers: [SamPageService]\n}" - } - } - ], - "children": [ - { - "id": 9503, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9505, - "name": "new SamPageComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9506, - "name": "pageService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamPageService", - "id": 9488 - } - } - ], - "type": { - "type": "reference", - "name": "SamPageComponent", - "id": 9495 - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/page/page.component.ts", - "line": 18, - "character": 3 - } - ] - }, - { - "id": 9499, - "name": "breadcrumbs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/page/page.component.ts", - "line": 14, - "character": 29 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 9504, - "name": "pageService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/page/page.component.ts", - "line": 19, - "character": 33 - } - ], - "type": { - "type": "reference", - "name": "SamPageService", - "id": 9488 - } - }, - { - "id": 9498, - "name": "subtitle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/page/page.component.ts", - "line": 13, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 9496, - "name": "suptitle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/page/page.component.ts", - "line": 11, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 9497, - "name": "title", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/page/page.component.ts", - "line": 12, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 9500, - "name": "onClicked", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'click'", - "args": "['$event']" - } - } - ], - "signatures": [ - { - "id": 9501, - "name": "onClicked", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9502, - "name": "$event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/page/page.component.ts", - "line": 16, - "character": 46 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9503 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9499, - 9504, - 9498, - 9496, - 9497 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 9500 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/page/page.component.ts", - "line": 9, - "character": 29 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9495 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/page/page.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9487, - "name": "\"src/patterns/sam-ui-elements/future/page/page.service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/page/page.service.ts", - "children": [ - { - "id": 9488, - "name": "SamPageService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Injectable", - "type": { - "type": "reference", - "name": "Injectable" - }, - "arguments": {} - } - ], - "children": [ - { - "id": 9489, - "name": "_sidebar", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/page/page.service.ts", - "line": 5, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 9490, - "name": "sidebar", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 9493, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "setSignature": [ - { - "id": 9491, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", - "flags": {}, - "parameters": [ - { - "id": 9492, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/page/page.service.ts", - "line": 6, - "character": 13 - }, - { - "fileName": "src/patterns/sam-ui-elements/future/page/page.service.ts", - "line": 9, - "character": 13 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 9489 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 9490 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/page/page.service.ts", - "line": 4, - "character": 27 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9488 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/page/page.service.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9516, - "name": "\"src/patterns/sam-ui-elements/future/sidebar/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/sidebar/index.ts", - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/sidebar/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9508, - "name": "\"src/patterns/sam-ui-elements/future/sidebar/sidebar.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/sidebar/sidebar.component.ts", - "children": [ - { - "id": 9509, - "name": "SamSidebarComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-sidebar\",\n template: ''\n}" - } - } - ], - "children": [ - { - "id": 9510, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9512, - "name": "new SamSidebarComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9513, - "name": "pageService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamPageService", - "id": 9488 - } - } - ], - "type": { - "type": "reference", - "name": "SamSidebarComponent", - "id": 9509 - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/sidebar/sidebar.component.ts", - "line": 8, - "character": 51 - } - ] - }, - { - "id": 9511, - "name": "pageService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/sidebar/sidebar.component.ts", - "line": 9, - "character": 33 - } - ], - "type": { - "type": "reference", - "name": "SamPageService", - "id": 9488 - } - }, - { - "id": 9514, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9515, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/sidebar/sidebar.component.ts", - "line": 12, - "character": 10 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9510 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9511 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 9514 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/sidebar/sidebar.component.ts", - "line": 8, - "character": 32 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9509 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/sidebar/sidebar.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9531, - "name": "\"src/patterns/sam-ui-elements/future/youtube/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/youtube/index.ts", - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/youtube/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9517, - "name": "\"src/patterns/sam-ui-elements/future/youtube/youtube.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/sam-ui-elements/future/youtube/youtube.component.ts", - "children": [ - { - "id": 9518, - "name": "SamYoutubeComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-youtube\",\n template: `\n
    \n \n
    \n `\n}" - } - } - ], - "children": [ - { - "id": 9522, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9524, - "name": "new SamYoutubeComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9525, - "name": "sanitizer", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DomSanitizer" - } - } - ], - "type": { - "type": "reference", - "name": "SamYoutubeComponent", - "id": 9518 - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/youtube/youtube.component.ts", - "line": 18, - "character": 28 - } - ] - }, - { - "id": 9520, - "name": "YouTubeVideoUrl", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/youtube/youtube.component.ts", - "line": 17, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9519, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/youtube/youtube.component.ts", - "line": 15, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9523, - "name": "sanitizer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/youtube/youtube.component.ts", - "line": 20, - "character": 31 - } - ], - "type": { - "type": "reference", - "name": "DomSanitizer" - } - }, - { - "id": 9521, - "name": "videoUrl", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/youtube/youtube.component.ts", - "line": 18, - "character": 10 - } - ], - "type": { - "type": "reference", - "name": "SafeResourceUrl" - } - }, - { - "id": 9526, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9527, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/youtube/youtube.component.ts", - "line": 22, - "character": 10 - } - ] - }, - { - "id": 9528, - "name": "updateVideoUrl", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9529, - "name": "updateVideoUrl", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9530, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/youtube/youtube.component.ts", - "line": 26, - "character": 16 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9522 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9520, - 9519, - 9523, - 9521 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 9526, - 9528 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/youtube/youtube.component.ts", - "line": 13, - "character": 32 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9518 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/sam-ui-elements/future/youtube/youtube.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9210, - "name": "\"src/patterns/version-1/patterns-home.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/version-1/patterns-home.component.ts", - "children": [ - { - "id": 9211, - "name": "HomeComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n templateUrl: 'patterns-home.template.html'\n}" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/patterns-home.component.ts", - "line": 6, - "character": 26 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9211 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/patterns-home.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9220, - "name": "\"src/patterns/version-1/sidebar-breadcrumbs.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "children": [ - { - "id": 9234, - "name": "SidebarBreadcrumbsPageCodeComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n template: `\n
    \n
    \n

    Page with side navigation and breadcrumbs

    \n \n \n \n \n \n \n \n \n \n
    \n
    \n `,\n}" - } - } - ], - "children": [ - { - "id": 9236, - "name": "code_component", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 122, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_component" - }, - { - "id": 9235, - "name": "code_template", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 121, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example_template" - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 9236, - 9235 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 120, - "character": 48 - } - ] - }, - { - "id": 9221, - "name": "SidebarBreadcrumbsPageComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n templateUrl: 'sidebar-breadcrumbs.template.html',\n}" - } - } - ], - "children": [ - { - "id": 9231, - "name": "breadcrumbs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 45, - "character": 13 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9232, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9233, - "name": "breadcrumb", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 47, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Lorem ipsum dolor\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9233 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n { breadcrumb: 'Consectetur adipiscing', url: '/' },\n { breadcrumb: 'Lorem ipsum dolor'}\n ]" - }, - { - "id": 9222, - "name": "showSection", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 10, - "character": 13 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " ['sidebar-breadcrumbs-code']" - }, - { - "id": 9223, - "name": "toggleCode", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9224, - "name": "toggleCode", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 11, - "character": 12 - } - ] - }, - { - "id": 9225, - "name": "sidenavModel", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 9227, - "name": "children", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 21, - "character": 12 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9228, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9229, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 23, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Lorem ipsum dolor\"" - }, - { - "id": 9230, - "name": "route", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 24, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"#\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9229, - 9230 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n label: \"Lorem ipsum dolor\",\n route: \"#\"\n },\n {\n label: \"Nullam at mauris\",\n route: \"#\"\n },\n {\n label: \"Maecenas feugiat\",\n route: \"#\"\n },\n {\n label: \"Nunc non tellus\",\n route: \"#\"\n },\n {\n label: \"Aenean in felis congue\",\n route: \"#\"\n }\n ]" - }, - { - "id": 9226, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 20, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"SideNavigation\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9227, - 9226 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 19, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 9231, - 9222 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 9223 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 9225 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 8, - "character": 44 - } - ] - }, - { - "id": 9238, - "name": "code_example_component", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 70, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\nimport { Component} from '@angular/core';\n\n// Relative path: adjust to match your folder structure\nimport { MenuItem } from 'sam-ui-elements/src/ui-kit/components/sidenav';\n\n@Component({\n template: 'your template html',\n})\nexport class SidebarBreadcrumbsPageComponent{\n\n sidenavModel: MenuItem = {\n label: \"SideNavigation\",\n children: [\n {\n label: \"Lorem ipsum dolor\",\n route: \"#\"\n },\n {\n label: \"Nullam at mauris\",\n route: \"#\"\n }\n ]\n };\n \n breadcrumbs = [\n { breadcrumb: 'Consectetur adipiscing', url: '/' },\n { breadcrumb: 'Lorem ipsum dolor'}\n ];\n \n}`" - }, - { - "id": 9237, - "name": "code_example_template", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 53, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n\n \n \n \n\n

    \n Quisque lacinia commodo neque et suscipit. Integer rutrum mauris ex, non \n ornare leo interdum nec. Suspendisse vitae tortor aliquam, tincidunt metus \n ut, cursus est. Maecenas luctus maximus se...\n

    \n
    `" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9234, - 9221 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 9238, - 9237 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9212, - "name": "\"src/patterns/version-1/starter-page.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/version-1/starter-page.component.ts", - "children": [ - { - "id": 9217, - "name": "BasicPageCodeComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n template: `\n
    \n
    \n

    Basic Page Code

    \n \n
    \n
    \n `,\n}" - } - } - ], - "children": [ - { - "id": 9218, - "name": "code", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/version-1/starter-page.component.ts", - "line": 36, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example" - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 9218 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/starter-page.component.ts", - "line": 35, - "character": 35 - } - ] - }, - { - "id": 9213, - "name": "StarterPageComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n templateUrl: 'starter-page.template.html',\n}" - } - } - ], - "children": [ - { - "id": 9214, - "name": "showSection", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/version-1/starter-page.component.ts", - "line": 7, - "character": 13 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " ['basic-page-code']" - }, - { - "id": 9215, - "name": "toggleCode", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9216, - "name": "toggleCode", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/starter-page.component.ts", - "line": 8, - "character": 12 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 9214 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 9215 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/starter-page.component.ts", - "line": 6, - "character": 33 - } - ] - }, - { - "id": 9219, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/version-1/starter-page.component.ts", - "line": 17, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n

    \n Quisque lacinia commodo neque et suscipit. Integer rutrum mauris ex, non \n ornare leo interdum nec. Suspendisse vitae tor...\n

    \n
    `" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9217, - 9213 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 9219 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/starter-page.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9239, - "name": "\"src/patterns/version-1/title-options.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/patterns/version-1/title-options.component.ts", - "children": [ - { - "id": 9244, - "name": "TitleOptionsPageCodeComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n template: `\n
    \n
    \n

    Page with all available title options

    \n \n
    \n
    \n `,\n}" - } - } - ], - "children": [ - { - "id": 9245, - "name": "code", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/version-1/title-options.component.ts", - "line": 47, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " code_example" - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 9245 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/title-options.component.ts", - "line": 46, - "character": 42 - } - ] - }, - { - "id": 9240, - "name": "TitleOptionsPageComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n templateUrl: 'title-options.template.html',\n}" - } - } - ], - "children": [ - { - "id": 9241, - "name": "showSection", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/patterns/version-1/title-options.component.ts", - "line": 9, - "character": 13 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " ['title-options-code']" - }, - { - "id": 9242, - "name": "toggleCode", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9243, - "name": "toggleCode", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/title-options.component.ts", - "line": 10, - "character": 12 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 9241 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 9242 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/title-options.component.ts", - "line": 8, - "character": 38 - } - ] - }, - { - "id": 9246, - "name": "code_example", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/patterns/version-1/title-options.component.ts", - "line": 21, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " `\n\n\n

    \n Quisque lacinia commodo neque et suscipit. Integer rutrum mauris ex, non \n ornare leo interdum nec. Suspendisse vitae tor...\n

    \n \n
    `" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9244, - 9240 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 9246 - ] - } - ], - "sources": [ - { - "fileName": "src/patterns/version-1/title-options.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9197, - "name": "\"src/polyfills\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/polyfills.ts", - "comment": { - "shortText": "This file includes polyfills needed by Angular and is loaded before the app.\nYou can add your own extra polyfills to this file.", - "text": "This file is divided into 2 sections:\n 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.\n 2. Application imports. Files imported after ZoneJS that should be loaded before your main\n file.\n\nThe current setup is for so-called \"evergreen\" browsers; the last versions of browsers that\nautomatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),\nEdge >= 13 on the desktop, and iOS 10 and Chrome on mobile.\n\nLearn more in https://angular.io/docs/ts/latest/guide/browser-support.html\n\n\n" - }, - "sources": [ - { - "fileName": "src/polyfills.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4364, - "name": "\"src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "children": [ - { - "id": 4384, - "name": "SamAccordionComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The component can generate accordions component with provided\ndata" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-accordion',\n template: `\n
      \n \n
    \n`,\n}" - } - } - ], - "children": [ - { - "id": 4388, - "name": "accordionClass", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 106, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"usa-accordion\"" - }, - { - "id": 4385, - "name": "bordered", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Control whether the accordion component has a border" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 95, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4386, - "name": "expandIndex", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Index of an accordion item that should be expanded on load" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 99, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": " -1" - }, - { - "id": 4389, - "name": "sections", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 107, - "character": 17 - } - ], - "type": { - "type": "reference", - "isArray": true, - "name": "SamAccordionSection", - "id": 4365 - }, - "defaultValue": " []" - }, - { - "id": 4387, - "name": "selectedIndexChange", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The index of the accordion item that has been opened/closed" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 103, - "character": 31 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "number" - } - ] - }, - "defaultValue": "\n new EventEmitter()" - }, - { - "id": 4392, - "name": "addSection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4393, - "name": "addSection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4394, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamAccordionSection", - "id": 4365 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 116, - "character": 12 - } - ] - }, - { - "id": 4401, - "name": "collapseAll", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4402, - "name": "collapseAll", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 137, - "character": 13 - } - ] - }, - { - "id": 4398, - "name": "collapseOthers", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4399, - "name": "collapseOthers", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4400, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamAccordionSection", - "id": 4365 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 129, - "character": 16 - } - ] - }, - { - "id": 4395, - "name": "expandedChanged", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4396, - "name": "expandedChanged", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4397, - "name": "section", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamAccordionSection", - "id": 4365 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 123, - "character": 17 - } - ] - }, - { - "id": 4390, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4391, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 109, - "character": 10 - } - ] - }, - { - "id": 4403, - "name": "setExpandIndex", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4404, - "name": "setExpandIndex", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4405, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 143, - "character": 16 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 4388, - 4385, - 4386, - 4389, - 4387 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4392, - 4401, - 4398, - 4395, - 4390, - 4403 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 91, - "character": 34 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 4365, - "name": "SamAccordionSection", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The component can generates content for a single\naccordion item" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-accordion-section',\n templateUrl: 'accordion.template.html'\n}" - } - } - ], - "children": [ - { - "id": 4370, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4372, - "name": "new SamAccordionSection", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4373, - "name": "parent", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "decorators": [ - { - "name": "Inject", - "type": { - "type": "reference", - "name": "Inject" - }, - "arguments": { - "token": "forwardRef(() => SamAccordionComponent)" - } - } - ], - "type": { - "type": "reference", - "name": "SamAccordionComponent", - "id": 4384 - } - } - ], - "type": { - "type": "reference", - "name": "SamAccordionSection", - "id": 4365 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 37, - "character": 44 - } - ] - }, - { - "id": 4366, - "name": "headerText", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Accordion header text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 24, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 4367, - "name": "isExpanded", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Defines whether accordion item should be expanded when loaded" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 28, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 4369, - "name": "isExpandedChange", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The accordion section that has changed is emitted back to parent" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 36, - "character": 28 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "reference", - "name": "SamAccordionSection", - "id": 4365 - } - ] - }, - "defaultValue": "\n new EventEmitter()" - }, - { - "id": 4368, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Populates the 'name' attribute for the accordion item for 508 compliance" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 32, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 4371, - "name": "parent", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "decorators": [ - { - "name": "Inject", - "type": { - "type": "reference", - "name": "Inject" - }, - "arguments": { - "token": "forwardRef(() => SamAccordionComponent)" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 41, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "SamAccordionComponent", - "id": 4384 - } - }, - { - "id": 4378, - "name": "collapse", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4379, - "name": "collapse", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 59, - "character": 17 - } - ] - }, - { - "id": 4380, - "name": "expand", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4381, - "name": "expand", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 63, - "character": 15 - } - ] - }, - { - "id": 4382, - "name": "index", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4383, - "name": "index", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 67, - "character": 14 - } - ] - }, - { - "id": 4374, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4375, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 46, - "character": 10 - } - ] - }, - { - "id": 4376, - "name": "toggle", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4377, - "name": "toggle", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 54, - "character": 15 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4370 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4366, - 4367, - 4369, - 4368, - 4371 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4378, - 4380, - 4382, - 4374, - 4376 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 20, - "character": 32 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4384, - 4365 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/accordion.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4406, - "name": "\"src/sam-ui-elements/src/ui-kit/components/accordion/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/accordion/index.ts", - "children": [ - { - "id": 4407, - "name": "AccordionsModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n declarations: [ SamAccordionSection, SamAccordionComponent ],\n exports: [ SamAccordionComponent, SamAccordionSection ],\n imports: [ CommonModule ],\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/index.ts", - "line": 13, - "character": 29 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4407 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/accordion/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8530, - "name": "\"src/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", - "children": [ - { - "id": 8531, - "name": "SamActionButton", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-action-button',\n templateUrl: 'action-button.template.html'\n}" - } - } - ], - "children": [ - { - "id": 8532, - "name": "action", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Provide the action object for the action button" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", - "line": 14, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "SamActionInterface", - "id": 8565 - } - }, - { - "id": 8533, - "name": "disabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Disables the button" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", - "line": 18, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8534, - "name": "emitAction", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "EventEmitter that emits action name when button is clicked" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", - "line": 22, - "character": 22 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8535, - "name": "emitCallback", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emits the results of the callback" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", - "line": 26, - "character": 24 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8536, - "name": "actionClicked", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8537, - "name": "actionClicked", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", - "line": 28, - "character": 15 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8532, - 8533, - 8534, - 8535 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8536 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", - "line": 9, - "character": 28 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8531 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/action-button/action-button.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8538, - "name": "\"src/sam-ui-elements/src/ui-kit/components/actions/action-button/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/actions/action-button/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/action-button/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8564, - "name": "\"src/sam-ui-elements/src/ui-kit/components/actions/action-interface\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", - "children": [ - { - "id": 8565, - "name": "SamActionInterface", - "kind": 256, - "kindString": "Interface", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 8569, - "name": "callback", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isOptional": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", - "line": 5, - "character": 10 - } - ], - "type": { - "type": "reference", - "name": "Function" - } - }, - { - "id": 8566, - "name": "icon", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isOptional": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", - "line": 2, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8567, - "name": "label", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", - "line": 3, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8568, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", - "line": 4, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8569, - 8566, - 8567, - 8568 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", - "line": 1, - "character": 35 - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "kind": 256, - "children": [ - 8565 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/action-interface.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8539, - "name": "\"src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "children": [ - { - "id": 8540, - "name": "SamActionsDropdownComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-actions-dropdown',\n templateUrl: 'actions-dropdown.template.html'\n}" - } - } - ], - "children": [ - { - "id": 8542, - "name": "actions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Takes an array of actions for the dropdown" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 26, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reference", - "name": "SamActionInterface", - "id": 8565 - } - ] - }, - "defaultValue": " []" - }, - { - "id": 8547, - "name": "actionsList", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChildren", - "type": { - "type": "reference", - "name": "ViewChildren" - }, - "arguments": { - "selector": "'actionsList'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 44, - "character": 49 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8544, - "name": "buttonType", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the class of the button (primary or default)" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 34, - "character": 28 - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "stringLiteral", - "value": "primary" - }, - { - "type": "stringLiteral", - "value": "default" - } - ] - }, - "defaultValue": "\"default\"" - }, - { - "id": 8543, - "name": "disabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Disable actions" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 30, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8545, - "name": "emitAction", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Emits event when action changes" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 38, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8546, - "name": "emitCallback", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Emits result of callback" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 42, - "character": 31 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8549, - "name": "focusIndex", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 46, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": " -1" - }, - { - "id": 8541, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "identifier that gets set to the ID and aria label attributes for 508\ncompliance" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 22, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"action_button\"" - }, - { - "id": 8548, - "name": "showActions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 45, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8554, - "name": "chooseAction", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8555, - "name": "chooseAction", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8556, - "name": "action", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 58, - "character": 14 - } - ] - }, - { - "id": 8550, - "name": "hideActions", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8551, - "name": "hideActions", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 47, - "character": 13 - } - ] - }, - { - "id": 8560, - "name": "keyDownHandler", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8561, - "name": "keyDownHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8562, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 77, - "character": 16 - } - ] - }, - { - "id": 8557, - "name": "leadKeyDownHandler", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8558, - "name": "leadKeyDownHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8559, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 67, - "character": 20 - } - ] - }, - { - "id": 8552, - "name": "toggleActions", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8553, - "name": "toggleActions", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 51, - "character": 15 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8542, - 8547, - 8544, - 8543, - 8545, - 8546, - 8549, - 8541, - 8548 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8554, - 8550, - 8560, - 8557, - 8552 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 17, - "character": 40 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8540 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/actions-dropdown.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8563, - "name": "\"src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/actions-dropdown/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8570, - "name": "\"src/sam-ui-elements/src/ui-kit/components/actions/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/actions/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/actions/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 3921, - "name": "\"src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", - "children": [ - { - "id": 3922, - "name": "SamAlertFooterComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-alert-footer',\n templateUrl: 'alert-footer.template.html'\n}" - } - } - ], - "children": [ - { - "id": 3924, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 3926, - "name": "new SamAlertFooterComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 3927, - "name": "alertFooterService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamAlertFooterService", - "id": 3911 - } - } - ], - "type": { - "type": "reference", - "name": "SamAlertFooterComponent", - "id": 3922 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", - "line": 11, - "character": 35 - } - ] - }, - { - "id": 3925, - "name": "alertFooterService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", - "line": 13, - "character": 40 - } - ], - "type": { - "type": "reference", - "name": "SamAlertFooterService", - "id": 3911 - } - }, - { - "id": 3923, - "name": "alerts", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", - "line": 11, - "character": 16 - } - ], - "type": { - "type": "reference", - "isArray": true, - "name": "AlertType", - "id": 3902 - }, - "defaultValue": " []" - }, - { - "id": 3930, - "name": "dismissFooterAlert", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 3931, - "name": "dismissFooterAlert", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 3932, - "name": "i", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", - "line": 19, - "character": 20 - } - ] - }, - { - "id": 3928, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 3929, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", - "line": 15, - "character": 10 - } - ] - }, - { - "id": 3933, - "name": "refreshAlerts", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 3934, - "name": "refreshAlerts", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", - "line": 24, - "character": 15 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 3924 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 3925, - 3923 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 3930, - 3928, - 3933 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", - "line": 9, - "character": 36 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 3922 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 3910, - "name": "\"src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", - "children": [ - { - "id": 3911, - "name": "SamAlertFooterService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Injectable", - "type": { - "type": "reference", - "name": "Injectable" - }, - "arguments": {} - } - ], - "children": [ - { - "id": 3912, - "name": "alerts", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", - "line": 6, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " []" - }, - { - "id": 3918, - "name": "dismissFooterAlert", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 3919, - "name": "dismissFooterAlert", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 3920, - "name": "i", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", - "line": 16, - "character": 20 - } - ] - }, - { - "id": 3913, - "name": "getAlerts", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 3914, - "name": "getAlerts", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", - "line": 8, - "character": 11 - } - ] - }, - { - "id": 3915, - "name": "registerFooterAlert", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 3916, - "name": "registerFooterAlert", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 3917, - "name": "data", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "AlertType", - "id": 3902 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", - "line": 12, - "character": 21 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 3912 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 3918, - 3913, - 3915 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", - "line": 4, - "character": 34 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 3911 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/alert-footer.service.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 3935, - "name": "\"src/sam-ui-elements/src/ui-kit/components/alert-footer/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/alert-footer/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert-footer/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7903, - "name": "\"src/sam-ui-elements/src/ui-kit/components/alert/alert.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "children": [ - { - "id": 7904, - "name": "SamAlertComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The component keeps users informed of important and (optionally)\ntime-sensitive changes" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-alert',\n templateUrl: './alert.template.html'\n}" - } - } - ], - "children": [ - { - "id": 7907, - "name": "description", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the alert description" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 23, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7912, - "name": "dismiss", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emitted event when an alert is dismissed" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 45, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 7910, - "name": "dismissTimer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Assign a timeout (in milliseconds) to dismiss the alert. 0 is the default\nand is an infinite wait." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 37, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 7927, - "name": "selectedType", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 57, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " this.types.success.class" - }, - { - "id": 7908, - "name": "showClose", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Controls whether to display/hide the Close button" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 27, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 7928, - "name": "showMoreLinkText", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 58, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Show Details\"" - }, - { - "id": 7911, - "name": "showMoreToggle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Give a boolean value to display show/hide toggle" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 41, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " undefined" - }, - { - "id": 7906, - "name": "title", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the alert title" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 19, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7913, - "name": "toggle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emitted event when toggling content" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 49, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 7905, - "name": "type", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the alert type, defaults to 'success'" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 15, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7909, - "name": "userMustDismiss", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Explicitly defines that the alert must be dismissed by the user. Overrides\nthe dismiss timer. Defaults to 'false'" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 32, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 7929, - "name": "closeAlert", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7930, - "name": "closeAlert", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 60, - "character": 19 - } - ] - }, - { - "id": 7933, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7934, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 72, - "character": 10 - } - ] - }, - { - "id": 7937, - "name": "onDismissClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 7938, - "name": "onDismissClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 93, - "character": 24 - } - ] - }, - { - "id": 7931, - "name": "toggleContent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7932, - "name": "toggleContent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 64, - "character": 23 - } - ] - }, - { - "id": 7935, - "name": "typeNotDefined", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7936, - "name": "typeNotDefined", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 83, - "character": 16 - } - ] - }, - { - "id": 7914, - "name": "types", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 7915, - "name": "error", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 7916, - "name": "class", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 52, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"usa-alert-error\"" - }, - { - "id": 7917, - "name": "sr", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 52, - "character": 43 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"error alert\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7916, - 7917 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 52, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 7918, - "name": "info", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 7919, - "name": "class", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 53, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"usa-alert-info\"" - }, - { - "id": 7920, - "name": "sr", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 53, - "character": 41 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"info alert\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7919, - 7920 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 53, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 7921, - "name": "success", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 7922, - "name": "class", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 54, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"usa-alert-success\"" - }, - { - "id": 7923, - "name": "sr", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 54, - "character": 47 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"success alert\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7922, - 7923 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 54, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 7924, - "name": "warning", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 7925, - "name": "class", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 55, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"usa-alert-warning\"" - }, - { - "id": 7926, - "name": "sr", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 55, - "character": 47 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"warning alert\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7925, - 7926 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 55, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 7915, - 7918, - 7921, - 7924 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 51, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 7907, - 7912, - 7910, - 7927, - 7908, - 7928, - 7911, - 7906, - 7913, - 7905, - 7909 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 7929, - 7933, - 7937, - 7931, - 7935 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 7914 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 11, - "character": 30 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 7904 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/alert.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7939, - "name": "\"src/sam-ui-elements/src/ui-kit/components/alert/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/alert/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/alert/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 3814, - "name": "\"src/sam-ui-elements/src/ui-kit/components/badge/badge.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", - "children": [ - { - "id": 3815, - "name": "SamBadgeComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-badge',\n template: `\n
    \n \n
    \n `\n}" - } - } - ], - "children": [ - { - "id": 3816, - "name": "_options", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", - "line": 16, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "BadgeConfig", - "id": 3812 - } - }, - { - "id": 3821, - "name": "attached", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 3822, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", - "line": 29, - "character": 14 - } - ] - }, - { - "id": 3817, - "name": "options", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets options for badge" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "getSignature": [ - { - "id": 3818, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "comment": { - "shortText": "Sets options for badge" - }, - "type": { - "type": "reference", - "name": "BadgeConfig", - "id": 3812 - } - } - ], - "setSignature": [ - { - "id": 3819, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", - "flags": {}, - "comment": { - "shortText": "Sets options for badge" - }, - "parameters": [ - { - "id": 3820, - "name": "config", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "BadgeConfig", - "id": 3812 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", - "line": 18, - "character": 13 - }, - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", - "line": 25, - "character": 22 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 3816 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 3821, - 3817 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", - "line": 15, - "character": 30 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 3815 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/badge/badge.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 3823, - "name": "\"src/sam-ui-elements/src/ui-kit/components/badge/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/badge/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/badge/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 3811, - "name": "\"src/sam-ui-elements/src/ui-kit/components/badge/types\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/badge/types.ts", - "children": [ - { - "id": 3812, - "name": "BadgeConfig", - "kind": 256, - "kindString": "Interface", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 3813, - "name": "attached", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isOptional": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/badge/types.ts", - "line": 2, - "character": 10 - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "stringLiteral", - "value": "top" - }, - { - "type": "stringLiteral", - "value": "bottom" - }, - { - "type": "stringLiteral", - "value": "top-left" - }, - { - "type": "stringLiteral", - "value": "top-right" - }, - { - "type": "stringLiteral", - "value": "top left" - }, - { - "type": "stringLiteral", - "value": "top right" - }, - { - "type": "stringLiteral", - "value": "bottom-left" - }, - { - "type": "stringLiteral", - "value": "bottom-right" - }, - { - "type": "stringLiteral", - "value": "bottom left" - }, - { - "type": "stringLiteral", - "value": "bottom right" - } - ] - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 3813 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/badge/types.ts", - "line": 1, - "character": 28 - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "kind": 256, - "children": [ - 3812 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/badge/types.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7940, - "name": "\"src/sam-ui-elements/src/ui-kit/components/banner/banner.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", - "children": [ - { - "id": 7941, - "name": "SamBannerComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The component informs the user that the site is an official\nwebsite of the United States Government" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-banner',\n templateUrl: 'banner.template.html',\n}" - } - } - ], - "children": [ - { - "id": 7942, - "name": "showDetail", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", - "line": 12, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 7943, - "name": "toggleDetails", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7944, - "name": "toggleDetails", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", - "line": 14, - "character": 15 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 7942 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 7943 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", - "line": 11, - "character": 31 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 7941 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/banner/banner.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7945, - "name": "\"src/sam-ui-elements/src/ui-kit/components/banner/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/banner/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/banner/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7946, - "name": "\"src/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", - "children": [ - { - "id": 7947, - "name": "SamBreadcrumbsComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-breadcrumbs',\n templateUrl: 'breadcrumbs.template.html'\n}" - } - } - ], - "children": [ - { - "id": 7951, - "name": "_routeSubscription", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", - "line": 26, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 7952, - "name": "count", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", - "line": 27, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 7950, - "name": "crumbAction", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Emits when crumb action occurs" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", - "line": 24, - "character": 32 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "Object" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 7948, - "name": "crumbs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The crumbs property expects an array of breadcrumbs. The last in the list\nwill be set as active" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", - "line": 14, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reference", - "name": "IBreadcrumb", - "id": 3892 - } - ] - } - }, - { - "id": 7949, - "name": "rootCrumb", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The rootCrumb property takes a breadcrumb to be used for the root. It is\nonly necessary to provide this if you are also using the listenToRouter\nproperty." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", - "line": 20, - "character": 22 - } - ], - "type": { - "type": "reference", - "name": "IBreadcrumb", - "id": 3892 - }, - "defaultValue": " undefined" - }, - { - "id": 7953, - "name": "crumbHandler", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7954, - "name": "crumbHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7955, - "name": "crumb", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", - "line": 29, - "character": 23 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 7951, - 7952, - 7950, - 7948, - 7949 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 7953 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", - "line": 9, - "character": 36 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 7947 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/breadcrumbs/breadcrumbs.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7956, - "name": "\"src/sam-ui-elements/src/ui-kit/components/breadcrumbs/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/breadcrumbs/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/breadcrumbs/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7957, - "name": "\"src/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", - "children": [ - { - "id": 7958, - "name": "SamCollapsibleComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sam Collapsible Component\nThis component behaves similar to the accordion. However, a collapsible\nshould contain actions rather than content." - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-collapsible',\n templateUrl: 'collapsible.template.html'\n}" - } - } - ], - "children": [ - { - "id": 7961, - "name": "_isOpened", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", - "line": 25, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 7959, - "name": "label", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "The label input is the name of the collapsible section header that will be\nvisible to the user" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", - "line": 17, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7960, - "name": "startOpened", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "The startOpened input intializes the component in the open state if set to\ntrue. Otherwise, the component defaults to closed." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", - "line": 23, - "character": 29 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 7964, - "name": "isFilterOpen", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7965, - "name": "isFilterOpen", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", - "line": 31, - "character": 14 - } - ] - }, - { - "id": 7962, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7963, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", - "line": 27, - "character": 13 - } - ] - }, - { - "id": 7968, - "name": "srOnlyText", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7969, - "name": "srOnlyText", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", - "line": 39, - "character": 12 - } - ] - }, - { - "id": 7970, - "name": "toggleButtonLabel", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7971, - "name": "toggleButtonLabel", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", - "line": 43, - "character": 19 - } - ] - }, - { - "id": 7966, - "name": "toggleFilter", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7967, - "name": "toggleFilter", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", - "line": 35, - "character": 14 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 7961, - 7959, - 7960 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 7964, - 7962, - 7968, - 7970, - 7966 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", - "line": 12, - "character": 36 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnChanges" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 7958 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/collapsible/collapsible.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7972, - "name": "\"src/sam-ui-elements/src/ui-kit/components/collapsible/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/collapsible/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/collapsible/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4475, - "name": "\"src/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", - "children": [ - { - "id": 4476, - "name": "SamCommentComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-comment',\n templateUrl: 'comment.template.html'\n}" - } - } - ], - "children": [ - { - "id": 4478, - "name": "allowDelete", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets configuration to allow comment deletion" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", - "line": 17, - "character": 22 - } - ], - "type": { - "type": "reference", - "name": "Comment", - "id": 4431 - } - }, - { - "id": 4477, - "name": "comment", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets comment text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", - "line": 13, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "Comment", - "id": 4431 - } - }, - { - "id": 4479, - "name": "delete", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emits when delete action occurs" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", - "line": 21, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 4480, - "name": "emitClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4481, - "name": "emitClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4482, - "name": "comment", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Event" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", - "line": 23, - "character": 11 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 4478, - 4477, - 4479 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4480 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", - "line": 9, - "character": 32 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4476 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comment/comment.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4483, - "name": "\"src/sam-ui-elements/src/ui-kit/components/comments/comment/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/comments/comment/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comment/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4437, - "name": "\"src/sam-ui-elements/src/ui-kit/components/comments/comments.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "children": [ - { - "id": 4438, - "name": "SamCommentsComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-comments',\n templateUrl: 'comments.template.html',\n}" - } - } - ], - "children": [ - { - "id": 4454, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4457, - "name": "new SamCommentsComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4458, - "name": "commentsService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "CommentsService", - "id": 4409 - } - }, - { - "id": 4459, - "name": "fb", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "FormBuilder" - } - } - ], - "type": { - "type": "reference", - "name": "SamCommentsComponent", - "id": 4438 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 71, - "character": 58 - } - ] - }, - { - "id": 4448, - "name": "collapseCommentsStream", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 54, - "character": 32 - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 4451, - "name": "comments", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "comment": { - "shortText": "Other private variables" - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 65, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reference", - "name": "Comment", - "id": 4431 - } - ] - }, - "defaultValue": " []" - }, - { - "id": 4455, - "name": "commentsService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 73, - "character": 37 - } - ], - "type": { - "type": "reference", - "name": "CommentsService", - "id": 4409 - } - }, - { - "id": 4450, - "name": "commentsSubscription", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "comment": { - "shortText": "Subscriptions for Observables" - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 60, - "character": 30 - } - ], - "type": { - "type": "reference", - "name": "Subscription" - } - }, - { - "id": 4453, - "name": "deleteStream", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "comment": { - "shortText": "Playground" - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 71, - "character": 22 - } - ], - "type": { - "type": "reference", - "name": "Subject", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new Subject()" - }, - { - "id": 4439, - "name": "disabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets disabled state" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 32, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4446, - "name": "enterEventStream", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 48, - "character": 26 - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 4456, - "name": "fb", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 74, - "character": 14 - } - ], - "type": { - "type": "reference", - "name": "FormBuilder" - } - }, - { - "id": 4443, - "name": "form", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 40, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 4447, - "name": "getCommentsStream", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "comment": { - "shortText": "Observables that map DOM events" - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 53, - "character": 27 - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 4441, - "name": "hideCommentsButton", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'hideCommentsButton'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 37, - "character": 60 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 4445, - "name": "hideCommentsStream", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 47, - "character": 28 - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 4452, - "name": "maxLength", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 66, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "250" - }, - { - "id": 4444, - "name": "showButtonStream", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "comment": { - "shortText": "Observables created from DOM events" - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 46, - "character": 26 - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 4440, - "name": "showCommentsButton", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "ViewChildren" - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'showCommentsButton'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 36, - "character": 60 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 4449, - "name": "submitStream", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 55, - "character": 22 - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 4442, - "name": "textArea", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'textArea'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 38, - "character": 40 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 4473, - "name": "charsRemaining", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4474, - "name": "charsRemaining", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 194, - "character": 16 - } - ] - }, - { - "id": 4464, - "name": "isDeletable", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4465, - "name": "isDeletable", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4466, - "name": "comment", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Comment", - "id": 4431 - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 179, - "character": 13 - } - ] - }, - { - "id": 4470, - "name": "isSubmitDisabled", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4471, - "name": "isSubmitDisabled", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4472, - "name": "form", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "FormGroup" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 187, - "character": 18 - } - ] - }, - { - "id": 4462, - "name": "ngOnDestroy", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4463, - "name": "ngOnDestroy", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 175, - "character": 13 - } - ] - }, - { - "id": 4460, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4461, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 76, - "character": 10 - } - ] - }, - { - "id": 4467, - "name": "onDelete", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4468, - "name": "onDelete", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4469, - "name": "comment", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Comment", - "id": 4431 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 183, - "character": 10 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4454 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 4448, - 4451, - 4455, - 4450, - 4453, - 4439, - 4446, - 4456, - 4443, - 4447, - 4441, - 4445, - 4452, - 4444, - 4440, - 4449, - 4442 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4473, - 4464, - 4470, - 4462, - 4460, - 4467 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 28, - "character": 33 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4438 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4682, - "name": "\"src/sam-ui-elements/src/ui-kit/components/comments/comments.module\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/comments/comments.module.ts", - "children": [ - { - "id": 4683, - "name": "SamCommentsModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n declarations: [\n SamCommentsComponent,\n SamCommentComponent,\n ],\n exports: [\n SamCommentsComponent,\n SamCommentComponent,\n ],\n imports: [\n CommonModule,\n FormsModule,\n ReactiveFormsModule,\n SamTextAreaModule,\n AccordionsModule,\n SamPipesModule\n ],\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.module.ts", - "line": 31, - "character": 30 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4683 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.module.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4408, - "name": "\"src/sam-ui-elements/src/ui-kit/components/comments/comments.service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", - "children": [ - { - "id": 4409, - "name": "CommentsService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 4412, - "name": "_comments", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", - "line": 9, - "character": 11 - } - ], - "type": { - "type": "reference", - "isArray": true, - "name": "Comment", - "id": 4431 - }, - "defaultValue": " []" - }, - { - "id": 4411, - "name": "_disabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", - "line": 8, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4410, - "name": "_username", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", - "line": 7, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 4425, - "name": "deleteComment", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4426, - "name": "deleteComment", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4427, - "name": "comment", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Comment", - "id": 4431 - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "reference", - "isArray": true, - "name": "Comment", - "id": 4431 - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", - "line": 31, - "character": 15 - } - ] - }, - { - "id": 4420, - "name": "getComments", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4421, - "name": "getComments", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "reference", - "isArray": true, - "name": "Comment", - "id": 4431 - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", - "line": 23, - "character": 13 - } - ] - }, - { - "id": 4428, - "name": "getInitialState", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4429, - "name": "getInitialState", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "reference", - "isArray": true, - "name": "Comment", - "id": 4431 - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", - "line": 35, - "character": 17 - } - ] - }, - { - "id": 4418, - "name": "getUsername", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4419, - "name": "getUsername", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", - "line": 19, - "character": 13 - } - ] - }, - { - "id": 4415, - "name": "isCommentDeletable", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4416, - "name": "isCommentDeletable", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4417, - "name": "comment", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Comment", - "id": 4431 - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", - "line": 15, - "character": 20 - } - ] - }, - { - "id": 4413, - "name": "isCommentingDisabled", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4414, - "name": "isCommentingDisabled", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", - "line": 11, - "character": 22 - } - ] - }, - { - "id": 4422, - "name": "postComment", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4423, - "name": "postComment", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4424, - "name": "_", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "reference", - "isArray": true, - "name": "Comment", - "id": 4431 - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", - "line": 27, - "character": 13 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 4412, - 4411, - 4410 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 4425, - 4420, - 4428, - 4418, - 4415, - 4413, - 4422 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", - "line": 5, - "character": 28 - } - ], - "implementedBy": [ - { - "type": "reference", - "name": "CommentsDemoService", - "id": 4686 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4409 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/comments.service.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4684, - "name": "\"src/sam-ui-elements/src/ui-kit/components/comments/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/comments/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4430, - "name": "\"src/sam-ui-elements/src/ui-kit/components/comments/interfaces\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", - "children": [ - { - "id": 4431, - "name": "Comment", - "kind": 256, - "kindString": "Interface", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 4433, - "name": "datetime", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", - "line": 3, - "character": 10 - } - ], - "type": { - "type": "reference", - "name": "Date" - } - }, - { - "id": 4435, - "name": "extra", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isOptional": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", - "line": 5, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 4436, - "name": "image", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isOptional": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", - "line": 6, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 4434, - "name": "text", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", - "line": 4, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 4432, - "name": "username", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", - "line": 2, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 4433, - 4435, - 4436, - 4434, - 4432 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", - "line": 1, - "character": 24 - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "kind": 256, - "children": [ - 4431 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/comments/interfaces.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7973, - "name": "\"src/sam-ui-elements/src/ui-kit/components/download/download.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/download/download.component.ts", - "children": [ - { - "id": 7974, - "name": "SamDownloadComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sam Download Component" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-download',\n templateUrl: 'download.template.html',\n animations: [\n trigger('accordion', [\n state('collapsed', style({\n height: '0px',\n })),\n state('expanded', style({\n height: '*',\n })),\n transition('collapsed => expanded', animate('100ms ease-in')),\n transition('expanded => collapsed', animate('100ms ease-out'))\n ]),\n trigger('intro', [\n state('fade', style({\n opacity: 1,\n transform: 'translateY(0)'\n })),\n transition('void => *', [\n style({\n opacity: 0,\n transform: 'translateY(-30%)'\n }),\n animate('.5s .5s cubic-bezier(0.175, 0.885, 0.320, 1.275)')\n ]),\n transition('* => void', [\n animate('.5s cubic-bezier(0.175, 0.885, 0.320, 1.275)', style({\n opacity: 0,\n transform: 'translateY(-30%)'\n }))\n ])\n ])\n ]\n}" - } - } - ], - "children": [ - { - "id": 7976, - "name": "attachmentError", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "pass in an attachment error to trigger a message" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/download/download.component.ts", - "line": 58, - "character": 33 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 7977, - "name": "downloadAllUrl", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "sets download all url link" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/download/download.component.ts", - "line": 62, - "character": 32 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7975, - "name": "packages", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "model for populating downloads" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/download/download.component.ts", - "line": 54, - "character": 26 - } - ], - "type": { - "type": "reference", - "isArray": true, - "name": "DownloadPackageType", - "id": 3860 - }, - "defaultValue": " []" - }, - { - "id": 7978, - "name": "hasPublicPackages", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7979, - "name": "hasPublicPackages", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/download/download.component.ts", - "line": 64, - "character": 26 - } - ] - }, - { - "id": 7983, - "name": "isSecure", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 7984, - "name": "isSecure", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7985, - "name": "field", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "stringLiteral", - "value": "Not Secure" - }, - { - "type": "stringLiteral", - "value": "Secured" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/download/download.component.ts", - "line": 78, - "character": 18 - } - ] - }, - { - "id": 7980, - "name": "toggleAccordion", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7981, - "name": "toggleAccordion", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7982, - "name": "card", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/download/download.component.ts", - "line": 73, - "character": 24 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 7976, - 7977, - 7975 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 7978, - 7983, - 7980 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/download/download.component.ts", - "line": 50, - "character": 33 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 7974 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/download/download.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7986, - "name": "\"src/sam-ui-elements/src/ui-kit/components/download/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/download/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/download/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7987, - "name": "\"src/sam-ui-elements/src/ui-kit/components/filters-container/filters-container.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/filters-container/filters-container.component.ts", - "children": [ - { - "id": 7988, - "name": "SamFiltersContainerComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sam Filter Container Component\nComponent is used as a container for collapsible filters.\nChild components included in this tag will conform to the styles\napplied on the container." - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-filters-container',\n templateUrl: 'filters-container.template.html',\n styles: [`:host >>> .filters-container * {margin-bottom: 1rem;}`]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/filters-container/filters-container.component.ts", - "line": 14, - "character": 41 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 7988 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/filters-container/filters-container.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7989, - "name": "\"src/sam-ui-elements/src/ui-kit/components/filters-container/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/filters-container/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/filters-container/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7990, - "name": "\"src/sam-ui-elements/src/ui-kit/components/header/header.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/header/header.component.ts", - "children": [ - { - "id": 7991, - "name": "SamHeaderComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The component contains navigational links to main sections of\nthe site" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-header',\n templateUrl: 'header.template.html',\n}" - } - } - ], - "children": [ - { - "id": 7992, - "name": "headerDropdownControl", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emitted event from child dropdown component" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/header/header.component.ts", - "line": 15, - "character": 33 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 7993, - "name": "dropdownEventControl", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7994, - "name": "dropdownEventControl", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7995, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/header/header.component.ts", - "line": 17, - "character": 22 - } - ] - }, - { - "id": 7996, - "name": "refreshPage", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7997, - "name": "refreshPage", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/header/header.component.ts", - "line": 21, - "character": 13 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 7992 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 7993, - 7996 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/header/header.component.ts", - "line": 11, - "character": 31 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 7991 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/header/header.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7998, - "name": "\"src/sam-ui-elements/src/ui-kit/components/header/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/header/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/header/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7999, - "name": "\"src/sam-ui-elements/src/ui-kit/components/history/history.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/history/history.component.ts", - "children": [ - { - "id": 8000, - "name": "SamHistoryComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-history',\n templateUrl: 'history.template.html'\n}" - } - } - ], - "children": [ - { - "id": 8002, - "name": "currentId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the 'current' node on the id value defined in data" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/history/history.component.ts", - "line": 15, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8001, - "name": "data", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "sets the model for generating nodes" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/history/history.component.ts", - "line": 11, - "character": 15 - } - ], - "type": { - "type": "reference", - "isArray": true, - "name": "HistoryNodeType", - "id": 3841 - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8002, - 8001 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/history/history.component.ts", - "line": 7, - "character": 32 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8000 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/history/history.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8003, - "name": "\"src/sam-ui-elements/src/ui-kit/components/history/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/history/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/history/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8478, - "name": "\"src/sam-ui-elements/src/ui-kit/components/image/image.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "children": [ - { - "id": 8479, - "name": "SamImageComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-image',\n templateUrl: 'image.template.html'\n}" - } - } - ], - "children": [ - { - "id": 8485, - "name": "_image", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'image'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 30, - "character": 36 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 8487, - "name": "cancelButton", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'cancelButton'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 32, - "character": 49 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 8491, - "name": "cancelButtonStream", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 37, - "character": 28 - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 8495, - "name": "cancelButtonSubscription", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 42, - "character": 34 - } - ], - "type": { - "type": "reference", - "name": "Subscription" - } - }, - { - "id": 8483, - "name": "componentContainer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'componentContainer'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 28, - "character": 61 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 8486, - "name": "editButton", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'editButton'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 31, - "character": 45 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 8490, - "name": "editButtonStream", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 36, - "character": 26 - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 8499, - "name": "editMode", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 47, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8493, - "name": "editModeSubscription", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 40, - "character": 30 - } - ], - "type": { - "type": "reference", - "name": "Subscription" - } - }, - { - "id": 8481, - "name": "editable", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "A boolean that enables editing and changing a new image" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 22, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8482, - "name": "fileChange", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "An event emitter that emits the file that the user uploaded." - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 26, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "reference", - "name": "File" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8489, - "name": "fileChangeStream", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 35, - "character": 26 - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 8494, - "name": "fileChangeSubscription", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 41, - "character": 32 - } - ], - "type": { - "type": "reference", - "name": "Subscription" - } - }, - { - "id": 8484, - "name": "filePicker", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'filePicker'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 29, - "character": 45 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 8498, - "name": "reader", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 46, - "character": 16 - } - ], - "type": { - "type": "reference", - "name": "FileReader" - }, - "defaultValue": " new FileReader()" - }, - { - "id": 8488, - "name": "saveButton", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'saveButton'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 33, - "character": 45 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 8492, - "name": "saveButtonStream", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 38, - "character": 26 - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 8496, - "name": "saveButtonSubscription", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 43, - "character": 32 - } - ], - "type": { - "type": "reference", - "name": "Subscription" - } - }, - { - "id": 8480, - "name": "src", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "A src string or dataURL for the image source." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 18, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8501, - "name": "tmpSrc", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 49, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8500, - "name": "tmpValue", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 48, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "File" - } - }, - { - "id": 8497, - "name": "value", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 45, - "character": 15 - } - ], - "type": { - "type": "reference", - "name": "File" - } - }, - { - "id": 8512, - "name": "generateDoneText", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 8513, - "name": "generateDoneText", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "stringLiteral", - "value": "Save" - }, - { - "type": "stringLiteral", - "value": "Done" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 145, - "character": 25 - } - ] - }, - { - "id": 8510, - "name": "generateFilePickerLabelText", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 8511, - "name": "generateFilePickerLabelText", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 136, - "character": 36 - } - ] - }, - { - "id": 8514, - "name": "generateSrc", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 8515, - "name": "generateSrc", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 149, - "character": 20 - } - ] - }, - { - "id": 8508, - "name": "getFileName", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 8509, - "name": "getFileName", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 128, - "character": 20 - } - ] - }, - { - "id": 8504, - "name": "hideEditButton", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 8505, - "name": "hideEditButton", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 120, - "character": 23 - } - ] - }, - { - "id": 8516, - "name": "isImageTemporary", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 8517, - "name": "isImageTemporary", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 153, - "character": 25 - } - ] - }, - { - "id": 8502, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8503, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 51, - "character": 10 - } - ] - }, - { - "id": 8518, - "name": "onDragEnter", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 8519, - "name": "onDragEnter", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8520, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 158, - "character": 20 - } - ] - }, - { - "id": 8521, - "name": "onDragOver", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 8522, - "name": "onDragOver", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8523, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 163, - "character": 19 - } - ] - }, - { - "id": 8524, - "name": "onDropEvent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 8525, - "name": "onDropEvent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8526, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 168, - "character": 20 - } - ] - }, - { - "id": 8506, - "name": "toggleEdit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 8507, - "name": "toggleEdit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 124, - "character": 20 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8485, - 8487, - 8491, - 8495, - 8483, - 8486, - 8490, - 8499, - 8493, - 8481, - 8482, - 8489, - 8494, - 8484, - 8498, - 8488, - 8492, - 8496, - 8480, - 8501, - 8500, - 8497 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8512, - 8510, - 8514, - 8508, - 8504, - 8516, - 8502, - 8518, - 8521, - 8524, - 8506 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 14, - "character": 30 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8479 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8527, - "name": "\"src/sam-ui-elements/src/ui-kit/components/image/image.module\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/image/image.module.ts", - "children": [ - { - "id": 8528, - "name": "SamImageModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n CommonModule,\n FormsModule\n ],\n declarations: [\n SamImageComponent\n ],\n exports: [\n SamImageComponent\n ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.module.ts", - "line": 19, - "character": 27 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8528 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/image.module.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8529, - "name": "\"src/sam-ui-elements/src/ui-kit/components/image/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/image/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/image/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8571, - "name": "\"src/sam-ui-elements/src/ui-kit/components/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/index.ts", - "children": [ - { - "id": 8572, - "name": "SamComponentsModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n CommonModule,\n RouterModule,\n SamFormControlsModule,\n SamDirectivesModule,\n SamElementsModule,\n AccordionsModule,\n SamPipesModule,\n SamSidenavModule,\n SamWrapperModule,\n SamCommentsModule,\n SamImageModule,\n ],\n declarations: [\n SamAlertComponent,\n SamAlertFooterComponent,\n SamBadgeComponent,\n SamBannerComponent,\n SamBreadcrumbsComponent,\n SamCollapsibleComponent,\n SamDownloadComponent,\n SamFiltersContainerComponent,\n SamHeaderComponent,\n SamHistoryComponent,\n SamInfoAccordionComponent,\n SamLabelComponent,\n SamModalComponent,\n SamMultiSelectDropdownComponent,\n SamPaginationComponent,\n SamPointOfContactComponent,\n SamProgress,\n SamSpinnerComponent,\n SamTabsComponent,\n SamTabComponent,\n SamUploadComponent,\n SamActionButton,\n SamActionsDropdownComponent,\n ],\n exports: [\n SamActionButton,\n SamActionsDropdownComponent,\n SamAlertComponent,\n SamAlertFooterComponent,\n SamBadgeComponent,\n SamBannerComponent,\n SamBreadcrumbsComponent,\n SamCollapsibleComponent,\n SamDownloadComponent,\n SamFiltersContainerComponent,\n SamHeaderComponent,\n SamHistoryComponent,\n SamInfoAccordionComponent,\n SamLabelComponent,\n SamModalComponent,\n SamMultiSelectDropdownComponent,\n SamPaginationComponent,\n SamPointOfContactComponent,\n SamProgress,\n SamSidenavModule,\n SamSpinnerComponent,\n SamTabsComponent,\n SamTabComponent,\n SamUploadComponent,\n AccordionsModule,\n SamCommentsModule,\n SamImageModule,\n ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/index.ts", - "line": 108, - "character": 32 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8572 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8056, - "name": "\"src/sam-ui-elements/src/ui-kit/components/info-accordion/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/info-accordion/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8004, - "name": "\"src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "children": [ - { - "id": 8005, - "name": "SamInfoAccordionComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-info-accordion',\n templateUrl: 'info-accordion.template.html',\n animations: [\n\n trigger('fadeInOut', [\n state('in', style({opacity: '1'})),\n state('out', style({opacity: '1'})),\n transition('in => out, out => in', [\n animate('.4s', keyframes([\n style({ opacity: '1', transform: 'translateY(0%)', offset: 0}),\n style({ opacity: '0', transform: 'translateY(-5%)', offset: 0.3}),\n style({ opacity: '1', transform: 'translateY(0%)', offset: 1.0})\n ]))\n ])\n ]),\n\n trigger('pointingInOut', [\n state('in', style({opacity: '1', position: 'relative', top: '20px'})),\n state('out', style({opacity: '1', position: 'relative', top: '20px'})),\n transition('* => *', [\n animate('0.03s 0.3s', keyframes([\n style({ opacity: '0', top: '10%', offset: 0}),\n style({ opacity: '1', top: '10%', offset: 1.0})\n ]))\n ])\n ]),\n\n trigger('slideInOut', [\n state('in', style({height: '*'})),\n transition('void => *', [\n style({\n transform: 'translateY(-20%)',\n overflow: 'hidden',\n opacity: '0',\n height: '0'\n }),\n animate('.3s ease-in', style({\n transform: 'translateY(0%)',\n overflow: 'hidden',\n opacity: '1',\n height: '*'\n }))\n ]),\n transition('* => void', [\n style({\n overflow: 'hidden',\n opacity: '1',\n height: '*'\n }),\n animate('.3s ease-out', style({\n transform: 'translateY(-20%)',\n overflow: 'hidden',\n opacity: '0',\n height: '0'\n }))\n ])\n ]),\n\n trigger('overState', [\n state('inactive', style({\n transform: 'translateY(0%) scale(1)',\n })),\n state('active', style({\n transform: 'translateY(0%) scale(1.02)',\n })),\n transition('inactive => active', animate('100ms ease-in')),\n transition('active => inactive', animate('100ms ease-out')),\n transition('void => inactive', [\n style({\n transform: 'translateY(10%) scale(1)',\n }),\n animate('.5s cubic-bezier(0.175, 0.885, 0.32, 1.275)')\n ]),\n ])\n ]\n}" - } - } - ], - "children": [ - { - "id": 8013, - "name": "closeNotification", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Passes in a string to close accordions for cases where there are multiple\nInfo accordions on a page." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 128, - "character": 28 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 8010, - "name": "data", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets accordion data" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 112, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8007, - "name": "defaultItemsPerRow", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 98, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "3" - }, - { - "id": 8022, - "name": "fadeSegmentInOut", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 144, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 8021, - "name": "formatted", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 142, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8012, - "name": "isExternalLink", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Configures external link indicator" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 122, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 8008, - "name": "itemsPerRow", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Configures number of items per row" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 102, - "character": 22 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "number" - } - ] - }, - "defaultValue": " [this.defaultItemsPerRow]" - }, - { - "id": 8006, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "(deprecated) sets active item" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 96, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8011, - "name": "showDetailTitle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Configures showing detail title" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 117, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 8009, - "name": "spacing", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets additional spacing configuration (\"very relaxed\" and \"relaxed\")" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 107, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 8014, - "name": "updateNotification", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emits notification event" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 133, - "character": 30 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8041, - "name": "closeReferenceDetail", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 8042, - "name": "closeReferenceDetail", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 200, - "character": 30 - } - ] - }, - { - "id": 8030, - "name": "formatData", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8031, - "name": "formatData", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 160, - "character": 12 - } - ] - }, - { - "id": 8043, - "name": "getActiveClass", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 8044, - "name": "getActiveClass", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8045, - "name": "i", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8046, - "name": "j", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 205, - "character": 24 - } - ] - }, - { - "id": 8037, - "name": "getItemClass", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 8038, - "name": "getItemClass", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8039, - "name": "i", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8040, - "name": "j", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "stringLiteral", - "value": "fa-minus" - }, - { - "type": "stringLiteral", - "value": "fa-plus" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 193, - "character": 22 - } - ] - }, - { - "id": 8047, - "name": "getLinkClass", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 8048, - "name": "getLinkClass", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 212, - "character": 22 - } - ] - }, - { - "id": 8052, - "name": "isCurrent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 8053, - "name": "isCurrent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8054, - "name": "i", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8055, - "name": "j", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 220, - "character": 19 - } - ] - }, - { - "id": 8028, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8029, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 154, - "character": 13 - } - ] - }, - { - "id": 8023, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8024, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 146, - "character": 10 - } - ] - }, - { - "id": 8025, - "name": "over", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8026, - "name": "over", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8027, - "name": "item", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 150, - "character": 6 - } - ] - }, - { - "id": 8032, - "name": "selectDetail", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8033, - "name": "selectDetail", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8034, - "name": "i", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8035, - "name": "j", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8036, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 178, - "character": 14 - } - ] - }, - { - "id": 8049, - "name": "toggleDetail", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 8050, - "name": "toggleDetail", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8051, - "name": "i", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 216, - "character": 22 - } - ] - }, - { - "id": 8015, - "name": "detailObj", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 8019, - "name": "item", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 139, - "character": 8 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 8020, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {} - } - } - }, - { - "id": 8017, - "name": "posX", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 137, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": " -1" - }, - { - "id": 8018, - "name": "posY", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 138, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": " -1" - }, - { - "id": 8016, - "name": "showDetail", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 136, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 8019, - 8017, - 8018, - 8016 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 135, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8013, - 8010, - 8007, - 8022, - 8021, - 8012, - 8008, - 8006, - 8011, - 8009, - 8014 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8041, - 8030, - 8043, - 8037, - 8047, - 8052, - 8028, - 8023, - 8025, - 8032, - 8049 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 8015 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 92, - "character": 38 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8005 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/info-accordion/info-accordion.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8063, - "name": "\"src/sam-ui-elements/src/ui-kit/components/label/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/label/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/label/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8057, - "name": "\"src/sam-ui-elements/src/ui-kit/components/label/label.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/label/label.component.ts", - "children": [ - { - "id": 8058, - "name": "SamLabelComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The component draws attention to new or important content." - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-label',\n template: `{{labelText}}`,\n}" - } - } - ], - "children": [ - { - "id": 8060, - "name": "labelText", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The text content that will show on the label" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/label/label.component.ts", - "line": 18, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8059, - "name": "labelType", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets size of label, takes value of 'small' or 'big'" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/label/label.component.ts", - "line": 14, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8061, - "name": "labelClass", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 8062, - "name": "labelClass", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Set up the SAMWDS class for the label according to the size of the label" - }, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/label/label.component.ts", - "line": 23, - "character": 19 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8060, - 8059 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8061 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/label/label.component.ts", - "line": 10, - "character": 30 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8058 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/label/label.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8148, - "name": "\"src/sam-ui-elements/src/ui-kit/components/modal/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/modal/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8071, - "name": "\"src/sam-ui-elements/src/ui-kit/components/modal/modal.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "children": [ - { - "id": 8072, - "name": "SamModalComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The component display a popover for user interaction" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-modal',\n templateUrl: './modal.template.html'\n}" - } - } - ], - "children": [ - { - "id": 8113, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8116, - "name": "new SamModalComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 8117, - "name": "hostElement", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 8118, - "name": "cdr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - } - ], - "type": { - "type": "reference", - "name": "SamModalComponent", - "id": 8072 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 107, - "character": 27 - } - ] - }, - { - "id": 8109, - "name": "_allFocusableElements", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 103, - "character": 31 - } - ], - "type": { - "type": "reference", - "name": "NodeListOf", - "typeArguments": [ - { - "type": "reference", - "name": "Element" - } - ] - } - }, - { - "id": 8107, - "name": "_focusModalElement", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 98, - "character": 28 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8108, - "name": "_focusableString", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 99, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"a[href], area, button, select, textarea, *[tabindex], input:not([type=\"hidden\"])\"" - }, - { - "id": 8110, - "name": "_modalFocusableElements", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 104, - "character": 33 - } - ], - "type": { - "type": "reference", - "name": "NodeListOf", - "typeArguments": [ - { - "type": "reference", - "name": "Element" - } - ] - } - }, - { - "id": 8111, - "name": "_scrollHelpers", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 105, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8112, - "name": "args", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 107, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " undefined" - }, - { - "id": 8105, - "name": "backdropElement", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 96, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "HTMLElement" - } - }, - { - "id": 8077, - "name": "cancelButtonLabel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the cancel button text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 42, - "character": 28 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 8115, - "name": "cdr", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 109, - "character": 58 - } - ], - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - }, - { - "id": 8085, - "name": "close", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emitted event when modal is closed" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 74, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8081, - "name": "closeOnEscape", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Close modal if ESC key is pressed, defaults to true" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 58, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 8080, - "name": "closeOnOutsideClick", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Close modal if user clicks outside of modal, defaults to true" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 54, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 8076, - "name": "description", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the modal text description" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 38, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8114, - "name": "hostElement", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 109, - "character": 33 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 8073, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets ID html attribute of modal" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 25, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 8106, - "name": "internalId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 97, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8089, - "name": "modalContent", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'modalContent'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 85, - "character": 48 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 8088, - "name": "modalRoot", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'modalRoot'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 84, - "character": 42 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 8084, - "name": "onClose", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "(deprecated) Emitted event when modal is closed" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 70, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8082, - "name": "onOpen", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "(deprecated) Emitted event when modal is opened" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 62, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8086, - "name": "onSubmit", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "(deprecated) Emitted event on modal submission" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 78, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8083, - "name": "open", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emitted event when modal is opened" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 66, - "character": 16 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8104, - "name": "selectedType", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 94, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " this.types.success.class" - }, - { - "id": 8090, - "name": "show", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 87, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8079, - "name": "showClose", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Show/hide the modal close button, defaults to true" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 50, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 8087, - "name": "submit", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emitted event on modal submission" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 82, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8078, - "name": "submitButtonLabel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the submit button text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 46, - "character": 28 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 8075, - "name": "title", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the modal title text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 34, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8074, - "name": "type", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets type of modal, takes values of \"success\", \"warning\", \"error\", or\n\"info\"" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 30, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8136, - "name": "closeModal", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8137, - "name": "closeModal", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8138, - "name": "emit", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 201, - "character": 12 - } - ] - }, - { - "id": 8141, - "name": "createBackdrop", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 8142, - "name": "createBackdrop", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 225, - "character": 24 - } - ] - }, - { - "id": 8129, - "name": "ngOnDestroy", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8130, - "name": "ngOnDestroy", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 167, - "character": 13 - } - ] - }, - { - "id": 8119, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8120, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 113, - "character": 10 - } - ] - }, - { - "id": 8133, - "name": "openModal", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8134, - "name": "openModal", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8135, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 183, - "character": 11 - } - ] - }, - { - "id": 8145, - "name": "preventClosing", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 8146, - "name": "preventClosing", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8147, - "name": "evt", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 236, - "character": 24 - } - ] - }, - { - "id": 8126, - "name": "reinsertTabbable", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8127, - "name": "reinsertTabbable", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8128, - "name": "item", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 157, - "character": 18 - } - ] - }, - { - "id": 8143, - "name": "removeBackdrop", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 8144, - "name": "removeBackdrop", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 230, - "character": 24 - } - ] - }, - { - "id": 8123, - "name": "removeTabbable", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8124, - "name": "removeTabbable", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8125, - "name": "item", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 149, - "character": 16 - } - ] - }, - { - "id": 8121, - "name": "set508", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8122, - "name": "set508", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 120, - "character": 8 - } - ] - }, - { - "id": 8139, - "name": "submitBtnClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8140, - "name": "submitBtnClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 220, - "character": 16 - } - ] - }, - { - "id": 8131, - "name": "typeNotDefined", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8132, - "name": "typeNotDefined", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 173, - "character": 16 - } - ] - }, - { - "id": 8091, - "name": "types", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true, - "isPublic": true - }, - "children": [ - { - "id": 8098, - "name": "error", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 8099, - "name": "class", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 91, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"usa-alert-error\"" - }, - { - "id": 8100, - "name": "sr", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 91, - "character": 43 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"error alert\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 8099, - 8100 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 91, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 8101, - "name": "info", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 8102, - "name": "class", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 92, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"usa-alert-info\"" - }, - { - "id": 8103, - "name": "sr", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 92, - "character": 41 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"information alert\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 8102, - 8103 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 92, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 8092, - "name": "success", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 8093, - "name": "class", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 89, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"usa-alert-success\"" - }, - { - "id": 8094, - "name": "sr", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 89, - "character": 47 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"success alert\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 8093, - 8094 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 89, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 8095, - "name": "warning", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 8096, - "name": "class", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 90, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"usa-alert-warning\"" - }, - { - "id": 8097, - "name": "sr", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 90, - "character": 47 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"warning alert\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 8096, - 8097 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 90, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 8098, - 8101, - 8092, - 8095 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 88, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 8113 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 8109, - 8107, - 8108, - 8110, - 8111, - 8112, - 8105, - 8077, - 8115, - 8085, - 8081, - 8080, - 8076, - 8114, - 8073, - 8106, - 8089, - 8088, - 8084, - 8082, - 8086, - 8083, - 8104, - 8090, - 8079, - 8087, - 8078, - 8075, - 8074 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8136, - 8141, - 8129, - 8119, - 8133, - 8145, - 8126, - 8143, - 8123, - 8121, - 8139, - 8131 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 8091 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 21, - "character": 30 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8072 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/modal/modal.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8180, - "name": "\"src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8149, - "name": "\"src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "children": [ - { - "id": 8150, - "name": "SamMultiSelectDropdownComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The component provides a form control to\\\nmultiselect a list" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-multiselect-dropdown',\n templateUrl: 'multiselect-dropdown.template.html'\n}" - } - } - ], - "children": [ - { - "id": 8158, - "name": "disabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the disabled attribute for component, defaults to false" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 51, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8161, - "name": "elementLabel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 59, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8156, - "name": "errorMessage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "String for general error message" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 43, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8157, - "name": "hasSelectAll", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Configure if list should have a \"Select All\" option" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 47, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 8155, - "name": "hint", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Set form control hint" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 39, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8153, - "name": "label", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Set form control label" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 31, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8160, - "name": "list", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'optionsList'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 57, - "character": 32 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 8151, - "name": "model", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the component model for active selections" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 23, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " []" - }, - { - "id": 8159, - "name": "modelChange", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Event emitted when model changes" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 55, - "character": 23 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8154, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Set form control name attribute" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 35, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8152, - "name": "options", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Set the dropdown option items" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 27, - "character": 18 - } - ], - "type": { - "type": "reference", - "isArray": true, - "name": "OptionsType", - "id": 3829 - } - }, - { - "id": 8172, - "name": "isEnterEvent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8173, - "name": "isEnterEvent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8174, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 97, - "character": 14 - } - ] - }, - { - "id": 8166, - "name": "labelForValue", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8167, - "name": "labelForValue", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8168, - "name": "val", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 80, - "character": 15 - } - ] - }, - { - "id": 8177, - "name": "modelChanged", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8178, - "name": "modelChanged", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8179, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 112, - "character": 14 - } - ] - }, - { - "id": 8162, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8163, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 61, - "character": 13 - } - ] - }, - { - "id": 8175, - "name": "onMoveOutside", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8176, - "name": "onMoveOutside", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 106, - "character": 15 - } - ] - }, - { - "id": 8169, - "name": "toggleItemList", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8170, - "name": "toggleItemList", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8171, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 87, - "character": 16 - } - ] - }, - { - "id": 8164, - "name": "updateLabel", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8165, - "name": "updateLabel", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 65, - "character": 13 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8158, - 8161, - 8156, - 8157, - 8155, - 8153, - 8160, - 8151, - 8159, - 8154, - 8152 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8172, - 8166, - 8177, - 8162, - 8175, - 8169, - 8164 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 19, - "character": 44 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnChanges" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8150 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/multiselect-dropdown/multiselect-dropdown.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8215, - "name": "\"src/sam-ui-elements/src/ui-kit/components/pagination/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/pagination/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8181, - "name": "\"src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "children": [ - { - "id": 8182, - "name": "SamPaginationComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The allows users to select a page" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-pagination',\n templateUrl: 'pagination.template.html',\n}" - } - } - ], - "children": [ - { - "id": 8187, - "name": "currentPage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Shows the current page number" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 23, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 8186, - "name": "disabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the disabled status of the component, defaults to false" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 19, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8184, - "name": "ellipsisThreshold", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 13, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "6" - }, - { - "id": 8183, - "name": "maxPagesBeforeOrAfterCurrent", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 12, - "character": 38 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "3" - }, - { - "id": 8185, - "name": "maxTotalPageWithoutEllipsis", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 14, - "character": 37 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "10" - }, - { - "id": 8189, - "name": "pageChange", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Event emitted when current page is changed" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 31, - "character": 22 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "number" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8188, - "name": "totalPages", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Shows the number of total pages" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 27, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 8190, - "name": "consecutivePageRange", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8191, - "name": "consecutivePageRange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 34, - "character": 22 - } - ] - }, - { - "id": 8212, - "name": "getAriaLabel", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8213, - "name": "getAriaLabel", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8214, - "name": "i", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "stringLiteral", - "value": "" - }, - { - "type": "stringLiteral", - "value": "current" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 102, - "character": 14 - } - ] - }, - { - "id": 8195, - "name": "onNextClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8196, - "name": "onNextClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 69, - "character": 13 - } - ] - }, - { - "id": 8192, - "name": "onPageClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8193, - "name": "onPageClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8194, - "name": "pageNumber", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 64, - "character": 13 - } - ] - }, - { - "id": 8197, - "name": "onPreviousClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8198, - "name": "onPreviousClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 73, - "character": 17 - } - ] - }, - { - "id": 8207, - "name": "showFirstEllipsis", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8208, - "name": "showFirstEllipsis", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 93, - "character": 19 - } - ] - }, - { - "id": 8203, - "name": "showLastButton", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8204, - "name": "showLastButton", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 85, - "character": 16 - } - ] - }, - { - "id": 8205, - "name": "showLastEllipsis", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8206, - "name": "showLastEllipsis", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 89, - "character": 18 - } - ] - }, - { - "id": 8201, - "name": "showNext", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8202, - "name": "showNext", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 81, - "character": 10 - } - ] - }, - { - "id": 8199, - "name": "showPrevious", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8200, - "name": "showPrevious", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 77, - "character": 14 - } - ] - }, - { - "id": 8209, - "name": "textDecoration", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8210, - "name": "textDecoration", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8211, - "name": "i", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "stringLiteral", - "value": "" - }, - { - "type": "stringLiteral", - "value": "usa-current" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 98, - "character": 16 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8187, - 8186, - 8184, - 8183, - 8185, - 8189, - 8188 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8190, - 8212, - 8195, - 8192, - 8197, - 8207, - 8203, - 8205, - 8201, - 8199, - 8209 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 10, - "character": 35 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8182 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/pagination/pagination.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8219, - "name": "\"src/sam-ui-elements/src/ui-kit/components/point-of-contact/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/point-of-contact/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/point-of-contact/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8216, - "name": "\"src/sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component.ts", - "children": [ - { - "id": 8217, - "name": "SamPointOfContactComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The component outputs Point of Contact information" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{ selector: 'sam-poc',\n templateUrl: 'point-of-contact.template.html'\n}" - } - } - ], - "children": [ - { - "id": 8218, - "name": "data", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Populates the component with the provided data" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component.ts", - "line": 14, - "character": 15 - } - ], - "type": { - "type": "reference", - "name": "PointOfContactType", - "id": 3879 - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8218 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component.ts", - "line": 10, - "character": 39 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8217 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/point-of-contact/point-of-contact.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8220, - "name": "\"src/sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", - "children": [ - { - "id": 8221, - "name": "SamProgress", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-progress-bar',\n template: '',\n styles: [`\n progress[value] {\n -webkit-appearance: none;\n appearance: none;\n height: 18px;\n border: 1px solid black;\n padding: 1px;\n width: 100%;\n }\n\n progress[value]::-webkit-progress-bar {\n background-color: transparent;\n }\n \n progress[value]::-webkit-progress-value {\n background-color: dodgerblue;\n border-color: transparent;\n }\n `]\n}" - } - } - ], - "children": [ - { - "id": 8223, - "name": "max", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the max progress value" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", - "line": 34, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "1" - }, - { - "id": 8222, - "name": "value", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the current progress value" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", - "line": 30, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8223, - 8222 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", - "line": 26, - "character": 24 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8221 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/progress-bar/progress-bar.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8319, - "name": "\"src/sam-ui-elements/src/ui-kit/components/sidenav/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/sidenav/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8251, - "name": "\"src/sam-ui-elements/src/ui-kit/components/sidenav/interfaces\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", - "children": [ - { - "id": 8252, - "name": "MenuItem", - "kind": 256, - "kindString": "Interface", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Interface for Sam Sidenav Component\nLabel is the visible text for each menu item\nRoute is an optional parameter for the path for your router. Routes will be\nconcatenated as lower levels are of the sidenav are clicked. Routes should\ninclude a leading '/' if it is a child route or '#' if it is an anchor.\nChildren is an array of MenuItems that will be displayed as a child list\nwhen the parent is clicked in the sidenav." - }, - "children": [ - { - "id": 8256, - "name": "children", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isOptional": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", - "line": 14, - "character": 10 - } - ], - "type": { - "type": "reference", - "isArray": true, - "name": "MenuItem", - "id": 8252 - } - }, - { - "id": 8255, - "name": "disabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isOptional": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", - "line": 13, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 8257, - "name": "iconClass", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isOptional": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", - "line": 15, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8253, - "name": "label", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", - "line": 11, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8254, - "name": "route", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isOptional": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", - "line": 12, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8256, - 8255, - 8257, - 8253, - 8254 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", - "line": 10, - "character": 25 - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "kind": 256, - "children": [ - 8252 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/interfaces.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8279, - "name": "\"src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8258, - "name": "\"src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", - "children": [ - { - "id": 8259, - "name": "SamMenuItemComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-menu-item',\n templateUrl: './menu-item.template.html'\n}" - } - } - ], - "children": [ - { - "id": 8264, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8266, - "name": "new SamMenuItemComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 8267, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SidenavService", - "id": 8225 - } - } - ], - "type": { - "type": "reference", - "name": "SamMenuItemComponent", - "id": 8259 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", - "line": 25, - "character": 67 - } - ] - }, - { - "id": 8260, - "name": "children", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets additional children in menu item" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", - "line": 13, - "character": 19 - } - ], - "type": { - "type": "reference", - "isArray": true, - "name": "MenuItem", - "id": 8252 - } - }, - { - "id": 8262, - "name": "data", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "(deprecated) Emits when an item has been selected" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", - "line": 21, - "character": 16 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8261, - "name": "nodeDepth", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Indicates how deep this menu item is in the tree" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", - "line": 17, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 8263, - "name": "selection", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emits when an item has been selected" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", - "line": 25, - "character": 21 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8265, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", - "line": 27, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "SidenavService", - "id": 8225 - } - }, - { - "id": 8276, - "name": "emitSelectedChild", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8277, - "name": "emitSelectedChild", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8278, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", - "line": 43, - "character": 19 - } - ] - }, - { - "id": 8273, - "name": "isSelected", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8274, - "name": "isSelected", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8275, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", - "line": 39, - "character": 12 - } - ] - }, - { - "id": 8268, - "name": "updateUI", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8269, - "name": "updateUI", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8270, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 8271, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Event" - } - }, - { - "id": 8272, - "name": "menuItem", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MenuItem", - "id": 8252 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", - "line": 29, - "character": 10 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 8264 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 8260, - 8262, - 8261, - 8263, - 8265 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8276, - 8273, - 8268 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", - "line": 9, - "character": 33 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8259 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/menu-item/menu-item.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8250, - "name": "\"src/sam-ui-elements/src/ui-kit/components/sidenav/services/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/sidenav/services/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8224, - "name": "\"src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", - "children": [ - { - "id": 8225, - "name": "SidenavService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Injectable", - "type": { - "type": "reference", - "name": "Injectable" - }, - "arguments": {} - } - ], - "children": [ - { - "id": 8228, - "name": "children", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", - "line": 9, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - }, - { - "id": 8226, - "name": "indexArray", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", - "line": 7, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "number" - }, - "defaultValue": " []" - }, - { - "id": 8229, - "name": "model", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", - "line": 10, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8227, - "name": "path", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", - "line": 8, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8236, - "name": "getData", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8237, - "name": "getData", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "isArray": true, - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", - "line": 20, - "character": 9 - } - ] - }, - { - "id": 8248, - "name": "getPath", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8249, - "name": "getPath", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", - "line": 50, - "character": 9 - } - ] - }, - { - "id": 8246, - "name": "getSelectedModel", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8247, - "name": "getSelectedModel", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", - "line": 41, - "character": 18 - } - ] - }, - { - "id": 8242, - "name": "overrideData", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8243, - "name": "overrideData", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8244, - "name": "nodeDepth", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 8245, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", - "line": 33, - "character": 14 - } - ] - }, - { - "id": 8230, - "name": "setChildren", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8231, - "name": "setChildren", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8232, - "name": "children", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", - "line": 12, - "character": 13 - } - ] - }, - { - "id": 8233, - "name": "setModel", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8234, - "name": "setModel", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8235, - "name": "model", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", - "line": 16, - "character": 10 - } - ] - }, - { - "id": 8238, - "name": "updateData", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8239, - "name": "updateData", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8240, - "name": "nodeDepth", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 8241, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", - "line": 24, - "character": 12 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8228, - 8226, - 8229, - 8227 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8236, - 8248, - 8246, - 8242, - 8230, - 8233, - 8238 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", - "line": 5, - "character": 27 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8225 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/sidenav.service.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9536, - "name": "\"src/sam-ui-elements/src/ui-kit/components/sidenav/services/testdata\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/sidenav/services/testdata.ts", - "children": [ - { - "id": 9537, - "name": "data", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 9539, - "name": "children", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/testdata.ts", - "line": 3, - "character": 10 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9540, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9541, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/testdata.ts", - "line": 61, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Item 3\"" - }, - { - "id": 9542, - "name": "route", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/testdata.ts", - "line": 62, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"/baz\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9541, - 9542 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n {\n label: 'Item 1',\n route: '/foo',\n children: [\n {\n label: 'Child 1',\n route: '/lorem',\n children: [\n {\n label: 'Grandchild 1',\n route: '/sit'\n },\n {\n label: 'Grandchild 2',\n route: '/amet'\n },\n {\n label: 'Grandchild 3',\n route: '/consectetur'\n }\n ]\n },\n {\n label: 'Child 2',\n route: '/ipsum',\n children: [\n {\n label: 'Grandchild 1',\n route: '/adipisicings'\n }\n ]\n },\n {\n label: 'Child 3',\n route: '/dolor'\n }\n ]\n },\n {\n label: 'Item 2',\n route: '/bar',\n children: [\n {\n label: 'Child 1',\n route: '/elit'\n },\n {\n label: 'Child 2',\n route: '/cumque'\n },\n {\n label: 'Child 3',\n route: '/dignissimos'\n }\n ]\n },\n {\n label: 'Item 3',\n route: '/baz'\n }\n ]" - }, - { - "id": 9538, - "name": "label", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/testdata.ts", - "line": 2, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"stuff\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9539, - 9538 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/testdata.ts", - "line": 1, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 9537 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/services/testdata.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8318, - "name": "\"src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8280, - "name": "\"src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "children": [ - { - "id": 8281, - "name": "SamSidenavComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The component builds a side navigation bar" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-sidenav',\n templateUrl: './sidenav.template.html'\n}" - } - } - ], - "children": [ - { - "id": 8289, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8291, - "name": "new SamSidenavComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 8292, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SidenavService", - "id": 8225 - } - } - ], - "type": { - "type": "reference", - "name": "SamSidenavComponent", - "id": 8281 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 51, - "character": 67 - } - ] - }, - { - "id": 8286, - "name": "data", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "(deprecated) Event emitted on interaction, returns the selected menu item" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 43, - "character": 16 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8283, - "name": "labelLookup", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets active selection in menu by matching to a label defined in the model" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 30, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8284, - "name": "model", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Object that defines the sidenav labels, routes, and structure" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 34, - "character": 16 - } - ], - "type": { - "type": "reference", - "name": "MenuItem", - "id": 8252 - } - }, - { - "id": 8285, - "name": "path", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "(deprecated) Event emitted on interaction, returns the selected menu\nitem's path value" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 39, - "character": 16 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8287, - "name": "pathChange", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Event emitted on interaction, returns the selected menu item's path value" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 47, - "character": 22 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8288, - "name": "selection", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Event emitted on interaction, returns the selected menu item" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 51, - "character": 21 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8290, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 53, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "SidenavService", - "id": 8225 - } - }, - { - "id": 8282, - "name": "type", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets type of side navigation, currently there are two options\n'default' & 'step'" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 26, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8314, - "name": "emitChildData", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8315, - "name": "emitChildData", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8316, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Event" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 128, - "character": 15 - } - ] - }, - { - "id": 8306, - "name": "isSelected", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8307, - "name": "isSelected", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8308, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 112, - "character": 12 - } - ] - }, - { - "id": 8298, - "name": "lookupLabelInModel", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8299, - "name": "lookupLabelInModel", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8300, - "name": "list", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8301, - "name": "lookup", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8302, - "name": "trail", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 85, - "character": 20 - } - ] - }, - { - "id": 8295, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8296, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8297, - "name": "c", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 72, - "character": 13 - } - ] - }, - { - "id": 8293, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8294, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 55, - "character": 10 - } - ] - }, - { - "id": 8303, - "name": "setSelection", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8304, - "name": "setSelection", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8305, - "name": "selection", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 105, - "character": 14 - } - ] - }, - { - "id": 8309, - "name": "updateUI", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8310, - "name": "updateUI", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8311, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 8312, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Event" - } - }, - { - "id": 8313, - "name": "menuItem", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "MenuItem", - "id": 8252 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 116, - "character": 10 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 8289 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 8286, - 8283, - 8284, - 8285, - 8287, - 8288, - 8290, - 8282 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8314, - 8306, - 8298, - 8295, - 8293, - 8303, - 8309 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 21, - "character": 32 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - }, - { - "id": 8317, - "name": "SamSidenavModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [ CommonModule ],\n declarations: [ SamSidenavComponent, SamMenuItemComponent],\n exports: [ SamSidenavComponent, SamMenuItemComponent ],\n providers: [ SidenavService ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 143, - "character": 29 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8281, - 8317 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/sidenav/sidenav/sidenav.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8322, - "name": "\"src/sam-ui-elements/src/ui-kit/components/spinner/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/spinner/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/spinner/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8320, - "name": "\"src/sam-ui-elements/src/ui-kit/components/spinner/spinner.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/spinner/spinner.component.ts", - "children": [ - { - "id": 8321, - "name": "SamSpinnerComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-spinner',\n template: ``,\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/spinner/spinner.component.ts", - "line": 7, - "character": 32 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8321 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/spinner/spinner.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8363, - "name": "\"src/sam-ui-elements/src/ui-kit/components/tabs/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/tabs/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8323, - "name": "\"src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "children": [ - { - "id": 8324, - "name": "SamTabComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The component contains the content for a tab" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-tab',\n template: `\n
    \n \n
    \n `\n}" - } - } - ], - "children": [ - { - "id": 8326, - "name": "active", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Set tab active class, defaults to false" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 32, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8327, - "name": "disabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Set tab disabled class, defaults to false" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 36, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8328, - "name": "float", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Set if tab is a floating action button" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 40, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8325, - "name": "title", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Set tab text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": { - "bindingPropertyName": "'tabTitle'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 28, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8326, - 8327, - 8328, - 8325 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 24, - "character": 28 - } - ] - }, - { - "id": 8329, - "name": "SamTabsComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The component is a wrapper for navigating through and\ndisplaying tabs" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-tabs',\n template: `\n
    \n \n \n {{tab.title}}\n \n \n \n
    \n \n `\n}" - } - } - ], - "children": [ - { - "id": 8348, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8350, - "name": "new SamTabsComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 8351, - "name": "cdr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - } - ], - "type": { - "type": "reference", - "name": "SamTabsComponent", - "id": 8329 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 123, - "character": 4 - } - ] - }, - { - "id": 8343, - "name": "_size", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 118, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"large\"" - }, - { - "id": 8344, - "name": "_theme", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 119, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"default\"" - }, - { - "id": 8339, - "name": "active", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the active tab" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 103, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": " -1" - }, - { - "id": 8340, - "name": "activeChange", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emits change on active tab index" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 108, - "character": 24 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "number" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8349, - "name": "cdr", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 126, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - }, - { - "id": 8341, - "name": "currentSelectedTab", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "(deprecated) Event emitted on tab selection" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 112, - "character": 30 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "Object" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8342, - "name": "tabChange", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Event emitted on tab selection" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 116, - "character": 21 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "Object" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8330, - "name": "tabs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ContentChildren", - "type": { - "type": "reference", - "name": "ContentChildren" - }, - "arguments": { - "selector": "SamTabComponent" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 70, - "character": 40 - } - ], - "type": { - "type": "reference", - "name": "QueryList", - "typeArguments": [ - { - "type": "reference", - "name": "SamTabComponent", - "id": 8324 - } - ] - } - }, - { - "id": 8331, - "name": "size", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Set tabs size" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "getSignature": [ - { - "id": 8334, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "comment": { - "shortText": "Set tabs size" - }, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "setSignature": [ - { - "id": 8332, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", - "flags": {}, - "comment": { - "shortText": "Set tabs size" - }, - "parameters": [ - { - "id": 8333, - "name": "key", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 76, - "character": 10 - }, - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 82, - "character": 10 - } - ] - }, - { - "id": 8335, - "name": "theme", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Set tabs theme" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "getSignature": [ - { - "id": 8338, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "comment": { - "shortText": "Set tabs theme" - }, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "setSignature": [ - { - "id": 8336, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", - "flags": {}, - "comment": { - "shortText": "Set tabs theme" - }, - "parameters": [ - { - "id": 8337, - "name": "key", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 90, - "character": 11 - }, - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 96, - "character": 11 - } - ] - }, - { - "id": 8352, - "name": "_setActiveTab", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8353, - "name": "_setActiveTab", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 128, - "character": 15 - } - ] - }, - { - "id": 8357, - "name": "ngAfterContentInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8358, - "name": "ngAfterContentInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 144, - "character": 20 - } - ] - }, - { - "id": 8354, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8355, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8356, - "name": "c", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SimpleChanges" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 138, - "character": 13 - } - ] - }, - { - "id": 8359, - "name": "selectTab", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8360, - "name": "selectTab", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8361, - "name": "tab", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamTabComponent", - "id": 8324 - } - }, - { - "id": 8362, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 167, - "character": 11 - } - ] - }, - { - "id": 8345, - "name": "themes", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isPrivate": true, - "isExported": true - }, - "children": [ - { - "id": 8346, - "name": "default", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 121, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"secondary pointing\"" - }, - { - "id": 8347, - "name": "separate", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 122, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"separate tabular\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 8346, - 8347 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 120, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 8348 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 8343, - 8344, - 8339, - 8340, - 8349, - 8341, - 8342, - 8330 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 8331, - 8335 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8352, - 8357, - 8354, - 8359 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 8345 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 69, - "character": 29 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "AfterContentInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8324, - 8329 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/tabs/tabs.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8364, - "name": "\"src/sam-ui-elements/src/ui-kit/components/upload/upload.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "children": [ - { - "id": 8472, - "name": "UploadValidator", - "kind": 2, - "kindString": "Module", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 8473, - "name": "Required", - "kind": 64, - "kindString": "Function", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8474, - "name": "Required", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8475, - "name": "control", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 8476, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 8477, - "name": "required", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 49, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"A file is required.\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 8477 - ] - } - ] - } - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 47, - "character": 26 - } - ] - } - ], - "groups": [ - { - "title": "Functions", - "kind": 64, - "children": [ - 8473 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 46, - "character": 32 - } - ] - }, - { - "id": 8365, - "name": "UploadStatus", - "kind": 4, - "kindString": "Enumeration", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 8368, - "name": "Done", - "kind": 16, - "kindString": "Enumeration member", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 19, - "character": 6 - } - ] - }, - { - "id": 8369, - "name": "Error", - "kind": 16, - "kindString": "Enumeration member", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 20, - "character": 7 - } - ] - }, - { - "id": 8366, - "name": "Initial", - "kind": 16, - "kindString": "Enumeration member", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 17, - "character": 9 - } - ] - }, - { - "id": 8367, - "name": "Uploading", - "kind": 16, - "kindString": "Enumeration member", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 18, - "character": 11 - } - ] - } - ], - "groups": [ - { - "title": "Enumeration members", - "kind": 16, - "children": [ - 8368, - 8369, - 8366, - 8367 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 16, - "character": 24 - } - ] - }, - { - "id": 8379, - "name": "SamUploadComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-upload',\n providers: [VALUE_ACCESSOR],\n templateUrl: 'upload.template.html',\n}" - } - } - ], - "children": [ - { - "id": 8395, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8397, - "name": "new SamUploadComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 8398, - "name": "httpClient", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "HttpClient" - } - } - ], - "type": { - "type": "reference", - "name": "SamUploadComponent", - "id": 8379 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 135, - "character": 51 - } - ] - }, - { - "id": 8391, - "name": "_model", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 128, - "character": 15 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reference", - "name": "UploadFile", - "id": 8376 - } - ] - }, - "defaultValue": " []" - }, - { - "id": 8384, - "name": "accept", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": " \"accept\" can be any value which is valid for input[accept]\n()" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 103, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8381, - "name": "deleteRequest", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "The request that gets called when the user click the (x). If the upload\nis in progress, the upload is simply canceled. If delete fails, the file\nis removed from the list and no error is presented to the user." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 86, - "character": 31 - } - ], - "type": { - "type": "reference", - "name": "DeleteRequestGenerator", - "id": 8461 - } - }, - { - "id": 8390, - "name": "disabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 124, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8388, - "name": "dragState", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 120, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "DragState", - "id": 6450 - }, - "defaultValue": " DragState.NotDragging" - }, - { - "id": 8394, - "name": "fileInput", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'file'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 135, - "character": 38 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 8396, - "name": "httpClient", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 137, - "character": 32 - } - ], - "type": { - "type": "reference", - "name": "HttpClient" - } - }, - { - "id": 8386, - "name": "maxFileSizeInBytes", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "If maxFileSizeInBytes is exceeded, then display a warning" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 113, - "character": 36 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 8382, - "name": "maxFiles", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Max number of files that can be uploaded. If a file is in the error status\nit does not count. 0 for infinite" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 92, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 8387, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 118, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"upload\"" - }, - { - "id": 8392, - "name": "onChange", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 130, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "Function" - } - }, - { - "id": 8393, - "name": "onTouched", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 132, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "Function" - } - }, - { - "id": 8385, - "name": "pattern", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Show an error if the file does match the regular expression" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 108, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "RegExp" - } - }, - { - "id": 8389, - "name": "showMaxFilesError", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 122, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8383, - "name": "uploadDeferred", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Uploads will not start until the host calls component.startUpload()" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 97, - "character": 32 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8380, - "name": "uploadRequest", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "The request the gets called after a file has been selected for upload.\nReport progress must be true if you want the progress bar." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 79, - "character": 31 - } - ], - "type": { - "type": "reference", - "name": "RequestGenerator", - "id": 8457 - } - }, - { - "id": 8455, - "name": "_clearInput", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8456, - "name": "_clearInput", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 352, - "character": 13 - } - ] - }, - { - "id": 8449, - "name": "_getDeleteRequestForFile", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8450, - "name": "_getDeleteRequestForFile", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8451, - "name": "uf", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "UploadFile", - "id": 8376 - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "reference", - "name": "HttpSentEvent" - }, - { - "type": "reference", - "name": "HttpHeaderResponse" - }, - { - "type": "reference", - "name": "HttpProgressEvent" - }, - { - "type": "reference", - "name": "HttpResponse", - "typeArguments": [ - { - "type": "instrinct", - "name": "Object" - } - ] - }, - { - "type": "reference", - "name": "HttpUserEvent", - "typeArguments": [ - { - "type": "instrinct", - "name": "Object" - } - ] - } - ] - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 323, - "character": 26 - } - ] - }, - { - "id": 8452, - "name": "_getHttpEventSteam", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8453, - "name": "_getHttpEventSteam", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8454, - "name": "uf", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "UploadFile", - "id": 8376 - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "reference", - "name": "HttpEvent", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 335, - "character": 20 - } - ] - }, - { - "id": 8447, - "name": "_numFilesValid", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8448, - "name": "_numFilesValid", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 317, - "character": 16 - } - ] - }, - { - "id": 8431, - "name": "anyFiles", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8432, - "name": "anyFiles", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 286, - "character": 10 - } - ] - }, - { - "id": 8425, - "name": "deleteFile", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8426, - "name": "deleteFile", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8427, - "name": "uf", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "UploadFile", - "id": 8376 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 269, - "character": 12 - } - ] - }, - { - "id": 8419, - "name": "doUpload", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8420, - "name": "doUpload", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8421, - "name": "ufs", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "isArray": true, - "name": "UploadFile", - "id": 8376 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 214, - "character": 10 - } - ] - }, - { - "id": 8443, - "name": "emit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8444, - "name": "emit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 309, - "character": 6 - } - ] - }, - { - "id": 8445, - "name": "maxFilesErrorMessage", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8446, - "name": "maxFilesErrorMessage", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 313, - "character": 22 - } - ] - }, - { - "id": 8422, - "name": "onCloseClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8423, - "name": "onCloseClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8424, - "name": "uf", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "UploadFile", - "id": 8376 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 259, - "character": 14 - } - ] - }, - { - "id": 8411, - "name": "onFilesChange", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8412, - "name": "onFilesChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8413, - "name": "files", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "FileList" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 162, - "character": 15 - } - ] - }, - { - "id": 8399, - "name": "registerOnChange", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8400, - "name": "registerOnChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8401, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 141, - "character": 18 - } - ] - }, - { - "id": 8402, - "name": "registerOnTouched", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8403, - "name": "registerOnTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8404, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 145, - "character": 19 - } - ] - }, - { - "id": 8428, - "name": "removeFileFromList", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8429, - "name": "removeFileFromList", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8430, - "name": "uf", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "UploadFile", - "id": 8376 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 278, - "character": 20 - } - ] - }, - { - "id": 8405, - "name": "setDisabledState", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8406, - "name": "setDisabledState", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8407, - "name": "disabled", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 149, - "character": 18 - } - ] - }, - { - "id": 8441, - "name": "shouldAllowMoreFiles", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8442, - "name": "shouldAllowMoreFiles", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 302, - "character": 22 - } - ] - }, - { - "id": 8439, - "name": "shouldShowDropTarget", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8440, - "name": "shouldShowDropTarget", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 298, - "character": 22 - } - ] - }, - { - "id": 8436, - "name": "shouldShowError", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8437, - "name": "shouldShowError", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8438, - "name": "uf", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "UploadFile", - "id": 8376 - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 294, - "character": 17 - } - ] - }, - { - "id": 8433, - "name": "shouldShowProgressBar", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8434, - "name": "shouldShowProgressBar", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8435, - "name": "uf", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "UploadFile", - "id": 8376 - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 290, - "character": 23 - } - ] - }, - { - "id": 8414, - "name": "startUpload", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8415, - "name": "startUpload", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 196, - "character": 13 - } - ] - }, - { - "id": 8416, - "name": "validateFiles", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8417, - "name": "validateFiles", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8418, - "name": "ufs", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "isArray": true, - "name": "UploadFile", - "id": 8376 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 200, - "character": 15 - } - ] - }, - { - "id": 8408, - "name": "writeValue", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8409, - "name": "writeValue", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8410, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "instrinct", - "name": "null" - }, - { - "type": "instrinct", - "name": "undefined" - }, - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 153, - "character": 12 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 8395 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 8391, - 8384, - 8381, - 8390, - 8388, - 8394, - 8396, - 8386, - 8382, - 8387, - 8392, - 8393, - 8385, - 8389, - 8383, - 8380 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8455, - 8449, - 8452, - 8447, - 8431, - 8425, - 8419, - 8443, - 8445, - 8422, - 8411, - 8399, - 8402, - 8428, - 8405, - 8441, - 8439, - 8436, - 8433, - 8414, - 8416, - 8408 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 73, - "character": 31 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "ControlValueAccessor" - } - ] - }, - { - "id": 8370, - "name": "Upload", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 8375, - "name": "error", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true, - "isOptional": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 28, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8372, - "name": "progress", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 25, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 8374, - "name": "request", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 27, - "character": 16 - } - ], - "type": { - "type": "reference", - "name": "HttpRequest", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 8373, - "name": "status", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 26, - "character": 15 - } - ], - "type": { - "type": "reference", - "name": "UploadStatus", - "id": 8365 - }, - "defaultValue": " UploadStatus.Initial" - }, - { - "id": 8371, - "name": "subscription", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 24, - "character": 21 - } - ], - "type": { - "type": "reference", - "name": "Subscription" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8375, - 8372, - 8374, - 8373, - 8371 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 23, - "character": 19 - } - ] - }, - { - "id": 8376, - "name": "UploadFile", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 8377, - "name": "file", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 32, - "character": 13 - } - ], - "type": { - "type": "reference", - "name": "File" - } - }, - { - "id": 8378, - "name": "upload", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 33, - "character": 15 - } - ], - "type": { - "type": "reference", - "name": "Upload", - "id": 8370 - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8377, - 8378 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 31, - "character": 23 - } - ] - }, - { - "id": 8461, - "name": "DeleteRequestGenerator", - "kind": 4194304, - "kindString": "Type alias", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 13, - "character": 34 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 8462, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 8463, - "name": "__call", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8464, - "name": "uf", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "UploadFile", - "id": 8376 - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "HttpRequest", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "reference", - "name": "HttpRequest", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - ] - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 13, - "character": 36 - } - ] - } - } - }, - { - "id": 8457, - "name": "RequestGenerator", - "kind": 4194304, - "kindString": "Type alias", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 11, - "character": 28 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 8458, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 8459, - "name": "__call", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8460, - "name": "file", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "File" - } - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "HttpRequest", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "reference", - "name": "HttpRequest", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - ] - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 11, - "character": 30 - } - ] - } - } - }, - { - "id": 8465, - "name": "toArray", - "kind": 64, - "kindString": "Function", - "flags": {}, - "signatures": [ - { - "id": 8466, - "name": "toArray", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8467, - "name": "list", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 36, - "character": 16 - } - ] - }, - { - "id": 8468, - "name": "VALUE_ACCESSOR", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 8471, - "name": "multi", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 43, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 8469, - "name": "provide", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 41, - "character": 9 - } - ], - "type": { - "type": "reference", - "name": "InjectionToken", - "typeArguments": [ - { - "type": "reference", - "name": "ControlValueAccessor" - } - ] - }, - "defaultValue": " NG_VALUE_ACCESSOR" - }, - { - "id": 8470, - "name": "useExisting", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 42, - "character": 13 - } - ], - "type": { - "type": "reference", - "name": "Type", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " forwardRef(() => SamUploadComponent)" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 8471, - 8469, - 8470 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 40, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Modules", - "kind": 2, - "children": [ - 8472 - ] - }, - { - "title": "Enumerations", - "kind": 4, - "children": [ - 8365 - ] - }, - { - "title": "Classes", - "kind": 128, - "children": [ - 8379, - 8370, - 8376 - ] - }, - { - "title": "Type aliases", - "kind": 4194304, - "children": [ - 8461, - 8457 - ] - }, - { - "title": "Functions", - "kind": 64, - "children": [ - 8465 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 8468 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/components/upload/upload.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6377, - "name": "\"src/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", - "children": [ - { - "id": 6378, - "name": "SamClickOutsideDirective", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The directive can detect whether a click is made inside\nthe target" - }, - "decorators": [ - { - "name": "Directive", - "type": { - "type": "reference", - "name": "Directive" - }, - "arguments": { - "obj": "{\n selector: '[sam-click-outside]'\n}" - } - } - ], - "children": [ - { - "id": 6380, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6382, - "name": "new SamClickOutsideDirective", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6383, - "name": "_elementRef", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ElementRef" - } - } - ], - "type": { - "type": "reference", - "name": "SamClickOutsideDirective", - "id": 6378 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", - "line": 20, - "character": 46 - } - ] - }, - { - "id": 6381, - "name": "_elementRef", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", - "line": 22, - "character": 33 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 6379, - "name": "clickOutside", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Event emitted when clicked outside the target" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", - "line": 20, - "character": 24 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "Object" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 6384, - "name": "onClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'document:click'", - "args": "['$event.target']" - } - } - ], - "signatures": [ - { - "id": 6385, - "name": "onClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6386, - "name": "targetElement", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", - "line": 25, - "character": 16 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6380 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6381, - 6379 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6384 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", - "line": 16, - "character": 37 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6378 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/click-outside/click-outside.directive.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6449, - "name": "\"src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "children": [ - { - "id": 6450, - "name": "DragState", - "kind": 4, - "kindString": "Enumeration", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 6452, - "name": "DraggingInTarget", - "kind": 16, - "kindString": "Enumeration member", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 11, - "character": 18 - } - ] - }, - { - "id": 6453, - "name": "DraggingOutsideTarget", - "kind": 16, - "kindString": "Enumeration member", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 12, - "character": 23 - } - ] - }, - { - "id": 6451, - "name": "NotDragging", - "kind": 16, - "kindString": "Enumeration member", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 10, - "character": 13 - } - ] - } - ], - "groups": [ - { - "title": "Enumeration members", - "kind": 16, - "children": [ - 6452, - 6453, - 6451 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 9, - "character": 21 - } - ] - }, - { - "id": 6454, - "name": "SamDragDropDirective", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Directive", - "type": { - "type": "reference", - "name": "Directive" - }, - "arguments": { - "obj": "{\n selector: '[sam-drag-drop]',\n}" - } - } - ], - "children": [ - { - "id": 6459, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6461, - "name": "new SamDragDropDirective", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6462, - "name": "_elementRef", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ElementRef" - } - } - ], - "type": { - "type": "reference", - "name": "SamDragDropDirective", - "id": 6454 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 36, - "character": 72 - } - ] - }, - { - "id": 6460, - "name": "_elementRef", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 38, - "character": 33 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 6455, - "name": "disabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Disables the effect" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 22, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 6456, - "name": "dragState", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the current drag state ('NotDragging', 'DraggingInTarget',\n'DraggingOutsideTarget')" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 27, - "character": 27 - } - ], - "type": { - "type": "reference", - "name": "DragState", - "id": 6450 - }, - "defaultValue": " DragState.NotDragging" - }, - { - "id": 6457, - "name": "dragStateChange", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Event emitter for drag state changes" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 31, - "character": 34 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "reference", - "name": "DragState", - "id": 6450 - } - ] - }, - "defaultValue": "\n new EventEmitter()" - }, - { - "id": 6458, - "name": "dropEvent", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Emitter for drop events" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 36, - "character": 28 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "reference", - "isArray": true, - "name": "File" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 6466, - "name": "_eventHasFiles", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6467, - "name": "_eventHasFiles", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6468, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 44, - "character": 16 - } - ] - }, - { - "id": 6463, - "name": "_eventIsInTarget", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6464, - "name": "_eventIsInTarget", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6465, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 40, - "character": 18 - } - ] - }, - { - "id": 6469, - "name": "_eventIsInTargetWithFiles", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6470, - "name": "_eventIsInTargetWithFiles", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6471, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DragEvent" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 50, - "character": 27 - } - ] - }, - { - "id": 6472, - "name": "_updateDragState", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6473, - "name": "_updateDragState", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6474, - "name": "dragState", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DragState", - "id": 6450 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 54, - "character": 18 - } - ] - }, - { - "id": 6478, - "name": "onWindowDragOver", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'window:dragover'", - "args": "['$event']" - } - } - ], - "signatures": [ - { - "id": 6479, - "name": "onWindowDragOver", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6480, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 77, - "character": 70 - } - ] - }, - { - "id": 6481, - "name": "onWindowDragend", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'window:mouseout'" - } - } - ], - "signatures": [ - { - "id": 6482, - "name": "onWindowDragend", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6483, - "name": "$event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 97, - "character": 57 - } - ] - }, - { - "id": 6475, - "name": "onWindowDrop", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'window:drop'", - "args": "['$event']" - } - } - ], - "signatures": [ - { - "id": 6476, - "name": "onWindowDrop", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6477, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 59, - "character": 62 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6459 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6460, - 6455, - 6456, - 6457, - 6458 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6466, - 6463, - 6469, - 6472, - 6478, - 6481, - 6475 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 18, - "character": 33 - } - ] - } - ], - "groups": [ - { - "title": "Enumerations", - "kind": 4, - "children": [ - 6450 - ] - }, - { - "title": "Classes", - "kind": 128, - "children": [ - 6454 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/drag-drop/drag-drop.directive.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6436, - "name": "\"src/sam-ui-elements/src/ui-kit/directives/focus/focus.directive\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", - "children": [ - { - "id": 6437, - "name": "SamFocusDirective", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Directive", - "type": { - "type": "reference", - "name": "Directive" - }, - "arguments": { - "obj": "{\n selector: '[sam-focus]', \n}" - } - } - ], - "children": [ - { - "id": 6439, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6441, - "name": "new SamFocusDirective", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6442, - "name": "_elementRef", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ElementRef" - } - } - ], - "type": { - "type": "reference", - "name": "SamFocusDirective", - "id": 6437 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", - "line": 16, - "character": 39 - } - ] - }, - { - "id": 6440, - "name": "_elementRef", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", - "line": 18, - "character": 33 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 6438, - "name": "focus", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Event emitter for focus event" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", - "line": 16, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "Object" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 6446, - "name": "hasFocusChanged", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'document:keyup'", - "args": "['$event.target']" - } - } - ], - "signatures": [ - { - "id": 6447, - "name": "hasFocusChanged", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6448, - "name": "target", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", - "line": 30, - "character": 24 - } - ] - }, - { - "id": 6443, - "name": "onClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'document:click'", - "args": "['$event.target']" - } - } - ], - "signatures": [ - { - "id": 6444, - "name": "onClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6445, - "name": "targetElement", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", - "line": 21, - "character": 16 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6439 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6440, - 6438 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6446, - 6443 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", - "line": 12, - "character": 30 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6437 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/focus/focus.directive.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9543, - "name": "\"src/sam-ui-elements/src/ui-kit/directives/focus/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/directives/focus/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/focus/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6484, - "name": "\"src/sam-ui-elements/src/ui-kit/directives/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/directives/index.ts", - "children": [ - { - "id": 6485, - "name": "SamDirectivesModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [ CommonModule ],\n declarations: [\n SamStickyComponent,\n SamClickOutsideDirective,\n SamTabOutsideDirective,\n SamFocusDirective,\n SamDragDropDirective,\n ],\n exports: [\n SamStickyComponent,\n SamClickOutsideDirective,\n SamTabOutsideDirective,\n SamFocusDirective,\n SamDragDropDirective,\n ]\n\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/index.ts", - "line": 30, - "character": 32 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6485 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6387, - "name": "\"src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "children": [ - { - "id": 6388, - "name": "SamStickyComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The sam-sticky directive is made to help nav bar stick on the page" - }, - "decorators": [ - { - "name": "Directive", - "type": { - "type": "reference", - "name": "Directive" - }, - "arguments": { - "obj": "{ selector: '[sam-sticky]' }" - } - } - ], - "children": [ - { - "id": 6400, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6402, - "name": "new SamStickyComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6403, - "name": "el", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ElementRef" - } - } - ], - "type": { - "type": "reference", - "name": "SamStickyComponent", - "id": 6388 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 48, - "character": 3 - } - ] - }, - { - "id": 6390, - "name": "container", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the container target class" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 24, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6391, - "name": "diffLimit", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 28, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "100" - }, - { - "id": 6401, - "name": "el", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 50, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 6393, - "name": "elemWidth", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 32, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 6389, - "name": "limit", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the minimum pixel width for sticky to trigger on." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 20, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 6392, - "name": "stickyTop", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 30, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "10" - }, - { - "id": 6424, - "name": "adjustStickyPos", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6425, - "name": "adjustStickyPos", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 141, - "character": 17 - } - ] - }, - { - "id": 6422, - "name": "findDirectChild", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6423, - "name": "findDirectChild", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 124, - "character": 17 - } - ] - }, - { - "id": 6413, - "name": "getDocHeight", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6414, - "name": "getDocHeight", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 78, - "character": 14 - } - ] - }, - { - "id": 6417, - "name": "getElemDistanceToTop", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6418, - "name": "getElemDistanceToTop", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Get the distance from the element to the top of the document" - }, - "parameters": [ - { - "id": 6419, - "name": "elem", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 96, - "character": 22 - } - ] - }, - { - "id": 6415, - "name": "getScrollTop", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6416, - "name": "getScrollTop", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 87, - "character": 14 - } - ] - }, - { - "id": 6420, - "name": "isTallestAmongSiblings", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6421, - "name": "isTallestAmongSiblings", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 108, - "character": 24 - } - ] - }, - { - "id": 6408, - "name": "makeSticky", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6409, - "name": "makeSticky", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 64, - "character": 12 - } - ] - }, - { - "id": 6406, - "name": "ngAfterViewChecked", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6407, - "name": "ngAfterViewChecked", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 58, - "character": 20 - } - ] - }, - { - "id": 6404, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6405, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 52, - "character": 10 - } - ] - }, - { - "id": 6394, - "name": "resize", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'window:resize'", - "args": "['$event']" - } - } - ], - "signatures": [ - { - "id": 6395, - "name": "resize", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6396, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 35, - "character": 8 - } - ] - }, - { - "id": 6397, - "name": "scroll", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'window:scroll'", - "args": "['$event']" - } - } - ], - "signatures": [ - { - "id": 6398, - "name": "scroll", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6399, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 46, - "character": 8 - } - ] - }, - { - "id": 6410, - "name": "setPosition", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6411, - "name": "setPosition", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6412, - "name": "position", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 74, - "character": 13 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6400 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6390, - 6391, - 6401, - 6393, - 6389, - 6392 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6424, - 6422, - 6413, - 6417, - 6415, - 6420, - 6408, - 6406, - 6404, - 6394, - 6397, - 6410 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 13, - "character": 31 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6388 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/sticky/sticky.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9544, - "name": "\"src/sam-ui-elements/src/ui-kit/directives/tab-outside/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/directives/tab-outside/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/tab-outside/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6426, - "name": "\"src/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", - "children": [ - { - "id": 6427, - "name": "SamTabOutsideDirective", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Directive", - "type": { - "type": "reference", - "name": "Directive" - }, - "arguments": { - "obj": "{\n selector: '[sam-tab-outside]'\n}" - } - } - ], - "children": [ - { - "id": 6429, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6431, - "name": "new SamTabOutsideDirective", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6432, - "name": "_elementRef", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ElementRef" - } - } - ], - "type": { - "type": "reference", - "name": "SamTabOutsideDirective", - "id": 6427 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", - "line": 17, - "character": 63 - } - ] - }, - { - "id": 6430, - "name": "_elementRef", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", - "line": 19, - "character": 33 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 6428, - "name": "tabOutside", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emitter for tabOutside event" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", - "line": 17, - "character": 22 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 6433, - "name": "hasFocusChanged", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'document:keyup'", - "args": "['$event.target']" - } - } - ], - "signatures": [ - { - "id": 6434, - "name": "hasFocusChanged", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6435, - "name": "target", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", - "line": 22, - "character": 24 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6429 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6430, - 6428 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6433 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", - "line": 13, - "character": 35 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6427 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/directives/tab-outside/taboutside.directive.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8064, - "name": "\"src/sam-ui-elements/src/ui-kit/dom-helpers\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/dom-helpers.ts", - "children": [ - { - "id": 8065, - "name": "ScrollHelpers", - "kind": 64, - "kindString": "Function", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8066, - "name": "ScrollHelpers", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8067, - "name": "window", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 8068, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 8069, - "name": "disableScroll", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/dom-helpers.ts", - "line": 50, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "disableScroll" - }, - "defaultValue": " disableScroll" - }, - { - "id": 8070, - "name": "enableScroll", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/dom-helpers.ts", - "line": 51, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "enableScroll" - }, - "defaultValue": " enableScroll" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 8069, - 8070 - ] - } - ] - } - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/dom-helpers.ts", - "line": 1, - "character": 26 - } - ] - } - ], - "groups": [ - { - "title": "Functions", - "kind": 64, - "children": [ - 8065 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/dom-helpers.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7877, - "name": "\"src/sam-ui-elements/src/ui-kit/elements/button/button.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "children": [ - { - "id": 7878, - "name": "SamButtonComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "The component generates a button for user interaction" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-button',\n template: `\n \n {{buttonText}}\n `,\n}" - } - } - ], - "children": [ - { - "id": 7885, - "name": "buttonClass", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the button css class (Deprecated)" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 55, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 7883, - "name": "buttonDisabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Disables the button" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 44, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 7879, - "name": "buttonId", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the id that will assign to the button element" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 23, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7882, - "name": "buttonSize", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the button size" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 39, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7880, - "name": "buttonText", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the text content that will show on the button" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 28, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7881, - "name": "buttonType", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the type of the button\n(default,alt,secondary,outline,gray,disabled,big)" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 34, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7884, - "name": "onClick", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emmits event on click" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 49, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 7895, - "name": "btnClass", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 7896, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "reference", - "name": "String" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 71, - "character": 14 - } - ] - }, - { - "id": 7897, - "name": "click", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7898, - "name": "click", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7899, - "name": "$event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 89, - "character": 7 - } - ] - }, - { - "id": 7886, - "name": "btnClassMap", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isPrivate": true, - "isExported": true - }, - "children": [ - { - "id": 7887, - "name": "default", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 60, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"primary\"" - }, - { - "id": 7894, - "name": "large", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 68, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"large\"" - }, - { - "id": 7891, - "name": "negative", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 64, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"negative\"" - }, - { - "id": 7888, - "name": "primary", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 61, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"primary\"" - }, - { - "id": 7889, - "name": "secondary", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 62, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"secondary\"" - }, - { - "id": 7893, - "name": "small", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 67, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"tiny\"" - }, - { - "id": 7892, - "name": "submit", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 65, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"primary\"" - }, - { - "id": 7890, - "name": "tertiary", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 63, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"basic blue\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7887, - 7894, - 7891, - 7888, - 7889, - 7893, - 7892, - 7890 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 58, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 7885, - 7883, - 7879, - 7882, - 7880, - 7881, - 7884 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 7895 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 7897 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 7886 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 19, - "character": 31 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 7878 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/button.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7900, - "name": "\"src/sam-ui-elements/src/ui-kit/elements/button/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/elements/button/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/button/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7901, - "name": "\"src/sam-ui-elements/src/ui-kit/elements/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/elements/index.ts", - "children": [ - { - "id": 7902, - "name": "SamElementsModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n CommonModule\n ],\n declarations: [\n SamButtonComponent\n ],\n exports: [\n SamButtonComponent\n ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/index.ts", - "line": 17, - "character": 30 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 7902 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/elements/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8890, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/box/box.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", - "children": [ - { - "id": 8891, - "name": "SamBoxComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-box\",\n template: `\n
    \n \n
    \n `\n}" - } - } - ], - "children": [ - { - "id": 8892, - "name": "type", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Options:\ndefault | primary | outline" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", - "line": 16, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8892 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", - "line": 11, - "character": 28 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8891 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/box/box.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8893, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/box/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/box/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/box/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8894, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/container/container.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", - "children": [ - { - "id": 8895, - "name": "SamContainerComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-container\",\n template: `\n \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n \n `\n}" - } - } - ], - "children": [ - { - "id": 8896, - "name": "gridLines", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Shows grid lines" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", - "line": 23, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8896 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", - "line": 19, - "character": 34 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8895 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/container/container.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8897, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/container/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/container/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/container/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8898, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/heading/heading.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "children": [ - { - "id": 8899, - "name": "SamHeadingComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-heading\",\n template: `\n \n

    \n
    {{ sup }}
    \n \n {{ text }}\n

    \n

    \n \n {{ text }}\n

    \n

    \n \n {{ text }}\n

    \n

    \n \n {{ text }}\n

    \n

    \n \n {{ text }}\n

    \n
    \n `\n}" - } - } - ], - "children": [ - { - "id": 8906, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8907, - "name": "new SamHeadingComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "type": { - "type": "reference", - "name": "SamHeadingComponent", - "id": 8899 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 39, - "character": 26 - } - ] - }, - { - "id": 8904, - "name": "alignment", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 37, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8905, - "name": "css_classes", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 39, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 8903, - "name": "icon", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 36, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8900, - "name": "importance", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 33, - "character": 28 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8901, - "name": "sup", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 34, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8902, - "name": "text", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 35, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8908, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8909, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 43, - "character": 10 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 8906 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 8904, - 8905, - 8903, - 8900, - 8901, - 8902 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8908 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 31, - "character": 32 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8899 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/heading/heading.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8910, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/heading/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/heading/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/heading/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8911, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/icon/icon.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/icon/icon.component.ts", - "children": [ - { - "id": 8912, - "name": "SamIconComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-icon\",\n templateUrl: 'icon.template.html'\n}" - } - } - ], - "children": [ - { - "id": 8913, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/icon/icon.component.ts", - "line": 9, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8913 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/icon/icon.component.ts", - "line": 7, - "character": 29 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8912 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/icon/icon.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8914, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/icon/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/icon/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/icon/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9081, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/index.ts", - "children": [ - { - "id": 9082, - "name": "SamExperimentalModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n CommonModule,\n RouterModule,\n SamComponentsModule,\n HttpClientModule\n ],\n declarations: [\n SamBoxComponent,\n SamContainerComponent,\n SamHeadingComponent,\n SamIconComponent,\n SamListComponent,\n SamMasterPageComponent,\n SamPageComponent,\n SamSearchComponent,\n SamSidebarComponent,\n SamYoutubeComponent\n ],\n exports: [\n SamBoxComponent,\n SamContainerComponent,\n SamHeadingComponent,\n SamIconComponent,\n SamListComponent,\n SamMasterPageComponent,\n SamPageComponent,\n SamSearchComponent,\n SamSidebarComponent,\n SamYoutubeComponent\n ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/index.ts", - "line": 51, - "character": 34 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9082 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8921, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/list/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/list/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/list/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8915, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/list/list.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", - "children": [ - { - "id": 8916, - "name": "SamListComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-list\",\n animations: [\n trigger('listAnimation', [\n state('void', style({\n opacity: 0 \n })),\n state('*', style({\n opacity: 1 \n })),\n transition('* => *', [\n query(':enter', style({ opacity: 0 }), { optional: true}),\n query(':enter', stagger('100ms', [\n animate('1s', style({ opacity: 1 }))\n ]), { optional: true })\n ])\n ])\n ],\n template: `\n \n `\n}" - } - } - ], - "children": [ - { - "id": 8919, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8920, - "name": "new SamListComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "type": { - "type": "reference", - "name": "SamListComponent", - "id": 8916 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", - "line": 40, - "character": 38 - } - ] - }, - { - "id": 8917, - "name": "items", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", - "line": 39, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8918, - "name": "orientation", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", - "line": 40, - "character": 29 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 8919 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 8917, - 8918 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", - "line": 37, - "character": 29 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8916 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/list/list.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8971, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/master-page/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/master-page/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8935, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "children": [ - { - "id": 8936, - "name": "SamMasterPageComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-master-page\",\n templateUrl: 'master-page.template.html',\n animations: [\n trigger('drawerState', [\n state('close', style({\n display: 'none',\n overflow: 'hidden',\n height: '0'\n })),\n state('open', style({\n display: 'block',\n height: '*'\n })),\n transition('close => open', [\n query(':self',[\n animate('250ms cubic-bezier(0.175, 0.885, 0.32, 1.275)'),\n ]),\n query('@search', [\n animateChild()\n ])\n ]),\n transition('open => close', animate('200ms ease-out'))\n ]),\n trigger('search', [\n transition('* => *', [\n query('.search', style({ \n opacity: 0,\n transform: 'translateY(2px)' \n })),\n query('.search', [\n animate('300ms ease-in', style({\n opacity: 1,\n transform: 'translateY(0px)'\n }))\n ])\n ])\n ])\n ],\n providers: [SamMasterPageService]\n}" - } - } - ], - "children": [ - { - "id": 8941, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8946, - "name": "new SamMasterPageComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 8947, - "name": "masterpageservice", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamMasterPageService", - "id": 8923 - } - }, - { - "id": 8948, - "name": "router", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Router" - } - }, - { - "id": 8949, - "name": "route", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ActivatedRoute" - } - }, - { - "id": 8950, - "name": "renderer", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Renderer2" - } - } - ], - "type": { - "type": "reference", - "name": "SamMasterPageComponent", - "id": 8936 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 72, - "character": 43 - } - ] - }, - { - "id": 8957, - "name": "drawerState", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 105, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"open\"" - }, - { - "id": 8942, - "name": "masterpageservice", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 75, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "SamMasterPageService", - "id": 8923 - } - }, - { - "id": 8940, - "name": "modalOutletName", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 72, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"master-modal\"" - }, - { - "id": 8945, - "name": "renderer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 78, - "character": 20 - } - ], - "type": { - "type": "reference", - "name": "Renderer2" - } - }, - { - "id": 8944, - "name": "route", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 77, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "ActivatedRoute" - } - }, - { - "id": 8943, - "name": "router", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 76, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "Router" - } - }, - { - "id": 8960, - "name": "searchInputFocus", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 111, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8967, - "name": "docLink", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 8968, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 127, - "character": 15 - } - ] - }, - { - "id": 8969, - "name": "settingsLink", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 8970, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 131, - "character": 20 - } - ] - }, - { - "id": 8951, - "name": "findActiveOutlets", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8952, - "name": "findActiveOutlets", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8953, - "name": "activatedRoutes", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 92, - "character": 21 - } - ] - }, - { - "id": 8954, - "name": "modalActive", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8955, - "name": "modalActive", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8956, - "name": "activeOutlets", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 100, - "character": 15 - } - ] - }, - { - "id": 8937, - "name": "onClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'click'", - "args": "['$event']" - } - } - ], - "signatures": [ - { - "id": 8938, - "name": "onClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8939, - "name": "$event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 66, - "character": 44 - } - ] - }, - { - "id": 8961, - "name": "searchFocus", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8962, - "name": "searchFocus", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8963, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 112, - "character": 15 - } - ] - }, - { - "id": 8964, - "name": "selectedDomain", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8965, - "name": "selectedDomain", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8966, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 123, - "character": 18 - } - ] - }, - { - "id": 8958, - "name": "toggleDrawer", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8959, - "name": "toggleDrawer", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 106, - "character": 16 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 8941 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 8957, - 8942, - 8940, - 8945, - 8944, - 8943, - 8960 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 8967, - 8969 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8951, - 8954, - 8937, - 8961, - 8964, - 8958 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 64, - "character": 35 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8936 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8922, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "children": [ - { - "id": 8923, - "name": "SamMasterPageService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Injectable", - "type": { - "type": "reference", - "name": "Injectable" - }, - "arguments": {} - } - ], - "children": [ - { - "id": 8924, - "name": "_docLink", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 6, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8929, - "name": "_settingsLink", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 14, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8934, - "name": "selectedDomain", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 22, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"All Award Data\"" - }, - { - "id": 8925, - "name": "docLink", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 8928, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "setSignature": [ - { - "id": 8926, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", - "flags": {}, - "parameters": [ - { - "id": 8927, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 7, - "character": 13 - }, - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 10, - "character": 13 - } - ] - }, - { - "id": 8930, - "name": "settingsLink", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 8933, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "setSignature": [ - { - "id": 8931, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", - "flags": {}, - "parameters": [ - { - "id": 8932, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 15, - "character": 18 - }, - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 18, - "character": 18 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8924, - 8929, - 8934 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 8925, - 8930 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 4, - "character": 33 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8923 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/master-page/master-page.service.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8997, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/page/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/page/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8979, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/page/page.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "children": [ - { - "id": 8980, - "name": "SamPageComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-page\",\n templateUrl: 'page.template.html',\n providers: [SamPageService]\n}" - } - } - ], - "children": [ - { - "id": 8988, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8990, - "name": "new SamPageComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 8991, - "name": "pageService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamPageService", - "id": 8973 - } - } - ], - "type": { - "type": "reference", - "name": "SamPageComponent", - "id": 8980 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 18, - "character": 3 - } - ] - }, - { - "id": 8984, - "name": "breadcrumbs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 14, - "character": 29 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8989, - "name": "pageService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 19, - "character": 33 - } - ], - "type": { - "type": "reference", - "name": "SamPageService", - "id": 8973 - } - }, - { - "id": 8983, - "name": "subtitle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 13, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8981, - "name": "suptitle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 11, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8982, - "name": "title", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 12, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8995, - "name": "sidebar", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 8996, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 25, - "character": 13 - } - ] - }, - { - "id": 8992, - "name": "breadcrumbHandler", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8993, - "name": "breadcrumbHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8994, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 21, - "character": 19 - } - ] - }, - { - "id": 8985, - "name": "onClicked", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'click'", - "args": "['$event']" - } - } - ], - "signatures": [ - { - "id": 8986, - "name": "onClicked", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8987, - "name": "$event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 16, - "character": 46 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 8988 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 8984, - 8989, - 8983, - 8981, - 8982 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 8995 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8992, - 8985 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 9, - "character": 29 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8980 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8972, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/page/page.service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/page/page.service.ts", - "children": [ - { - "id": 8973, - "name": "SamPageService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Injectable", - "type": { - "type": "reference", - "name": "Injectable" - }, - "arguments": {} - } - ], - "children": [ - { - "id": 8974, - "name": "_sidebar", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.service.ts", - "line": 5, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 8975, - "name": "sidebar", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 8978, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "setSignature": [ - { - "id": 8976, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", - "flags": {}, - "parameters": [ - { - "id": 8977, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.service.ts", - "line": 6, - "character": 13 - }, - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.service.ts", - "line": 9, - "character": 13 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8974 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 8975 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.service.ts", - "line": 4, - "character": 27 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8973 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/page/page.service.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9056, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/search/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/search/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9019, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/search/search.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "children": [ - { - "id": 9020, - "name": "SamSearchComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-search\",\n templateUrl: 'search.template.html',\n animations: [\n trigger('search', [\n transition('* => *', [\n query('button', [\n animate('300ms ease-in', keyframes([\n style({opacity: 0, offset: 0}),\n style({opacity: 1, offset: 1})\n ]))\n ], { optional: true })\n ])\n ]),\n trigger('results', [\n transition('* => *', [\n query(':enter', style({ opacity: 0 }), { optional: true}),\n query(':enter', stagger('50ms', [\n animate('50ms ease-in', style({ opacity: 1 }))\n ]), { optional: true })\n ])\n ])\n ],\n providers: [PrototypeSearchService]\n}" - } - } - ], - "children": [ - { - "id": 9024, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9027, - "name": "new SamSearchComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9028, - "name": "masterpageservice", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamMasterPageService", - "id": 8923 - } - }, - { - "id": 9029, - "name": "prototypedata", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "PrototypeSearchService", - "id": 8999 - } - } - ], - "type": { - "type": "reference", - "name": "SamSearchComponent", - "id": 9020 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 64, - "character": 67 - } - ] - }, - { - "id": 9022, - "name": "focus", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 63, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 9021, - "name": "inputEl", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'searchInput'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 62, - "character": 35 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 9030, - "name": "loading", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 71, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 9025, - "name": "masterpageservice", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 67, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "SamMasterPageService", - "id": 8923 - } - }, - { - "id": 9026, - "name": "prototypedata", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 68, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "PrototypeSearchService", - "id": 8999 - } - }, - { - "id": 9031, - "name": "results", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 72, - "character": 9 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " []" - }, - { - "id": 9050, - "name": "resultsWidth", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 129, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 9023, - "name": "selectedDomain", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 64, - "character": 26 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 9049, - "name": "selectedOption", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 128, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9042, - "name": "tabSearch", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 109, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 9037, - "name": "closeAutocomplete", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9038, - "name": "closeAutocomplete", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9039, - "name": "name", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 100, - "character": 19 - } - ] - }, - { - "id": 9046, - "name": "inputBackspace", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9047, - "name": "inputBackspace", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9048, - "name": "$event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 117, - "character": 16 - } - ] - }, - { - "id": 9040, - "name": "inputFocus", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9041, - "name": "inputFocus", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 105, - "character": 12 - } - ] - }, - { - "id": 9043, - "name": "inputTab", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9044, - "name": "inputTab", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9045, - "name": "$event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 110, - "character": 10 - } - ] - }, - { - "id": 9034, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9035, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9036, - "name": "c", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 94, - "character": 13 - } - ] - }, - { - "id": 9032, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9033, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 74, - "character": 10 - } - ] - }, - { - "id": 9051, - "name": "onSelectChange", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9052, - "name": "onSelectChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9053, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 130, - "character": 16 - } - ] - }, - { - "id": 9054, - "name": "updateResultsWidth", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9055, - "name": "updateResultsWidth", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 138, - "character": 20 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9024 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9022, - 9021, - 9030, - 9025, - 9026, - 9031, - 9050, - 9023, - 9049, - 9042 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 9037, - 9046, - 9040, - 9043, - 9034, - 9032, - 9051, - 9054 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 60, - "character": 31 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9020 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8998, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/search/search.service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "children": [ - { - "id": 8999, - "name": "PrototypeSearchService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Injectable", - "type": { - "type": "reference", - "name": "Injectable" - }, - "arguments": {} - } - ], - "children": [ - { - "id": 9005, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9007, - "name": "new PrototypeSearchService", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9008, - "name": "http", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "HttpClient" - } - } - ], - "type": { - "type": "reference", - "name": "PrototypeSearchService", - "id": 8999 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 84, - "character": 3 - } - ] - }, - { - "id": 9006, - "name": "http", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 87, - "character": 16 - } - ], - "type": { - "type": "reference", - "name": "HttpClient" - } - }, - { - "id": 9000, - "name": "results", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 15, - "character": 9 - } - ], - "type": { - "type": "reflection", - "isArray": true, - "declaration": { - "id": 9001, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9003, - "name": "domain", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 17, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9002, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 16, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9004, - "name": "title", - "kind": 32, - "kindString": "Variable", - "flags": { - "isOptional": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 18, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9003, - 9002, - 9004 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 15, - "character": 10 - } - ] - } - }, - "defaultValue": " [\n {\n \"name\": \"Department of Education\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Energy\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of the Treasury\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Emergency Services and Public Protection\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Education, South Carolina\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Corrections Massachusetts\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Assistive and Rehabilitative Services\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Health Minnesota\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Human Resources\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of General Services\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"Department of Off Street Parking of the city of Miami\",\n \"domain\": \"Federal Hierarchy\"\n },\n {\n \"name\": \"16.829\",\n \"title\": \"Juvenile Justice Education Collaboration Assistance\",\n \"domain\": \"Assistance Listing\"\n },\n {\n \"name\": \"16.828\",\n \"title\": \"Swift, Certain, and Fair (SCF) Sanctions program: Replicating the Concepts behind Project HOPE\",\n \"domain\": \"Assistance Listing\"\n },\n {\n \"name\": \"16.827\",\n \"title\": \"Justice Reinvestment Initiative\",\n \"domain\": \"Assistance Listing\"\n },\n {\n \"name\": \"Mechanical Services, Inc. Action Obligation $16.82 BPA CALL\",\n \"title\": \"Justice Reinvestment Initiative\",\n \"domain\": \"Contract Data\"\n }\n ]" - }, - { - "id": 9009, - "name": "loadData", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 9010, - "name": "loadData", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9011, - "name": "query", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9012, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9015, - "name": "description", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 116, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " description" - }, - { - "id": 9014, - "name": "domain", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 115, - "character": 16 - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "instrinct", - "name": "string" - }, - { - "type": "instrinct", - "name": "true" - }, - { - "type": "instrinct", - "name": "false" - } - ] - }, - "defaultValue": " (query.length >= 14 || item.domain === 'Assistance Listing') ? `in ${item.domain}` : false" - }, - { - "id": 9013, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 114, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " item.name" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9015, - 9014, - 9013 - ] - } - ] - } - } - ] - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 91, - "character": 17 - } - ] - }, - { - "id": 9016, - "name": "search", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9017, - "name": "search", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9018, - "name": "query", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 123, - "character": 8 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9005 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9006, - 9000 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 9009, - 9016 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 13, - "character": 35 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8999 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/search/search.service.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9065, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/sidebar/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/sidebar/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/sidebar/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9057, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/sidebar/sidebar.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/sidebar/sidebar.component.ts", - "children": [ - { - "id": 9058, - "name": "SamSidebarComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-sidebar\",\n template: ''\n}" - } - } - ], - "children": [ - { - "id": 9059, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9061, - "name": "new SamSidebarComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9062, - "name": "pageService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamPageService", - "id": 8973 - } - } - ], - "type": { - "type": "reference", - "name": "SamSidebarComponent", - "id": 9058 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/sidebar/sidebar.component.ts", - "line": 8, - "character": 51 - } - ] - }, - { - "id": 9060, - "name": "pageService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/sidebar/sidebar.component.ts", - "line": 9, - "character": 33 - } - ], - "type": { - "type": "reference", - "name": "SamPageService", - "id": 8973 - } - }, - { - "id": 9063, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9064, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/sidebar/sidebar.component.ts", - "line": 12, - "character": 10 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9059 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9060 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 9063 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/sidebar/sidebar.component.ts", - "line": 8, - "character": 32 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9058 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/sidebar/sidebar.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9080, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/youtube/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/youtube/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/youtube/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9066, - "name": "\"src/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", - "children": [ - { - "id": 9067, - "name": "SamYoutubeComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: \"sam-youtube\",\n template: `\n
    \n \n
    \n `\n}" - } - } - ], - "children": [ - { - "id": 9071, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9073, - "name": "new SamYoutubeComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 9074, - "name": "sanitizer", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "DomSanitizer" - } - } - ], - "type": { - "type": "reference", - "name": "SamYoutubeComponent", - "id": 9067 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", - "line": 20, - "character": 28 - } - ] - }, - { - "id": 9069, - "name": "YouTubeVideoUrl", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", - "line": 19, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9068, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "YouTube video id" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", - "line": 17, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 9072, - "name": "sanitizer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", - "line": 22, - "character": 31 - } - ], - "type": { - "type": "reference", - "name": "DomSanitizer" - } - }, - { - "id": 9070, - "name": "videoUrl", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", - "line": 20, - "character": 10 - } - ], - "type": { - "type": "reference", - "name": "SafeResourceUrl" - } - }, - { - "id": 9075, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9076, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", - "line": 24, - "character": 10 - } - ] - }, - { - "id": 9077, - "name": "updateVideoUrl", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 9078, - "name": "updateVideoUrl", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 9079, - "name": "id", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", - "line": 28, - "character": 16 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9071 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9069, - 9068, - 9072, - 9070 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 9075, - 9077 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", - "line": 13, - "character": 32 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9067 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/experimental/youtube/youtube.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7604, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "children": [ - { - "id": 7632, - "name": "AutocompleteCache", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 7651, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7653, - "name": "new AutocompleteCache", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 7654, - "name": "maxBytes", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "250000" - } - ], - "type": { - "type": "reference", - "name": "AutocompleteCache", - "id": 7632 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 104, - "character": 3 - } - ] - }, - { - "id": 7640, - "name": "byteSize", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 70, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 7633, - "name": "cached", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 65, - "character": 16 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 7634, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "indexSignature": [ - { - "id": 7635, - "name": "__index", - "kind": 8192, - "kindString": "Index signature", - "flags": {}, - "parameters": [ - { - "id": 7636, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Cached", - "id": 7605 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 65, - "character": 17 - } - ] - } - } - }, - { - "id": 7637, - "name": "default", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 66, - "character": 17 - } - ], - "type": { - "type": "reference", - "name": "Cached", - "id": 7605 - }, - "defaultValue": " new Cached('default')" - }, - { - "id": 7638, - "name": "history", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 67, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "string" - }, - "defaultValue": " []" - }, - { - "id": 7639, - "name": "historyTuple", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 68, - "character": 22 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "union", - "types": [ - { - "type": "instrinct", - "isArray": true, - "name": "string" - }, - { - "type": "reference", - "name": "Cached", - "id": 7605 - } - ] - } - ] - }, - "defaultValue": "\n [this.default, this.history]" - }, - { - "id": 7652, - "name": "maxBytes", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 106, - "character": 38 - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 7645, - "name": "lastAdded", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true, - "isPublic": true - }, - "getSignature": [ - { - "id": 7646, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 85, - "character": 22 - } - ] - }, - { - "id": 7643, - "name": "lastSearched", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true, - "isPublic": true - }, - "getSignature": [ - { - "id": 7644, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 76, - "character": 25 - } - ] - }, - { - "id": 7641, - "name": "totalBytes", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true, - "isPublic": true - }, - "getSignature": [ - { - "id": 7642, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 72, - "character": 23 - } - ] - }, - { - "id": 7665, - "name": "clear", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7666, - "name": "clear", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 135, - "character": 14 - } - ] - }, - { - "id": 7667, - "name": "clearAll", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7668, - "name": "clearAll", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 140, - "character": 17 - } - ] - }, - { - "id": 7655, - "name": "get", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7656, - "name": "get", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7657, - "name": "key", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 110, - "character": 12 - } - ] - }, - { - "id": 7658, - "name": "insert", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7659, - "name": "insert", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7660, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - }, - { - "id": 7661, - "name": "key", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 122, - "character": 15 - } - ] - }, - { - "id": 7669, - "name": "insertIntoCache", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 7670, - "name": "insertIntoCache", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7671, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 7672, - "name": "key", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 145, - "character": 25 - } - ] - }, - { - "id": 7676, - "name": "makeSpaceInCache", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 7677, - "name": "makeSpaceInCache", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7678, - "name": "itemSize", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 174, - "character": 26 - } - ] - }, - { - "id": 7662, - "name": "remove", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7663, - "name": "remove", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7664, - "name": "key", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 130, - "character": 15 - } - ] - }, - { - "id": 7673, - "name": "updateDefault", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 7674, - "name": "updateDefault", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7675, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 165, - "character": 23 - } - ] - }, - { - "id": 7647, - "name": "arraysEqual", - "kind": 2048, - "kindString": "Method", - "flags": { - "isStatic": true, - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7648, - "name": "arraysEqual", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7649, - "name": "arr1", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 7650, - "name": "arr2", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 94, - "character": 27 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 7651 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 7640, - 7633, - 7637, - 7638, - 7639, - 7652 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 7645, - 7643, - 7641 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 7665, - 7667, - 7655, - 7658, - 7669, - 7676, - 7662, - 7673, - 7647 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 64, - "character": 30 - } - ] - }, - { - "id": 7605, - "name": "Cached", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 7619, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7621, - "name": "new Cached", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 7622, - "name": "name", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7623, - "name": "initialValue", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - }, - "defaultValue": " []" - } - ], - "type": { - "type": "reference", - "name": "Cached", - "id": 7605 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 27, - "character": 3 - } - ] - }, - { - "id": 7607, - "name": "_lastValue", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 5, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - }, - "defaultValue": " []" - }, - { - "id": 7606, - "name": "contents", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 4, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - }, - "defaultValue": " []" - }, - { - "id": 7620, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 30, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7614, - "name": "byteSize", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true, - "isPublic": true - }, - "getSignature": [ - { - "id": 7615, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 19, - "character": 21 - } - ] - }, - { - "id": 7610, - "name": "lastValue", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true, - "isPublic": true - }, - "getSignature": [ - { - "id": 7611, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 11, - "character": 22 - } - ] - }, - { - "id": 7612, - "name": "length", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true, - "isPublic": true - }, - "getSignature": [ - { - "id": 7613, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 15, - "character": 19 - } - ] - }, - { - "id": 7608, - "name": "value", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true, - "isPublic": true - }, - "getSignature": [ - { - "id": 7609, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 7, - "character": 18 - } - ] - }, - { - "id": 7627, - "name": "clear", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7628, - "name": "clear", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 42, - "character": 14 - } - ] - }, - { - "id": 7629, - "name": "dedupe", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 7630, - "name": "dedupe", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7631, - "name": "newContents", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 47, - "character": 16 - } - ] - }, - { - "id": 7624, - "name": "insert", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7625, - "name": "insert", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7626, - "name": "val", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 35, - "character": 15 - } - ] - }, - { - "id": 7616, - "name": "countBytes", - "kind": 2048, - "kindString": "Method", - "flags": { - "isStatic": true, - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7617, - "name": "countBytes", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7618, - "name": "s", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 23, - "character": 26 - } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 7619 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 7607, - 7606, - 7620 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 7614, - 7610, - 7612, - 7608 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 7627, - 7629, - 7624, - 7616 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 3, - "character": 19 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 7632, - 7605 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-cache.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7679, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "children": [ - { - "id": 7680, - "name": "SamAutocompleteMultiselectComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-autocomplete-multiselect',\n templateUrl: 'autocomplete-multiselect.template.html',\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(\n () => SamAutocompleteMultiselectComponent\n ),\n multi: true}\n ],\n animations: [\n trigger('dropdown', [\n transition('void => *', [\n animate('.15s ease-in-out', keyframes([\n style({filter: 'blur(3px)', height: '0', opacity: '0.5', offset: 0}),\n style({filter: 'blur(0px)', height: '*', opacity: '1', offset: 1.0})\n ]))\n ]),\n transition('* => void', [\n animate('.1s ease-out', keyframes([\n style({height: '*', opacity: '1', offset: 0}),\n style({height: '0', opacity: '0', offset: 1.0})\n ]))\n ])\n ]),\n trigger('label', [\n transition('void => *', [\n animate('.15s ease-in-out', keyframes([\n style({\n transform: 'scale(0)',\n filter: 'blur(3px)',\n opacity: '0.5',\n offset: 0\n }),\n style({\n transform: 'scale(1)',\n filter: 'blur(0px)',\n opacity: '1',\n offset: 1.0\n })\n ]))\n ]),\n transition('* => void', [\n animate('.1s ease-out', keyframes([\n style({filter: 'blur(0px)', opacity: '1', offset: 0}),\n style({filter: 'blur(3px)', opacity: '0', offset: 1.0})\n ]))\n ])\n ])\n ]\n}" - } - } - ], - "children": [ - { - "id": 7721, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7725, - "name": "new SamAutocompleteMultiselectComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 7726, - "name": "service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "decorators": [ - { - "name": "Optional", - "type": { - "type": "reference", - "name": "Optional" - }, - "arguments": {} - } - ], - "type": { - "type": "reference", - "name": "AutocompleteService", - "id": 5749 - } - }, - { - "id": 7727, - "name": "ref", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - }, - { - "id": 7728, - "name": "samFormService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamFormService", - "id": 4560 - } - } - ], - "type": { - "type": "reference", - "name": "SamAutocompleteMultiselectComponent", - "id": 7680 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 219, - "character": 3 - } - ] - }, - { - "id": 7702, - "name": "addOnIcon", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Allow an add on icon to component" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 175, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"fa-chevron-down\"" - }, - { - "id": 7699, - "name": "allowAny", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Allows any value typed in the input to be chosen" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 154, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 7715, - "name": "cache", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 209, - "character": 15 - } - ], - "type": { - "type": "reference", - "name": "AutocompleteCache", - "id": 7632 - }, - "defaultValue": " new AutocompleteCache()" - }, - { - "id": 7697, - "name": "categories", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Provides an array of categories for selection\nwhen also setting categoryIsSelectable property\nto true.", - "text": "The array should be the object for the category\nto be selected.\n" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 146, - "character": 28 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " []" - }, - { - "id": 7698, - "name": "categoryIsSelectable", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Provides the option to allow categories to be selected" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 150, - "character": 38 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 7695, - "name": "control", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Used by labelWrapper. Passes in a Form Control to display error messages\nSee labelWrapper for more detail." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 133, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "FormControl" - } - }, - { - "id": 7714, - "name": "debounceTime", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 208, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "250" - }, - { - "id": 7700, - "name": "defaultSearchString", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Optional: Provides a default search string to use with service\nin lieu of sending an empty string. If not provided, value\ndefaults to an empty string.", - "text": "WARNING: If your service overrides or manipulates the value\npassed to the fetch method, providing a default search string\non the component may not produce the expected results.\n\nExample:\nthis.autocompleteService.fetch(this.defaultSearchString, pageEnd, options)\n" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 167, - "character": 37 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 7705, - "name": "displayCategory", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Allow to control whether display the category option in the result list or\nnot", - "tags": [ - { - "tag": "type", - "text": "{boolean}\n" - } - ] - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 192, - "character": 33 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 7712, - "name": "displaySpinner", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 206, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 7716, - "name": "endOfList", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 210, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 7701, - "name": "errorMessage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Red error message text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 170, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 7682, - "name": "hiddenText", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'hiddenText'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 86, - "character": 37 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 7706, - "name": "hideTextareaLabel", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Hide textarea label, useful when a wrapper component's label is used\nto target the textarea instead" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 198, - "character": 35 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 7693, - "name": "hint", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Used by labelWrapper. Provides a hint on how to use field.\nSee labelWrapper for more detail." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 123, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7708, - "name": "innerValue", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 202, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " []" - }, - { - "id": 7711, - "name": "inputTimer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 205, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 7709, - "name": "isDisabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 203, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 7704, - "name": "itemTemplate", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Allow to insert a customized template for suggestions to use" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 185, - "character": 30 - } - ], - "type": { - "type": "reference", - "name": "TemplateRef", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 7692, - "name": "label", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Used by labelWrapper. Displays a label above input.\nSee labelWrapper for more detail." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 118, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7710, - "name": "list", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 204, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " []" - }, - { - "id": 7694, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Used by labelWrapper. Provides a name for input and label.\nSee labelWrapper for more detail." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 128, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7685, - "name": "options", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Options should be an array of objects that contain the key value pairs\nto be used to select in the component." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 94, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " []" - }, - { - "id": 7703, - "name": "placeholder", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Allow a placeholder to component" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 180, - "character": 29 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 7723, - "name": "ref", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 222, - "character": 15 - } - ], - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - }, - { - "id": 7691, - "name": "required", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Used by labelWrapper. Makes field required and displays required on label.\nSee labelWrapper for more detail." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 113, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 7683, - "name": "resultsList", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'resultsList'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 87, - "character": 39 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 7724, - "name": "samFormService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 223, - "character": 26 - } - ], - "type": { - "type": "reference", - "name": "SamFormService", - "id": 4560 - } - }, - { - "id": 7707, - "name": "searchText", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 200, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 7722, - "name": "service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "decorators": [ - { - "name": "Optional", - "type": { - "type": "reference", - "name": "Optional" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 221, - "character": 41 - } - ], - "type": { - "type": "reference", - "name": "AutocompleteService", - "id": 5749 - } - }, - { - "id": 7690, - "name": "serviceOptions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Used when a service is used to get autocomplete options" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 108, - "character": 32 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 7681, - "name": "textArea", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Gets DOM element for the textarea used for input" - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'textArea'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 85, - "character": 33 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 7713, - "name": "textAreaMinHeight", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 207, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "22" - }, - { - "id": 7696, - "name": "useFormService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Toggles validations to display with SamFormService events" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 137, - "character": 32 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 7684, - "name": "wrapper", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "LabelWrapper" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 88, - "character": 34 - } - ], - "type": { - "type": "reference", - "name": "LabelWrapper", - "id": 4513 - } - }, - { - "id": 7717, - "name": "value", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 7720, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "setSignature": [ - { - "id": 7718, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", - "flags": {}, - "parameters": [ - { - "id": 7719, - "name": "val", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 212, - "character": 11 - }, - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 217, - "character": 11 - } - ] - }, - { - "id": 7780, - "name": "addSelectedClass", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7781, - "name": "addSelectedClass", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7782, - "name": "elements", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 7783, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 499, - "character": 25 - } - ] - }, - { - "id": 7784, - "name": "applyTextAreaWidth", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7785, - "name": "applyTextAreaWidth", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Procedure to set the text area width\nas the content changes." - }, - "parameters": [ - { - "id": 7786, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 511, - "character": 27 - } - ] - }, - { - "id": 7843, - "name": "blurTextArea", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7844, - "name": "blurTextArea", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 933, - "character": 21 - } - ] - }, - { - "id": 7787, - "name": "calculateTextAreaWidth", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7788, - "name": "calculateTextAreaWidth", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Takes the current content of the textarea, an HTMLElement,\nand checks if the combined content of the textarea and the\nspans (selected items) is wider than the content area of\nthe parent element.", - "text": "Returns 100% -- to push textarea to a new line -- if true and\ninitial -- to keep textarea on same line -- if false.\n" - }, - "parameters": [ - { - "id": 7789, - "name": "element", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "HTMLElement" - } - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 533, - "character": 31 - } - ] - }, - { - "id": 7845, - "name": "checkForFocus", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7846, - "name": "checkForFocus", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7847, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 937, - "character": 22 - } - ] - }, - { - "id": 7839, - "name": "clearSearch", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7840, - "name": "clearSearch", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 920, - "character": 20 - } - ] - }, - { - "id": 7750, - "name": "createReturnObject", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 7751, - "name": "createReturnObject", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7752, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 7753, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {} - } - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 352, - "character": 28 - } - ] - }, - { - "id": 7837, - "name": "deselectAll", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7838, - "name": "deselectAll", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Procedure to remove all selected items" - }, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 915, - "character": 20 - } - ] - }, - { - "id": 7830, - "name": "deselectItem", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7831, - "name": "deselectItem", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Procedure to remove an item from list of selected items" - }, - "parameters": [ - { - "id": 7832, - "name": "selectedItem", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 883, - "character": 21 - } - ] - }, - { - "id": 7833, - "name": "deselectItemOnEnter", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7834, - "name": "deselectItemOnEnter", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7835, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 7836, - "name": "selectedItem", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 896, - "character": 28 - } - ] - }, - { - "id": 7822, - "name": "displayClearAll", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7823, - "name": "displayClearAll", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 834, - "character": 24 - } - ] - }, - { - "id": 7816, - "name": "displayList", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7817, - "name": "displayList", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 811, - "character": 20 - } - ] - }, - { - "id": 7818, - "name": "displaySublist", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7819, - "name": "displaySublist", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7820, - "name": "category", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7821, - "name": "categoryIndex", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 826, - "character": 23 - } - ] - }, - { - "id": 7799, - "name": "fetchFromService", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7800, - "name": "fetchFromService", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Logic for filtering options *" - }, - "parameters": [ - { - "id": 7801, - "name": "searchString", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7802, - "name": "options", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 7803, - "name": "context", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "this" - } - } - ], - "type": { - "type": "reference", - "name": "Subscription" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 632, - "character": 25 - } - ] - }, - { - "id": 7804, - "name": "filterOptions", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7805, - "name": "filterOptions", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Filters `options` by returning items in array that include the\nsearch term as a substring of the objects key or value" - }, - "parameters": [ - { - "id": 7806, - "name": "str", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 674, - "character": 22 - } - ] - }, - { - "id": 7841, - "name": "focusTextArea", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7842, - "name": "focusTextArea", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 928, - "character": 22 - } - ] - }, - { - "id": 7813, - "name": "getFirstFilteredItem", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7814, - "name": "getFirstFilteredItem", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7815, - "name": "array", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 803, - "character": 29 - } - ] - }, - { - "id": 7796, - "name": "getInternalElementWidth", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7797, - "name": "getInternalElementWidth", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Takes an HTMLElement and calculates the internal width (content + padding)\nReturns the width as a float" - }, - "parameters": [ - { - "id": 7798, - "name": "element", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "HTMLElement" - } - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 611, - "character": 32 - } - ] - }, - { - "id": 7754, - "name": "getItem", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7755, - "name": "getItem", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 359, - "character": 16 - } - ] - }, - { - "id": 7756, - "name": "getItemFromListByIndices", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7757, - "name": "getItemFromListByIndices", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7758, - "name": "categoryIndex", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 7759, - "name": "itemIndex", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 385, - "character": 33 - } - ] - }, - { - "id": 7793, - "name": "getParentContentWidth", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7794, - "name": "getParentContentWidth", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Takes an HTMLElement and returns the width of the content only.", - "text": "Returns the width as a float.\n" - }, - "parameters": [ - { - "id": 7795, - "name": "element", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "HTMLElement" - } - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 593, - "character": 30 - } - ] - }, - { - "id": 7770, - "name": "getResults", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7771, - "name": "getResults", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 446, - "character": 19 - } - ] - }, - { - "id": 7772, - "name": "getSelectedChildIndex", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7773, - "name": "getSelectedChildIndex", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7774, - "name": "elements", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 460, - "character": 30 - } - ] - }, - { - "id": 7790, - "name": "getSelectedContentWidth", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7791, - "name": "getSelectedContentWidth", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Gets the width of the selected items displayed in\nthe content area of the sam-autocomplete-multiselect.\nThe width in this case includes the entire box model:\nmargin, border, padding, content.", - "text": "Returns a float of the width\n" - }, - "parameters": [ - { - "id": 7792, - "name": "element", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "HTMLElement" - } - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "number" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 566, - "character": 32 - } - ] - }, - { - "id": 7734, - "name": "handleBackspaceEvent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7735, - "name": "handleBackspaceEvent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Checks if event code was `Backspace`. Procedure then removes\nthe last selected item if there is no user input in the text\narea." - }, - "parameters": [ - { - "id": 7736, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 266, - "character": 29 - } - ] - }, - { - "id": 7760, - "name": "handleDownArrow", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7761, - "name": "handleDownArrow", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7762, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 389, - "character": 24 - } - ] - }, - { - "id": 7810, - "name": "handleEmptyList", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7811, - "name": "handleEmptyList", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Checks if array is empty. If so, returns an array with no key\nand value 'No results found'." - }, - "parameters": [ - { - "id": 7812, - "name": "object", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 790, - "character": 24 - } - ] - }, - { - "id": 7740, - "name": "handleEnterEvent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7741, - "name": "handleEnterEvent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Checks if event key code was `Enter`. If so, prevents default\nbehavior.", - "text": "For this component, the point is to stop the browser from\ninserting a return character into the text area.\n" - }, - "parameters": [ - { - "id": 7742, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 294, - "character": 25 - } - ] - }, - { - "id": 7737, - "name": "handleEscapeEvent", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7738, - "name": "handleEscapeEvent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Clears list when escape is pressed" - }, - "parameters": [ - { - "id": 7739, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 279, - "character": 26 - } - ] - }, - { - "id": 7763, - "name": "handleUpArrow", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7764, - "name": "handleUpArrow", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7765, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 409, - "character": 22 - } - ] - }, - { - "id": 7731, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7732, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7733, - "name": "c", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 251, - "character": 20 - } - ] - }, - { - "id": 7729, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7730, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 226, - "character": 17 - } - ] - }, - { - "id": 7862, - "name": "onChangeCallback", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 7863, - "name": "onChangeCallback", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7864, - "name": "_", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 980, - "character": 26 - } - ] - }, - { - "id": 7865, - "name": "onTouchedCallback", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 7866, - "name": "onTouchedCallback", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 981, - "character": 27 - } - ] - }, - { - "id": 7766, - "name": "reachedEndOfList", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7767, - "name": "reachedEndOfList", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "tags": [ - { - "tag": "description", - "text": "- If item selected in group is last item in list,\nfire filter function\n" - } - ] - }, - "parameters": [ - { - "id": 7768, - "name": "results", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "Results displayed in autocomplete list" - }, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 7769, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "Keydown event target\n" - }, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 437, - "character": 25 - } - ] - }, - { - "id": 7853, - "name": "registerOnChange", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7854, - "name": "registerOnChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7855, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 968, - "character": 25 - } - ] - }, - { - "id": 7856, - "name": "registerOnTouched", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7857, - "name": "registerOnTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7858, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 972, - "character": 26 - } - ] - }, - { - "id": 7824, - "name": "selectItem", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7825, - "name": "selectItem", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Procedure to add an item to list of selected items" - }, - "parameters": [ - { - "id": 7826, - "name": "item", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 848, - "character": 19 - } - ] - }, - { - "id": 7827, - "name": "selectItemByCategory", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7828, - "name": "selectItemByCategory", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7829, - "name": "category", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 867, - "character": 29 - } - ] - }, - { - "id": 7743, - "name": "selectOnEnter", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7744, - "name": "selectOnEnter", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Checks if event key code was `Enter`. If so and text area has\na value, procedure calls filterOptions and selects the first\nitem that is returned." - }, - "parameters": [ - { - "id": 7745, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 307, - "character": 22 - } - ] - }, - { - "id": 7746, - "name": "selectWithAny", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 7747, - "name": "selectWithAny", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7748, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 7749, - "name": "highlighted", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 337, - "character": 23 - } - ] - }, - { - "id": 7859, - "name": "setDisabledState", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7860, - "name": "setDisabledState", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7861, - "name": "isDisabled", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 976, - "character": 25 - } - ] - }, - { - "id": 7775, - "name": "setSelectedChild", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7776, - "name": "setSelectedChild", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7777, - "name": "currentSelectedIndex", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 7778, - "name": "direction", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7779, - "name": "elements", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 476, - "character": 25 - } - ] - }, - { - "id": 7807, - "name": "sortByCategory", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7808, - "name": "sortByCategory", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Procedure to check this.list for categories\nand sort data by category" - }, - "parameters": [ - { - "id": 7809, - "name": "results", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 739, - "character": 23 - } - ] - }, - { - "id": 7848, - "name": "updateMarked", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7849, - "name": "updateMarked", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 942, - "character": 21 - } - ] - }, - { - "id": 7850, - "name": "writeValue", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7851, - "name": "writeValue", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Implementation of ControlValueAccessor Methods *" - }, - "parameters": [ - { - "id": 7852, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 959, - "character": 19 - } - ] - }, - { - "id": 7686, - "name": "keyValueConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Key Value Config is an object that sets which property on the options\nobjects should be used to display the key, value, and subhead properties\nin the list." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "children": [ - { - "id": 7687, - "name": "keyProperty", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 101, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"key\"" - }, - { - "id": 7689, - "name": "parentCategoryProperty", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 103, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"category\"" - }, - { - "id": 7688, - "name": "valueProperty", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 102, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"value\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7687, - 7689, - 7688 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 100, - "character": 32 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 7721 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 7702, - 7699, - 7715, - 7697, - 7698, - 7695, - 7714, - 7700, - 7705, - 7712, - 7716, - 7701, - 7682, - 7706, - 7693, - 7708, - 7711, - 7709, - 7704, - 7692, - 7710, - 7694, - 7685, - 7703, - 7723, - 7691, - 7683, - 7724, - 7707, - 7722, - 7690, - 7681, - 7713, - 7696, - 7684 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 7717 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 7780, - 7784, - 7843, - 7787, - 7845, - 7839, - 7750, - 7837, - 7830, - 7833, - 7822, - 7816, - 7818, - 7799, - 7804, - 7841, - 7813, - 7796, - 7754, - 7756, - 7793, - 7770, - 7772, - 7790, - 7734, - 7760, - 7810, - 7740, - 7737, - 7763, - 7731, - 7729, - 7862, - 7865, - 7766, - 7853, - 7856, - 7824, - 7827, - 7743, - 7746, - 7859, - 7775, - 7807, - 7848, - 7850 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 7686 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 80, - "character": 48 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "ControlValueAccessor" - } - ] - }, - { - "id": 7867, - "name": "KeyValueConfig", - "kind": 256, - "kindString": "Interface", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 7871, - "name": "categoryProperty", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isOptional": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 989, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7868, - "name": "keyProperty", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 986, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7872, - "name": "parentCategoryProperty", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isOptional": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 990, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7870, - "name": "subheadProperty", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isOptional": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 988, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7869, - "name": "valueProperty", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 987, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 7871, - 7868, - 7872, - 7870, - 7869 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 985, - "character": 31 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 7680 - ] - }, - { - "title": "Interfaces", - "kind": 256, - "children": [ - 7867 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/autocomplete-multiselect.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7873, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/index.ts", - "children": [ - { - "id": 7874, - "name": "SamAutocompleteMultiselectModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n FormsModule,\n CommonModule,\n SamWrapperModule,\n SamDirectivesModule\n ],\n declarations: [\n SamAutocompleteMultiselectComponent\n ],\n exports: [\n SamAutocompleteMultiselectComponent\n ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/index.ts", - "line": 24, - "character": 45 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 7874 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete-multiselect/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6527, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "children": [ - { - "id": 6528, - "name": "SamAutocompleteComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'sam-autocomplete',\n templateUrl: 'autocomplete.template.html',\n providers: [ AUTOCOMPLETE_VALUE_ACCESSOR ]\n}" - } - } - ], - "children": [ - { - "id": 6576, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6580, - "name": "new SamAutocompleteComponent", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6581, - "name": "autocompleteService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "decorators": [ - { - "name": "Optional", - "type": { - "type": "reference", - "name": "Optional" - }, - "arguments": {} - } - ], - "type": { - "type": "reference", - "name": "AutocompleteService", - "id": 5749 - } - }, - { - "id": 6582, - "name": "samFormService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamFormService", - "id": 4560 - } - }, - { - "id": 6583, - "name": "cdr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - } - ], - "type": { - "type": "reference", - "name": "SamAutocompleteComponent", - "id": 6528 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 191, - "character": 62 - } - ] - }, - { - "id": 6544, - "name": "allowAny", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Allows any value typed in the input to be chosen" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 78, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 6577, - "name": "autocompleteService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isConstructorProperty": true, - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "Optional", - "type": { - "type": "reference", - "name": "Optional" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 193, - "character": 52 - } - ], - "type": { - "type": "reference", - "name": "AutocompleteService", - "id": 5749 - } - }, - { - "id": 6546, - "name": "categories", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Array of categories. Applies category class if labels match values." - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 86, - "character": 28 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " []" - }, - { - "id": 6579, - "name": "cdr", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 195, - "character": 15 - } - ], - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - }, - { - "id": 6547, - "name": "control", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the form control" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 90, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "FormControl" - } - }, - { - "id": 6560, - "name": "endOfList", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 166, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 6550, - "name": "enterEvent", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Emitted only when the user selects an item from the dropdown list, or when\nthe user clicks enter and the mode is allowAny. This is useful if you do\nnot want to respond to onChange events when the input is blurred." - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 105, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 6549, - "name": "errorMessage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the general error message (For simplicity (we can enhance this it's\nneeded): Only active when `useFormService` is false)" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 99, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6564, - "name": "filteredKeyValuePairs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 172, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6558, - "name": "hasFocus", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 163, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 6559, - "name": "hasServiceError", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 164, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 6538, - "name": "hint", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the hint text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 65, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6552, - "name": "httpRequest", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Passes in a observable for handling when keyEvents subject triggers updates" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 156, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 6536, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the id attribute" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 57, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6554, - "name": "innerValue", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 159, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": "\"\"" - }, - { - "id": 6531, - "name": "input", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'input'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 42, - "character": 27 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 6555, - "name": "inputValue", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 160, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": "\"\"" - }, - { - "id": 6551, - "name": "itemTemplate", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Allow to insert a customized template for suggestions to use" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 109, - "character": 23 - } - ], - "type": { - "type": "reference", - "name": "TemplateRef", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 6570, - "name": "keyEvents", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 188, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "Subject", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new Subject()" - }, - { - "id": 6563, - "name": "keyValuePairs", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 171, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6537, - "name": "labelText", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the label text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 61, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6562, - "name": "lastReturnedResults", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 169, - "character": 28 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - } - }, - { - "id": 6561, - "name": "lastSearchedValue", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 167, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6534, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the name attribute" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 49, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6539, - "name": "options", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Define autocomplete options" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 69, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 6548, - "name": "required", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the required text in the label wrapper" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 94, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 6553, - "name": "results", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 158, - "character": 16 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - } - }, - { - "id": 6565, - "name": "resultsAvailable", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 174, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\" results available. Use up and down arrows to scroll through results. Hit enter to select.\"" - }, - { - "id": 6529, - "name": "resultsList", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'resultsList'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 40, - "character": 39 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 6530, - "name": "resultsListKV", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'resultsListKV'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 41, - "character": 43 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 6578, - "name": "samFormService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 194, - "character": 26 - } - ], - "type": { - "type": "reference", - "name": "SamFormService", - "id": 4560 - } - }, - { - "id": 6557, - "name": "selectedChild", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 162, - "character": 22 - } - ], - "type": { - "type": "reference", - "name": "HTMLElement" - } - }, - { - "id": 6556, - "name": "selectedInputValue", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 161, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6532, - "name": "srOnly", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'srOnly'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 43, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 6535, - "name": "tabIndex", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the tabindex attribute" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 53, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 6545, - "name": "useFormService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Toggles validations to display with SamFormService events" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 82, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 6533, - "name": "wrapper", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'wrapper'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 44, - "character": 31 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6597, - "name": "errors", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 6598, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 282, - "character": 12 - } - ] - }, - { - "id": 6566, - "name": "value", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true, - "isPublic": true - }, - "getSignature": [ - { - "id": 6567, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "setSignature": [ - { - "id": 6568, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", - "flags": {}, - "parameters": [ - { - "id": 6569, - "name": "val", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 177, - "character": 18 - }, - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 181, - "character": 18 - } - ] - }, - { - "id": 6634, - "name": "checkCategoryIndex", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6635, - "name": "checkCategoryIndex", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6636, - "name": "currentItem", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 473, - "character": 20 - } - ] - }, - { - "id": 6659, - "name": "checkForFocus", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6660, - "name": "checkForFocus", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6661, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 592, - "character": 15 - } - ] - }, - { - "id": 6615, - "name": "checkLastSearch", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6616, - "name": "checkLastSearch", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6617, - "name": "searchString", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 371, - "character": 17 - } - ] - }, - { - "id": 6673, - "name": "clearDropdown", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6674, - "name": "clearDropdown", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 684, - "character": 15 - } - ] - }, - { - "id": 6678, - "name": "clearInput", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6679, - "name": "clearInput", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 697, - "character": 12 - } - ] - }, - { - "id": 6669, - "name": "filterKeyValuePairs", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6670, - "name": "filterKeyValuePairs", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6671, - "name": "subStr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6672, - "name": "keyValuePairs", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 642, - "character": 21 - } - ] - }, - { - "id": 6665, - "name": "filterResults", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6666, - "name": "filterResults", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6667, - "name": "subStr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6668, - "name": "stringArray", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - } - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 630, - "character": 15 - } - ] - }, - { - "id": 6653, - "name": "getSelectedChildIndex", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6654, - "name": "getSelectedChildIndex", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6655, - "name": "children", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 575, - "character": 23 - } - ] - }, - { - "id": 6613, - "name": "handleBackspaceKeyup", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6614, - "name": "handleBackspaceKeyup", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 361, - "character": 22 - } - ] - }, - { - "id": 6627, - "name": "incrementIfFirstCategory", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6628, - "name": "incrementIfFirstCategory", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6629, - "name": "isFirstCategory", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 459, - "character": 26 - } - ] - }, - { - "id": 6675, - "name": "inputFocusHandler", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6676, - "name": "inputFocusHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6677, - "name": "evt", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 690, - "character": 19 - } - ] - }, - { - "id": 6680, - "name": "isCategory", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6681, - "name": "isCategory", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6682, - "name": "object", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 709, - "character": 12 - } - ] - }, - { - "id": 6643, - "name": "isFirstItem", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6644, - "name": "isFirstItem", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6645, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 543, - "character": 13 - } - ] - }, - { - "id": 6630, - "name": "isFirstItemCategory", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6631, - "name": "isFirstItemCategory", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6632, - "name": "item", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6633, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 463, - "character": 21 - } - ] - }, - { - "id": 6601, - "name": "isKeyValuePair", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6602, - "name": "isKeyValuePair", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6603, - "name": "arr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 292, - "character": 16 - } - ] - }, - { - "id": 6695, - "name": "itemClass", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6696, - "name": "itemClass", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6697, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 6698, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 6699, - "name": "category", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 749, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " obj && obj.isCategory" - }, - { - "id": 6701, - "name": "indented", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 751, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": " hasCategories && notCategory" - }, - { - "id": 6700, - "name": "selectable", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 750, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": " this.config.isCategorySelectable" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 6699, - 6701, - 6700 - ] - } - ] - } - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 745, - "character": 11 - } - ] - }, - { - "id": 6624, - "name": "listExists", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6625, - "name": "listExists", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6626, - "name": "list", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 452, - "character": 12 - } - ] - }, - { - "id": 6595, - "name": "ngAfterViewInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6596, - "name": "ngAfterViewInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 274, - "character": 17 - } - ] - }, - { - "id": 6584, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6585, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6586, - "name": "changes", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 197, - "character": 13 - } - ] - }, - { - "id": 6593, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6594, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 251, - "character": 10 - } - ] - }, - { - "id": 6599, - "name": "onChange", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6600, - "name": "onChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 286, - "character": 10 - } - ] - }, - { - "id": 6621, - "name": "onDownArrowDown", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6622, - "name": "onDownArrowDown", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6623, - "name": "list", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ElementRef" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 410, - "character": 17 - } - ] - }, - { - "id": 6650, - "name": "onEnterDown", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6651, - "name": "onEnterDown", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6652, - "name": "list", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 555, - "character": 13 - } - ] - }, - { - "id": 6610, - "name": "onKeyUpUsingService", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6611, - "name": "onKeyUpUsingService", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6612, - "name": "searchString", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 342, - "character": 21 - } - ] - }, - { - "id": 6607, - "name": "onKeyUpWithOptions", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6608, - "name": "onKeyUpWithOptions", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6609, - "name": "searchString", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 329, - "character": 20 - } - ] - }, - { - "id": 6618, - "name": "onKeydown", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6619, - "name": "onKeydown", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6620, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 380, - "character": 11 - } - ] - }, - { - "id": 6604, - "name": "onKeyup", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6605, - "name": "onKeyup", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6606, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 300, - "character": 9 - } - ] - }, - { - "id": 6571, - "name": "onTouchedCallback", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6572, - "name": "onTouchedCallback", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 190, - "character": 26 - } - ] - }, - { - "id": 6640, - "name": "onUpArrowDown", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6641, - "name": "onUpArrowDown", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6642, - "name": "list", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 491, - "character": 15 - } - ] - }, - { - "id": 6573, - "name": "propogateChange", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6574, - "name": "propogateChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6575, - "name": "_", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 191, - "character": 24 - } - ] - }, - { - "id": 6656, - "name": "pushSROnlyMessage", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6657, - "name": "pushSROnlyMessage", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6658, - "name": "message", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 586, - "character": 19 - } - ] - }, - { - "id": 6686, - "name": "registerOnChange", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6687, - "name": "registerOnChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6688, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 733, - "character": 18 - } - ] - }, - { - "id": 6689, - "name": "registerOnTouched", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6690, - "name": "registerOnTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6691, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 737, - "character": 19 - } - ] - }, - { - "id": 6590, - "name": "requestError", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6591, - "name": "requestError", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6592, - "name": "err", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 240, - "character": 14 - } - ] - }, - { - "id": 6587, - "name": "requestSuccess", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6588, - "name": "requestSuccess", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6589, - "name": "data", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 206, - "character": 16 - } - ] - }, - { - "id": 6692, - "name": "setDisabledState", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6693, - "name": "setDisabledState", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6694, - "name": "isDisabled", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 741, - "character": 18 - } - ] - }, - { - "id": 6702, - "name": "setEndOfList", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 6703, - "name": "setEndOfList", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6704, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6705, - "name": "length", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 755, - "character": 22 - } - ] - }, - { - "id": 6637, - "name": "setMessage", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6638, - "name": "setMessage", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6639, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 484, - "character": 12 - } - ] - }, - { - "id": 6646, - "name": "setScrollTop", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6647, - "name": "setScrollTop", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6648, - "name": "isFirstItemCategory", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 6649, - "name": "list", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 549, - "character": 14 - } - ] - }, - { - "id": 6662, - "name": "setSelected", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6663, - "name": "setSelected", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6664, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 606, - "character": 13 - } - ] - }, - { - "id": 6683, - "name": "writeValue", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6684, - "name": "writeValue", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6685, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 717, - "character": 12 - } - ] - }, - { - "id": 6540, - "name": "config", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Allows for a configuration object" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "children": [ - { - "id": 6541, - "name": "keyValueConfig", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 6542, - "name": "keyProperty", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 74, - "character": 35 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"key\"" - }, - { - "id": 6543, - "name": "valueProperty", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 74, - "character": 57 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"value\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 6542, - 6543 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 74, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 6541 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 73, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 6576 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 6544, - 6577, - 6546, - 6579, - 6547, - 6560, - 6550, - 6549, - 6564, - 6558, - 6559, - 6538, - 6552, - 6536, - 6554, - 6531, - 6555, - 6551, - 6570, - 6563, - 6537, - 6562, - 6561, - 6534, - 6539, - 6548, - 6553, - 6565, - 6529, - 6530, - 6578, - 6557, - 6556, - 6532, - 6535, - 6545, - 6533 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 6597, - 6566 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 6634, - 6659, - 6615, - 6673, - 6678, - 6669, - 6665, - 6653, - 6613, - 6627, - 6675, - 6680, - 6643, - 6630, - 6601, - 6695, - 6624, - 6595, - 6584, - 6593, - 6599, - 6621, - 6650, - 6610, - 6607, - 6618, - 6604, - 6571, - 6640, - 6573, - 6656, - 6686, - 6689, - 6590, - 6587, - 6692, - 6702, - 6637, - 6646, - 6662, - 6683 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 6540 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 38, - "character": 37 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "ControlValueAccessor" - }, - { - "type": "reference", - "name": "OnChanges" - } - ] - }, - { - "id": 6706, - "name": "AUTOCOMPLETE_VALUE_ACCESSOR", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 6709, - "name": "multi", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 30, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 6707, - "name": "provide", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 28, - "character": 9 - } - ], - "type": { - "type": "reference", - "name": "InjectionToken", - "typeArguments": [ - { - "type": "reference", - "name": "ControlValueAccessor" - } - ] - }, - "defaultValue": " NG_VALUE_ACCESSOR" - }, - { - "id": 6708, - "name": "useExisting", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 29, - "character": 13 - } - ], - "type": { - "type": "reference", - "name": "Type", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " forwardRef(() => SamAutocompleteComponent)" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 6709, - 6707, - 6708 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 27, - "character": 33 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6528 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 6706 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 5748, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", - "children": [ - { - "id": 5749, - "name": "AutocompleteService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Injectable", - "type": { - "type": "reference", - "name": "Injectable" - }, - "arguments": {} - } - ], - "children": [ - { - "id": 5753, - "name": "fetch", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5754, - "name": "fetch", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5755, - "name": "val", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 5756, - "name": "pageEnd", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 5757, - "name": "serviceOptions", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", - "line": 10, - "character": 7 - } - ] - }, - { - "id": 5750, - "name": "setFetchMethod", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 5751, - "name": "setFetchMethod", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 5752, - "name": "_", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", - "line": 6, - "character": 16 - } - ] - } - ], - "groups": [ - { - "title": "Methods", - "kind": 2048, - "children": [ - 5753, - 5750 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", - "line": 5, - "character": 32 - } - ], - "implementedBy": [ - { - "type": "reference", - "name": "ACTestService", - "id": 5759 - }, - { - "type": "reference", - "name": "CountryService", - "id": 9112 - }, - { - "type": "reference", - "name": "StateService", - "id": 9084 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 5749 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/autocomplete.service.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6906, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/index.ts", - "children": [ - { - "id": 6907, - "name": "SamAutocompleteModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [ \n FormsModule,\n CommonModule,\n SamWrapperModule,\n SamDirectivesModule,\n ],\n declarations: [\n SamAutocompleteComponent,\n SamAutocompleteComponentRefactor\n ],\n exports: [\n SamAutocompleteComponent,\n SamAutocompleteComponentRefactor\n ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/index.ts", - "line": 31, - "character": 34 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6907 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6739, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "children": [ - { - "id": 6740, - "name": "SamAutocompleteComponentRefactor", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\nselector: 'sam-autocomplete-refactor',\ntemplateUrl: 'autocomplete.template.html',\nproviders: [ AUTOCOMPLETE_VALUE_ACCESSOR ]\n}" - } - } - ], - "children": [ - { - "id": 6793, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6798, - "name": "new SamAutocompleteComponentRefactor", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6799, - "name": "_service", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "decorators": [ - { - "name": "Optional", - "type": { - "type": "reference", - "name": "Optional" - }, - "arguments": {} - } - ], - "type": { - "type": "reference", - "name": "AutocompleteService", - "id": 5749 - } - }, - { - "id": 6800, - "name": "_cdr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - }, - { - "id": 6801, - "name": "_renderer", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Renderer2" - } - }, - { - "id": 6802, - "name": "samFormService", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "SamFormService", - "id": 4560 - } - } - ], - "type": { - "type": "reference", - "name": "SamAutocompleteComponentRefactor", - "id": 6740 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 222, - "character": 42 - } - ] - }, - { - "id": 6792, - "name": "_blurSubscription", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 222, - "character": 27 - } - ], - "type": { - "type": "reference", - "name": "Subscription" - } - }, - { - "id": 6781, - "name": "_cache", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 208, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6779, - "name": "_categoryProperty", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 205, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6795, - "name": "_cdr", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 225, - "character": 14 - } - ], - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - }, - { - "id": 6774, - "name": "_endOfList", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 192, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 6782, - "name": "_filter", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 210, - "character": 17 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 6783, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 6784, - "name": "__call", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6785, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "isArray": true, - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 210, - "character": 18 - } - ] - } - } - }, - { - "id": 6777, - "name": "_highlightedItemIndex", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 203, - "character": 31 - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 6766, - "name": "_input", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "comment": { - "shortText": "Text input for filtering results" - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'input'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 143, - "character": 36 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 6778, - "name": "_keyValueConfig", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 204, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6765, - "name": "_list", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "comment": { - "shortText": "UL list ViewChild for displaying autocomplete options" - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'list'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 138, - "character": 34 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 6796, - "name": "_renderer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 226, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "Renderer2" - } - }, - { - "id": 6767, - "name": "_screenReaderEl", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "comment": { - "shortText": "Hidden list element with aria assertive that reads\nitems pushed into it as user interacts with component." - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'screenReaderEl'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 149, - "character": 54 - } - ], - "type": { - "type": "reference", - "name": "ElementRef" - } - }, - { - "id": 6780, - "name": "_screenreader", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 207, - "character": 23 - } - ], - "type": { - "type": "reference", - "name": "ScreenReaderPusher", - "id": 6711 - } - }, - { - "id": 6772, - "name": "_selectedItem", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "comment": { - "shortText": "Item that is currently highlighted\nfrom user input." - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 184, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6794, - "name": "_service", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "decorators": [ - { - "name": "Optional", - "type": { - "type": "reference", - "name": "Optional" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 224, - "character": 42 - } - ], - "type": { - "type": "reference", - "name": "AutocompleteService", - "id": 5749 - } - }, - { - "id": 6773, - "name": "_showSpinner", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "comment": { - "shortText": "Boolean that determines whether\nto display a spinner while results\nare loading" - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 190, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 6769, - "name": "_value", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "comment": { - "shortText": "Stores value that the user has\nselected from the input.", - "text": "Can be a string or an object.\n\nDiffers from the input value in\nthat the input value is a separate\nstate variable that can be modified\nindependently from state of this\ncomponent.\n" - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 166, - "character": 16 - } - ], - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "String" - }, - { - "type": "instrinct", - "name": "any" - } - ] - } - }, - { - "id": 6762, - "name": "addOnIconClass", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "sets icon to indicate interaction" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 122, - "character": 32 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"fa-chevron-down\"" - }, - { - "id": 6761, - "name": "allowAny", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Allow the component to accept\nany user input as a valid value.", - "text": "If false, the user may only\nselect a value from the list\nto be set as the input value.\n" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 118, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 6758, - "name": "categories", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Categories" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 99, - "character": 28 - } - ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - }, - "defaultValue": " []" - }, - { - "id": 6748, - "name": "config", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Config oBject" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 73, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6750, - "name": "control", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Pass in a form control for labelWrapper" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 82, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "FormControl" - } - }, - { - "id": 6764, - "name": "disabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Component State Variables" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": { - "bindingPropertyName": "'disabled'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 133, - "character": 36 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 6771, - "name": "displayList", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Observable subscription that triggers whether or not\nto show the list of results.s" - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 179, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6776, - "name": "displaySpinner", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Tracks the item that is currently highlighted in the list" - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 202, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 6763, - "name": "enterEvent", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Emitted only when the user selects an item from the dropdown list, or when\nthe user clicks enter and the mode is allowAny. This is useful if you do\nnot want to respond to onChange events when the input is blurred." - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 128, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 6746, - "name": "errorMessage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Provides labelWrapper with error message to display on error" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 65, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6752, - "name": "filterCallback", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Pass custom querying and filtering callback\nfor result" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 91, - "character": 32 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 6753, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 6754, - "name": "__call", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6755, - "name": "input", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6756, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "isArray": true, - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 91, - "character": 33 - } - ] - } - } - }, - { - "id": 6775, - "name": "filteredOptions", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Results of filter calls that are then\ndisplayed on the page" - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 198, - "character": 24 - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "isArray": true, - "name": "any" - } - ] - } - }, - { - "id": 6745, - "name": "hint", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Provide hint for labelWrapper" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 61, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6742, - "name": "id", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Provide a unique id for input" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 49, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6770, - "name": "inputValue", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "The value that comes from the input.\nThis is the value that is displayed\nin the text input, not necessarily\nthe value that is set within\nthe autocomplete component." - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 174, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6759, - "name": "isCategorySelectable", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true, - "isOptional": true - }, - "comment": { - "shortText": "Allow categories to be selected if true\nOtherwise, users cannot select categories and\nthey are skipped when using keydown in the list" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 105, - "character": 38 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 6743, - "name": "label", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Provide a label for the input" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 53, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 6744, - "name": "labelText", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "DEPRECATED: Provide a label for the input; Use label instead" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 57, - "character": 27 + "fileName": "src/_docs/components/collapsible/component-example.ts", + "line": 28, + "character": 9 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 6741, - "name": "name", + "id": 550, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Provide name for input" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 45, - "character": 22 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 6791, - "name": "onBlurEvent", + "id": 549, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { @@ -175442,584 +77202,794 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 220, - "character": 20 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { - "type": "reference", - "name": "Subject", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] + "type": "instrinct", + "name": "string" }, - "defaultValue": " new Subject()" + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } }, { - "id": 6790, - "name": "onInputChange", + "id": 544, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 219, - "character": 22 + "fileName": "src/_docs/components/collapsible/component-example.ts", + "line": 36, + "character": 20 } ], "type": { "type": "reference", - "name": "Subject", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] + "name": "MarkdownService", + "id": 238 }, - "defaultValue": " new Subject()" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 6786, - "name": "onInputEvent", + "id": 551, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "RxJS Streams Setup" - }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 215, - "character": 21 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { "type": "reference", - "name": "Subject", + "name": "Array", "typeArguments": [ { "type": "instrinct", - "name": "any" + "name": "string" } ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 6787, - "name": "onInputFocus", + "id": 543, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 216, - "character": 21 + "fileName": "src/_docs/components/collapsible/component-example.ts", + "line": 35, + "character": 18 } ], "type": { "type": "reference", - "name": "Subject", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] + "name": "DocumentationService", + "id": 148 }, - "defaultValue": " new Subject()" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 6788, - "name": "onInputKeydown", + "id": 539, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 217, - "character": 23 + "fileName": "src/_docs/components/collapsible/component-example.ts", + "line": 26, + "character": 17 } ], "type": { - "type": "reference", - "name": "Subject", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] + "type": "instrinct", + "name": "string" }, - "defaultValue": " new Subject()" + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } }, { - "id": 6789, - "name": "onInputKeyup", + "id": 538, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 218, - "character": 21 + "fileName": "src/_docs/components/collapsible/component-example.ts", + "line": 25, + "character": 16 } ], "type": { - "type": "reference", - "name": "Subject", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] + "type": "instrinct", + "name": "string" }, - "defaultValue": " new Subject()" + "defaultValue": "\"SamCollapsibleComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 6757, - "name": "options", - "kind": 1024, - "kindString": "Property", + "id": 557, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "List of options to display in list" - }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 558, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 559, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], "type": { "type": "reference", - "name": "Input" + "name": "Subscription" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 95, - "character": 25 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } }, { - "id": 6747, - "name": "placeholder", - "kind": 1024, - "kindString": "Property", + "id": 552, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Provide placeholder for input" - }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 553, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, "type": { - "type": "reference", - "name": "Input" + "type": "instrinct", + "name": "void" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 69, - "character": 29 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 6749, - "name": "required", - "kind": 1024, - "kindString": "Property", + "id": 554, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "If true, form validation\nwill fail if field is left blank." - }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 555, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 556, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], "type": { - "type": "reference", - "name": "Input" + "type": "instrinct", + "name": "void" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 78, - "character": 26 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 542 + ] }, { - "id": 6797, - "name": "samFormService", + "title": "Properties", + "kind": 1024, + "children": [ + 541, + 540, + 550, + 549, + 544, + 551, + 543, + 539, + 538 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 557, + 552, + 554 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/collapsible/component-example.ts", + "line": 24, + "character": 40 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 560, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/collapsible/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n

    I got projected in here

    \n
    `" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 537 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 560 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/collapsible/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 882, + "name": "\"src/_docs/components/comments/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/comments/component-example.ts", + "children": [ + { + "id": 883, + "name": "CommentsDemoService", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "children": [ + { + "id": 887, + "name": "_comments", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 227, - "character": 24 + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 28, + "character": 18 } ], "type": { "type": "reference", - "name": "SamFormService", - "id": 4560 - } + "isArray": true, + "name": "Comment", + "id": 628 + }, + "defaultValue": " [\n {\n username: 'diego-dev@commoncomponents.team',\n datetime: new Date('6/1/2017'),\n text: 'Lorem ipsum dolor sit amet, consectetuer adiing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date('02/14/2017'),\n text: 'Lorem ipsum doit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient motur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lorem ipsum dolor sit amet, conctetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean ',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean modo ligula eget do\\n massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lo ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget do Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lorem ipsum dolor sit amet, consectetuer adcing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur us mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'carlos-dev@commoncomponents.team',\n datetime: new Date('7/16/2017'),\n text: 'Lorem ipsum dolor sit amet, consectetuer adipido ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.'\n },\n {\n username: 'diego-dev@commoncomponents.team',\n datetime: new Date('6/1/2017'),\n text: 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean masa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lorem ipsum doit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nectesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lorem ipsum dolor sit amet, conctetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quamies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean modo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus musquam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lo ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula egets, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n {\n username: 'colin-dev@commoncomponents.team',\n datetime: new Date(),\n text: 'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur us mus. Donec quam felis, ultricies nec, pellentesque eu, pretium.',\n image: 'https://upload.wikimedia.org/wikipedia/commons/c/c6/Georgewashington.jpg'\n },\n ]" }, { - "id": 6760, - "name": "serviceOptions", + "id": 886, + "name": "_disabled", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Used when a service is used to get autocomplete options" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 109, - "character": 32 + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 26, + "character": 18 } ], "type": { "type": "instrinct", - "name": "any" - } + "name": "boolean" + }, + "defaultValue": "false" }, { - "id": 6751, - "name": "useFormService", + "id": 885, + "name": "_username", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Toggles validations to display with SamFormService events" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 86, - "character": 32 + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 25, + "character": 18 } ], "type": { "type": "instrinct", - "name": "boolean" - } + "name": "string" + }, + "defaultValue": "\"anon-user@common-components.team\"" }, { - "id": 6768, - "name": "wrapper", + "id": 888, + "name": "lastIndex", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, "isExported": true }, - "comment": { - "shortText": "ViewChild for wrapper. Need this for our hacky label wrapper" - }, - "decorators": [ + "sources": [ { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'wrapper'" - } + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 108, + "character": 21 } ], + "type": { + "type": "instrinct", + "name": "number" + }, + "defaultValue": " (this._comments.length - 1) - this.offset" + }, + { + "id": 884, + "name": "offset", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 153, - "character": 39 + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 23, + "character": 16 } ], "type": { "type": "instrinct", - "name": "any" - } + "name": "number" + }, + "defaultValue": "5" }, { - "id": 6849, - "name": "_addHighlightClass", + "id": 901, + "name": "deleteComment", "kind": 2048, "kindString": "Method", "flags": { - "isPrivate": true, "isExported": true }, "signatures": [ { - "id": 6850, - "name": "_addHighlightClass", + "id": 902, + "name": "deleteComment", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Add class selected to list item" - }, "parameters": [ { - "id": 6851, - "name": "li", + "id": 903, + "name": "comment", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "HTMLLIElement" + "name": "Comment", + "id": 628 } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Observable", + "typeArguments": [ + { + "type": "reference", + "isArray": true, + "name": "Comment", + "id": 628 + } + ] } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 579, - "character": 28 + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 138, + "character": 15 } ] }, { - "id": 6859, - "name": "_circularDecrement", + "id": 896, + "name": "getComments", "kind": 2048, "kindString": "Method", "flags": { - "isPrivate": true, "isExported": true }, "signatures": [ { - "id": 6860, - "name": "_circularDecrement", + "id": 897, + "name": "getComments", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Takes an index and a length.\nDecrements the number until reaching zero,\nthen returns length.", - "text": "Returns length if undefined.\n" - }, - "parameters": [ - { - "id": 6861, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" + "type": { + "type": "reference", + "name": "Observable", + "typeArguments": [ + { + "type": "reference", + "isArray": true, + "name": "Comment", + "id": 628 } - }, - { - "id": 6862, - "name": "length", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" + ] + } + } + ], + "sources": [ + { + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 122, + "character": 13 + } + ] + }, + { + "id": 904, + "name": "getInitialState", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 905, + "name": "getInitialState", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "reference", + "name": "Observable", + "typeArguments": [ + { + "type": "reference", + "isArray": true, + "name": "Comment", + "id": 628 } - } - ], + ] + } + } + ], + "sources": [ + { + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 147, + "character": 17 + } + ] + }, + { + "id": 894, + "name": "getUsername", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 895, + "name": "getUsername", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, "type": { "type": "instrinct", - "name": "number" + "name": "string" } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 623, - "character": 28 + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 118, + "character": 13 } ] }, { - "id": 6855, - "name": "_circularIncrement", + "id": 891, + "name": "isCommentDeletable", "kind": 2048, "kindString": "Method", "flags": { - "isPrivate": true, "isExported": true }, "signatures": [ { - "id": 6856, - "name": "_circularIncrement", + "id": 892, + "name": "isCommentDeletable", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Takes an index and a length\nIncrements the number up to its length,\nbut returns 0 if the index is the length", - "text": "Returns 0 if undefined.\n" - }, "parameters": [ { - "id": 6857, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 6858, - "name": "length", + "id": 893, + "name": "comment", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "Comment", + "id": 628 } } ], "type": { "type": "instrinct", - "name": "number" + "name": "boolean" } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 597, - "character": 28 + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 114, + "character": 20 } ] }, { - "id": 6884, - "name": "_dummyFilter", + "id": 889, + "name": "isCommentingDisabled", "kind": 2048, "kindString": "Method", "flags": { - "isPrivate": true, "isExported": true }, "signatures": [ { - "id": 6885, - "name": "_dummyFilter", + "id": 890, + "name": "isCommentingDisabled", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "boolean" + } + } + ], + "sources": [ + { + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 110, + "character": 22 + } + ] + }, + { + "id": 898, + "name": "postComment", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 899, + "name": "postComment", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 6886, - "name": "value", + "id": 900, + "name": "_", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "string" + "name": "any" } } ], @@ -176028,9 +77998,10 @@ "name": "Observable", "typeArguments": [ { - "type": "instrinct", + "type": "reference", "isArray": true, - "name": "any" + "name": "Comment", + "id": 628 } ] } @@ -176038,341 +78009,423 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 720, - "character": 22 + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 129, + "character": 13 } ] + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 887, + 886, + 885, + 888, + 884 + ] }, { - "id": 6868, - "name": "_getFilterMethod", + "title": "Methods", "kind": 2048, - "kindString": "Method", + "children": [ + 901, + 896, + 904, + 894, + 891, + 889, + 898 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 21, + "character": 32 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "CommentsService", + "id": 606 + } + ] + }, + { + "id": 906, + "name": "SamCommentsComponentExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-sam-comments',\n template: '' + code_example + '',\n providers: [\n { provide: CommentsService, useClass: CommentsDemoService }\n ]\n}" + } + } + ], + "children": [ + { + "id": 911, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { - "isPrivate": true, "isExported": true }, "signatures": [ { - "id": 6869, - "name": "_getFilterMethod", - "kind": 4096, - "kindString": "Call signature", + "id": 914, + "name": "new SamCommentsComponentExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Determine which method to use to get items in list\nPrecedence: filterCallback > autocomplete service > built-in filter" - }, - "type": { - "type": "reflection", - "declaration": { - "id": 6870, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", + "parameters": [ + { + "id": 915, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "signatures": [ - { - "id": 6871, - "name": "__call", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6872, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "isArray": true, - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 667, - "character": 29 - } - ] + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 916, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 917, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } + ], + "type": { + "type": "reference", + "name": "SamCommentsComponentExampleComponent", + "id": 906 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 667, - "character": 26 + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 172, + "character": 45 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 6873, - "name": "_getSimpleFilter", - "kind": 2048, - "kindString": "Method", + "id": 910, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 172, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/comments/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 909, + "name": "example", + "kind": 1024, + "kindString": "Property", "flags": { - "isPrivate": true, "isExported": true }, - "signatures": [ + "sources": [ { - "id": 6874, - "name": "_getSimpleFilter", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Checks for type of options that are passed in\nand returns the correct filter function for\nthe correct data type." - }, - "type": { - "type": "reflection", - "declaration": { - "id": 6875, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 6876, - "name": "__call", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6877, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "isArray": true, - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 686, - "character": 29 - } - ] - } - } + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 170, + "character": 9 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 919, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 686, - "character": 26 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 6836, - "name": "_handleDownArrow", - "kind": 2048, - "kindString": "Method", + "id": 918, + "name": "markdown", + "kind": 1024, + "kindString": "Property", "flags": { - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 6837, - "name": "_handleDownArrow", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Logic to handle down arrow keydown event" - }, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 913, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 473, - "character": 26 + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 177, + "character": 20 } - ] + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 6833, - "name": "_handleEnter", - "kind": 2048, - "kindString": "Method", + "id": 920, + "name": "sections", + "kind": 1024, + "kindString": "Property", "flags": { - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 6834, - "name": "_handleEnter", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Logic to handle enter events\nSubscribes to" - }, - "parameters": [ - { - "id": 6835, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "KeyboardEvent" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 912, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 460, - "character": 22 + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 176, + "character": 18 } - ] + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 6838, - "name": "_handleUpArrow", - "kind": 2048, - "kindString": "Method", + "id": 908, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", "flags": { - "isPrivate": true, "isExported": true }, - "signatures": [ + "sources": [ { - "id": 6839, - "name": "_handleUpArrow", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Logic to handle up arrow keydown event" - }, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 168, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 907, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 488, - "character": 24 + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 167, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamCommentsComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 6840, - "name": "_highlightNextListItem", + "id": 926, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 6841, - "name": "_highlightNextListItem", + "id": 927, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Takes a list and direction and highlights" - }, "parameters": [ { - "id": 6842, - "name": "list", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "Children of an HTMLUListElement" - }, - "type": { - "type": "reference", - "name": "HTMLCollection" - } - }, - { - "id": 6843, - "name": "direction", + "id": 928, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, - "comment": { - "text": "One of INCREMENT or DECREMENT\n" - }, "type": { "type": "instrinct", "name": "string" @@ -176380,877 +78433,1026 @@ } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 505, - "character": 32 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 6878, - "name": "_isArrayOfStrings", + "id": 921, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 6879, - "name": "_isArrayOfStrings", + "id": 922, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Returns true if all array items are strings" - }, - "parameters": [ - { - "id": 6880, - "name": "array", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "isArray": true, - "name": "any" - } - } - ], "type": { "type": "instrinct", - "name": "boolean" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 695, - "character": 27 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 6887, - "name": "_objectsFilter", + "id": 923, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 6888, - "name": "_objectsFilter", + "id": 924, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Returns an array of filtered options of key/value pairs where each\noption contains the value as a substring either of the key or\nthe value.", - "text": "Contains logic to sorting by category as well\n" - }, "parameters": [ { - "id": 6889, - "name": "value", + "id": 925, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "string" + "name": "any" } } ], "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "isArray": true, - "name": "any" - } - ] + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 734, - "character": 24 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 911 ] }, { - "id": 6852, - "name": "_removeHighlightClass", + "title": "Properties", + "kind": 1024, + "children": [ + 910, + 909, + 919, + 918, + 913, + 920, + 912, + 908, + 907 + ] + }, + { + "title": "Methods", "kind": 2048, - "kindString": "Method", + "children": [ + 926, + 921, + 923 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 166, + "character": 49 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 929, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 154, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 883, + 906 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 929 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/comments/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 930, + "name": "\"src/_docs/components/download/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/download/component-example.ts", + "children": [ + { + "id": 931, + "name": "DownloadExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-download',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], + "children": [ + { + "id": 957, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { - "isPrivate": true, "isExported": true }, "signatures": [ { - "id": 6853, - "name": "_removeHighlightClass", - "kind": 4096, - "kindString": "Call signature", + "id": 960, + "name": "new DownloadExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "comment": { - "shortText": "Remove class selected from list itme" - }, "parameters": [ { - "id": 6854, - "name": "li", + "id": 961, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "HTMLLIElement" + "name": "Http" + } + }, + { + "id": 962, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 963, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "DownloadExampleComponent", + "id": 931 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 586, - "character": 31 + "fileName": "src/_docs/components/download/component-example.ts", + "line": 58, + "character": 45 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 6846, - "name": "_removeSelectedClassFromListItems", - "kind": 2048, - "kindString": "Method", + "id": 956, + "name": "base", + "kind": 1024, + "kindString": "Property", "flags": { - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 6847, - "name": "_removeSelectedClassFromListItems", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Removes selected class from all items in list" - }, - "parameters": [ - { - "id": 6848, - "name": "list", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "HTMLCollection" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/components/download/component-example.ts", + "line": 58, + "character": 13 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/download/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 952, + "name": "downloadAllUrl", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 566, - "character": 43 + "fileName": "src/_docs/components/download/component-example.ts", + "line": 52, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"http://fakesite.com/download/1234\"" }, { - "id": 6844, - "name": "_resetListHighlighting", - "kind": 2048, - "kindString": "Method", + "id": 955, + "name": "example", + "kind": 1024, + "kindString": "Property", "flags": { - "isPrivate": true, "isExported": true }, - "signatures": [ + "sources": [ { - "id": 6845, - "name": "_resetListHighlighting", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Reset highlighted item index and removed selected class" - }, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/components/download/component-example.ts", + "line": 56, + "character": 9 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 965, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 545, - "character": 32 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 6899, - "name": "_setInputValue", - "kind": 2048, - "kindString": "Method", + "id": 964, + "name": "markdown", + "kind": 1024, + "kindString": "Property", "flags": { - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 6900, - "name": "_setInputValue", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": {}, - "parameters": [ - { - "id": 6901, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "instrinct", - "name": "string" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 959, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 826, - "character": 24 + "fileName": "src/_docs/components/download/component-example.ts", + "line": 63, + "character": 20 } - ] + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 6895, - "name": "_setValue", - "kind": 2048, - "kindString": "Method", + "id": 932, + "name": "packages", + "kind": 1024, + "kindString": "Property", "flags": { - "isPrivate": true, "isExported": true }, - "signatures": [ + "sources": [ { - "id": 6896, - "name": "_setValue", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Sets the value internally in the component" - }, - "typeParameter": [ - { - "id": 6897, - "name": "T", - "kind": 131072, - "kindString": "Type parameter", - "flags": {} - } - ], - "parameters": [ - { - "id": 6898, - "name": "value", - "kind": 32768, - "kindString": "Parameter", + "fileName": "src/_docs/components/download/component-example.ts", + "line": 27, + "character": 10 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 933, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", "flags": {}, - "type": { - "type": "typeParameter", - "name": "T" - } + "children": [ + { + "id": 938, + "name": "access", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 33, + "character": 14 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Public\"" + }, + { + "id": 950, + "name": "accordionState", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 48, + "character": 22 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"collapsed\"" + }, + { + "id": 951, + "name": "downloadUrl", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 49, + "character": 19 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"http://fakesite.com/download/3333\"" + }, + { + "id": 935, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 30, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Industry Day IV Change of Location\"" + }, + { + "id": 934, + "name": "packageId", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"5510527885db16f1d7ae72ecfa8e6567\"" + }, + { + "id": 937, + "name": "postedDate", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 32, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Apr 07, 2015\"" + }, + { + "id": 939, + "name": "resources", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 34, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 940, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 944, + "name": "description", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 39, + "character": 23 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Industry Day IV change of conference room.\"" + }, + { + "id": 946, + "name": "downloadUrl", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 41, + "character": 23 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"http://fakesite.com/download/4444\"" + }, + { + "id": 942, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 37, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"J.pdf\"" + }, + { + "id": 941, + "name": "resourceId", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 36, + "character": 22 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"862178b04be2db1778a697464f186836\"" + }, + { + "id": 945, + "name": "size", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 40, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"83 kB\"" + }, + { + "id": 943, + "name": "type", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 38, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"file\"" + }, + { + "id": 947, + "name": "typeInfo", + "kind": 2097152, + "kindString": "Object literal", + "flags": {}, + "children": [ + { + "id": 949, + "name": "iconClass", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 44, + "character": 23 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"fa fa-file-pdf-o\"" + }, + { + "id": 948, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 43, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"PDF document\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 949, + 948 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 42, + "character": 20 + } + ], + "type": { + "type": "instrinct", + "name": "object" + } + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 944, + 946, + 942, + 941, + 945, + 943 + ] + }, + { + "title": "Object literals", + "kind": 2097152, + "children": [ + 947 + ] + } + ] + } + } + ] + }, + "defaultValue": " [\n {\n \"resourceId\": \"862178b04be2db1778a697464f186836\",\n \"name\": \"J.pdf\",\n \"type\": \"file\",\n \"description\": \"Industry Day IV change of conference room.\",\n \"size\": \"83 kB\",\n \"downloadUrl\": \"http://fakesite.com/download/4444\",\n \"typeInfo\": {\n \"name\": \"PDF document\",\n \"iconClass\": \"fa fa-file-pdf-o\"\n }\n }\n ]" + }, + { + "id": 936, + "name": "type", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/download/component-example.ts", + "line": 31, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Other (Draft RFPs/RFIs, Responses to Questions, etc..)\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 938, + 950, + 951, + 935, + 934, + 937, + 939, + 936 + ] + } + ] } - ], - "type": { - "type": "typeParameter", - "name": "T" } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 817, - "character": 19 - } - ] - }, - { - "id": 6881, - "name": "_stringFilter", - "kind": 2048, - "kindString": "Method", - "flags": { - "isPrivate": true, - "isExported": true + ] }, - "signatures": [ - { - "id": 6882, - "name": "_stringFilter", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Returns an array of filtered options\nwhere each option contains the passed\nvalue as a substring." - }, - "parameters": [ - { - "id": 6883, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "type": { - "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "isArray": true, - "name": "any" - } - ] - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 710, - "character": 23 - } - ] + "defaultValue": " [\n {\n \"packageId\": \"5510527885db16f1d7ae72ecfa8e6567\",\n \"name\": \"Industry Day IV Change of Location\",\n \"type\": \"Other (Draft RFPs/RFIs, Responses to Questions, etc..)\",\n \"postedDate\": \"Apr 07, 2015\",\n \"access\": \"Public\",\n \"resources\": [\n {\n \"resourceId\": \"862178b04be2db1778a697464f186836\",\n \"name\": \"J.pdf\",\n \"type\": \"file\",\n \"description\": \"Industry Day IV change of conference room.\",\n \"size\": \"83 kB\",\n \"downloadUrl\": \"http://fakesite.com/download/4444\",\n \"typeInfo\": {\n \"name\": \"PDF document\",\n \"iconClass\": \"fa fa-file-pdf-o\"\n }\n }\n ],\n \"accordionState\": \"collapsed\",\n \"downloadUrl\": \"http://fakesite.com/download/3333\"\n }\n ]" }, { - "id": 6893, - "name": "clearComponent", - "kind": 2048, - "kindString": "Method", + "id": 966, + "name": "sections", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 6894, - "name": "clearComponent", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 810, - "character": 23 - } - ] - }, - { - "id": 6863, - "name": "displayClearButton", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true, - "isOptional": true - }, - "signatures": [ - { - "id": 6864, - "name": "displayClearButton", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "If input has focus, return true" - }, - "type": { - "type": "instrinct", - "name": "boolean" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 645, - "character": 27 - } - ] - }, - { - "id": 6865, - "name": "displayOptionText", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6866, - "name": "displayOptionText", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Returns string representing option's value\nafter determining the type of option" - }, - "parameters": [ - { - "id": 6867, - "name": "option", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 653, - "character": 26 - } - ] + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } }, { - "id": 6828, - "name": "ngAfterContentInit", - "kind": 2048, - "kindString": "Method", + "id": 958, + "name": "service", + "kind": 1024, + "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 6829, - "name": "ngAfterContentInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 432, - "character": 27 + "fileName": "src/_docs/components/download/component-example.ts", + "line": 62, + "character": 18 } - ] + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 6826, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", + "id": 954, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "signatures": [ - { - "id": 6827, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 251, + "fileName": "src/_docs/components/download/component-example.ts", + "line": 54, "character": 17 } - ] - }, - { - "id": 6805, - "name": "onChangeCallback", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6806, - "name": "onChangeCallback", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6807, - "name": "_", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 230, - "character": 25 - } - ] - }, - { - "id": 6803, - "name": "onTouchedCallback", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true + "type": { + "type": "instrinct", + "name": "string" }, - "signatures": [ - { - "id": 6804, - "name": "onTouchedCallback", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 229, - "character": 26 - } - ] + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } }, { - "id": 6830, - "name": "pipe", - "kind": 2048, - "kindString": "Method", + "id": 953, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "signatures": [ - { - "id": 6831, - "name": "pipe", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Takes any number of functions\nand returns a function that is\nthe composition of the passed\nfunctions." - }, - "parameters": [ - { - "id": 6832, - "name": "functions", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 450, - "character": 13 - } - ] - }, - { - "id": 6811, - "name": "registerOnChange", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 6812, - "name": "registerOnChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6813, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 6814, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 6815, - "name": "__call", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6816, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 239, - "character": 29 - } - ] - } - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/components/download/component-example.ts", + "line": 53, + "character": 16 } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 239, - "character": 25 - } - ] - }, - { - "id": 6817, - "name": "registerOnTouched", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true + "type": { + "type": "instrinct", + "name": "string" }, - "signatures": [ - { - "id": 6818, - "name": "registerOnTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6819, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 6820, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 6821, - "name": "__call", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6822, - "name": "args", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isRest": true - }, - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 243, - "character": 30 - } - ] - } - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 243, - "character": 26 - } - ] + "defaultValue": "\"SamDownloadComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 6823, - "name": "setDisabledState", + "id": 972, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { @@ -177259,41 +79461,51 @@ }, "signatures": [ { - "id": 6824, - "name": "setDisabledState", + "id": 973, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 6825, - "name": "isDisabled", + "id": 974, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "boolean" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 247, - "character": 25 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 6890, - "name": "updateComponentValue", + "id": 967, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { @@ -177302,44 +79514,38 @@ }, "signatures": [ { - "id": 6891, - "name": "updateComponentValue", + "id": 968, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "Given a value, update the state" - }, - "parameters": [ - { - "id": 6892, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 779, - "character": 29 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 6808, - "name": "writeValue", + "id": 969, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { @@ -177348,18 +79554,15 @@ }, "signatures": [ { - "id": 6809, - "name": "writeValue", + "id": 970, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, - "comment": { - "shortText": "ControlValueAccessor Logic" - }, "parameters": [ { - "id": 6810, - "name": "value", + "id": 971, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -177372,16 +79575,26 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 235, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "groups": [ @@ -177389,113 +79602,54 @@ "title": "Constructors", "kind": 512, "children": [ - 6793 + 957 ] }, { "title": "Properties", "kind": 1024, "children": [ - 6792, - 6781, - 6779, - 6795, - 6774, - 6782, - 6777, - 6766, - 6778, - 6765, - 6796, - 6767, - 6780, - 6772, - 6794, - 6773, - 6769, - 6762, - 6761, - 6758, - 6748, - 6750, - 6764, - 6771, - 6776, - 6763, - 6746, - 6752, - 6775, - 6745, - 6742, - 6770, - 6759, - 6743, - 6744, - 6741, - 6791, - 6790, - 6786, - 6787, - 6788, - 6789, - 6757, - 6747, - 6749, - 6797, - 6760, - 6751, - 6768 + 956, + 952, + 955, + 965, + 964, + 959, + 932, + 966, + 958, + 954, + 953 ] }, { "title": "Methods", "kind": 2048, "children": [ - 6849, - 6859, - 6855, - 6884, - 6868, - 6873, - 6836, - 6833, - 6838, - 6840, - 6878, - 6887, - 6852, - 6846, - 6844, - 6899, - 6895, - 6881, - 6893, - 6863, - 6865, - 6828, - 6826, - 6805, - 6803, - 6830, - 6811, - 6817, - 6823, - 6890, - 6808 + 972, + 967, + 969 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 40, - "character": 45 + "fileName": "src/_docs/components/download/component-example.ts", + "line": 26, + "character": 37 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 } ], "implementedTypes": [ { "type": "reference", - "name": "ControlValueAccessor" + "name": "OnInit" }, { "type": "reference", @@ -177504,104 +79658,23 @@ ] }, { - "id": 6902, - "name": "AUTOCOMPLETE_VALUE_ACCESSOR", - "kind": 2097152, - "kindString": "Object literal", + "id": 975, + "name": "code_example", + "kind": 32, + "kindString": "Variable", "flags": {}, - "children": [ - { - "id": 6905, - "name": "multi", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 32, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 6903, - "name": "provide", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 30, - "character": 9 - } - ], - "type": { - "type": "reference", - "name": "InjectionToken", - "typeArguments": [ - { - "type": "reference", - "name": "ControlValueAccessor" - } - ] - }, - "defaultValue": " NG_VALUE_ACCESSOR" - }, - { - "id": 6904, - "name": "useExisting", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 31, - "character": 13 - } - ], - "type": { - "type": "reference", - "name": "Type", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " forwardRef(() => SamAutocompleteComponentRefactor)" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 6905, - 6903, - 6904 - ] - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", - "line": 29, - "character": 33 + "fileName": "src/_docs/components/download/component-example.ts", + "line": 12, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": " `
    \n
    \n \n
    \n
    `" } ], "groups": [ @@ -177609,162 +79682,401 @@ "title": "Classes", "kind": 128, "children": [ - 6740 + 931 ] }, { - "title": "Object literals", - "kind": 2097152, + "title": "Variables", + "kind": 32, "children": [ - 6902 + 975 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/autocomplete.component.ts", + "fileName": "src/_docs/components/download/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 6710, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher\"", + "id": 976, + "name": "\"src/_docs/components/files/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/files/component-example.ts", "children": [ { - "id": 6711, - "name": "ScreenReaderPusher", + "id": 977, + "name": "SamFilesComponentExampleComponent", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-sam-files',\n template: ''+ code_example +''\n}" + } + } + ], "children": [ { - "id": 6712, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", + "id": 982, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 985, + "name": "new SamFilesComponentExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 986, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 987, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 988, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], + "type": { + "type": "reference", + "name": "SamFilesComponentExampleComponent", + "id": 977 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/components/files/component-example.ts", + "line": 32, + "character": 42 + } + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 981, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/files/component-example.ts", + "line": 32, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/files/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 980, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/files/component-example.ts", + "line": 29, + "character": 8 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 990, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 989, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 984, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/files/component-example.ts", + "line": 37, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 991, + "name": "sections", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 6715, - "name": "new ScreenReaderPusher", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 6716, - "name": "_renderer", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Renderer2" - } - }, - { - "id": 6717, - "name": "_uListElement", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "HTMLUListElement" - } - } - ], - "type": { - "type": "reference", - "name": "ScreenReaderPusher", - "id": 6711 - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 983, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", - "line": 3, - "character": 33 + "fileName": "src/_docs/components/files/component-example.ts", + "line": 36, + "character": 18 } - ] + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 6713, - "name": "_renderer", + "id": 979, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", - "line": 5, - "character": 31 + "fileName": "src/_docs/components/files/component-example.ts", + "line": 27, + "character": 17 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { "type": "reference", - "name": "Renderer2" + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 6714, - "name": "_uListElement", + "id": 978, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", - "line": 6, - "character": 25 + "fileName": "src/_docs/components/files/component-example.ts", + "line": 26, + "character": 16 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamFilesComponent\"", + "overwrites": { "type": "reference", - "name": "HTMLUListElement" + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 6723, - "name": "_generateLI", + "id": 997, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 6724, - "name": "_generateLI", + "id": 998, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 6725, - "name": "message", + "id": 999, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -177776,21 +80088,31 @@ ], "type": { "type": "reference", - "name": "HTMLLIElement" + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", - "line": 23, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 6721, - "name": "clearMessages", + "id": 992, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { @@ -177799,28 +80121,38 @@ }, "signatures": [ { - "id": 6722, - "name": "clearMessages", + "id": 993, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", - "line": 16, - "character": 22 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 6718, - "name": "pushMessage", + "id": 994, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { @@ -177829,37 +80161,47 @@ }, "signatures": [ { - "id": 6719, - "name": "pushMessage", + "id": 995, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 6720, - "name": "message", + "id": 996, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "string" + "name": "any" } } ], "type": { "type": "instrinct", - "name": "string" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", - "line": 8, - "character": 20 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "groups": [ @@ -177867,34 +80209,77 @@ "title": "Constructors", "kind": 512, "children": [ - 6712 + 982 ] }, { "title": "Properties", "kind": 1024, "children": [ - 6713, - 6714 + 981, + 980, + 990, + 989, + 984, + 991, + 983, + 979, + 978 ] }, { "title": "Methods", "kind": 2048, "children": [ - 6723, - 6721, - 6718 + 997, + 992, + 994 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", - "line": 3, - "character": 31 + "fileName": "src/_docs/components/files/component-example.ts", + "line": 25, + "character": 46 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" } ] + }, + { + "id": 1000, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/files/component-example.ts", + "line": 19, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `TODO`" } ], "groups": [ @@ -177902,39 +80287,43 @@ "title": "Classes", "kind": 128, "children": [ - 6711 + 977 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1000 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/autocomplete/refactor/screenreader-pusher.ts", + "fileName": "src/_docs/components/files/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 6908, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component\"", + "id": 1001, + "name": "\"src/_docs/components/filters-container/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/filters-container/component-example.ts", "children": [ { - "id": 6909, - "name": "SamCheckboxComponent", + "id": 1002, + "name": "FiltersContainerExampleComponent", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, - "comment": { - "shortText": "The component is a set of checkboxes" - }, "decorators": [ { "name": "Component", @@ -177943,13 +80332,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-checkbox',\n templateUrl: 'checkbox.template.html',\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => SamCheckboxComponent),\n multi: true\n }]\n}" + "obj": "{\n\tselector: 'doc-spinner',\n template: `\n\n`+code_example+`\n\n`\n}" } } ], "children": [ { - "id": 6933, + "id": 1008, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -177958,662 +80347,455 @@ }, "signatures": [ { - "id": 6935, - "name": "new SamCheckboxComponent", + "id": 1011, + "name": "new FiltersContainerExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 6936, - "name": "samFormService", + "id": 1012, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "Http" + } + }, + { + "id": 1013, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1014, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "SamCheckboxComponent", - "id": 6909 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 98, - "character": 3 - } - ] - }, - { - "id": 6923, - "name": "_ordering", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 87, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6918, - "name": "control", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the angular FormControl" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" + "name": "FiltersContainerExampleComponent", + "id": 1002 }, - "arguments": {} + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 66, - "character": 18 + "fileName": "src/_docs/components/filters-container/component-example.ts", + "line": 39, + "character": 54 } ], - "type": { + "overwrites": { "type": "reference", - "name": "FormControl" + "name": "BaseExampleComponent.__constructor", + "id": 287 } }, { - "id": 6920, - "name": "disabled", + "id": 1007, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets disabled state" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 74, - "character": 19 + "fileName": "src/_docs/components/filters-container/component-example.ts", + "line": 39, + "character": 13 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" + }, + "defaultValue": "\"_docs/components/filters-container/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 6916, - "name": "errorMessage", + "id": 1006, + "name": "dateModel", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the form control error message" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 58, - "character": 23 + "fileName": "src/_docs/components/filters-container/component-example.ts", + "line": 37, + "character": 11 } ], "type": { "type": "instrinct", "name": "string" - } + }, + "defaultValue": "\"2016-02-03\"" }, { - "id": 6917, - "name": "hasSelectAll", + "id": 1005, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "If true, an addition checkbox is added that selects all the checkboxes" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 62, - "character": 23 + "fileName": "src/_docs/components/filters-container/component-example.ts", + "line": 36, + "character": 8 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 6914, - "name": "hint", + "id": 1016, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets helpful text for the using the component" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 50, - "character": 15 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 6912, - "name": "label", + "id": 1015, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the label text" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 42, - "character": 16 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 6910, - "name": "model", + "id": 1010, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Deprecated, Sets the bound value of the component" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 34, - "character": 16 + "fileName": "src/_docs/components/filters-container/component-example.ts", + "line": 44, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "MarkdownService", + "id": 238 }, - "defaultValue": " []" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 6921, - "name": "modelChange", + "id": 1017, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Deprecated, Event emitted when the model value changes" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 78, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { "type": "reference", - "name": "EventEmitter", + "name": "Array", "typeArguments": [ { "type": "instrinct", - "name": "any" + "name": "string" } ] }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 6913, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the semantic description for the component" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 46, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 6911, - "name": "options", + "id": 1009, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the array of checkbox values and labels (see OptionsType[])" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 38, + "fileName": "src/_docs/components/filters-container/component-example.ts", + "line": 43, "character": 18 } ], "type": { "type": "reference", - "isArray": true, - "name": "OptionsType", - "id": 3829 + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 6915, - "name": "required", + "id": 1004, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets required text on component" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 54, - "character": 19 + "fileName": "src/_docs/components/filters-container/component-example.ts", + "line": 34, + "character": 17 } ], "type": { "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 6934, - "name": "samFormService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "name": "string" }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 100, - "character": 36 - } - ], - "type": { + "defaultValue": "\"\"", + "overwrites": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 6919, - "name": "useFormService", + "id": 1003, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Toggles validations to display with SamFormService events" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 70, - "character": 25 + "fileName": "src/_docs/components/filters-container/component-example.ts", + "line": 33, + "character": 16 } ], "type": { "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 6922, - "name": "wrapper", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true + "name": "string" }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "FieldsetWrapper" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 81, - "character": 16 - } - ], - "type": { + "defaultValue": "\"SamFiltersContainerComponent\"", + "overwrites": { "type": "reference", - "name": "FieldsetWrapper", - "id": 4632 + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 6929, - "name": "value", - "kind": 262144, - "kindString": "Accessor", + "id": 1023, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "getSignature": [ - { - "id": 6930, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "setSignature": [ + "signatures": [ { - "id": 6931, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", + "id": 1024, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 6932, - "name": "val", + "id": 1025, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 90, - "character": 11 - }, - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 94, - "character": 11 - } - ] - }, - { - "id": 6942, - "name": "checkAllLabelName", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6943, - "name": "checkAllLabelName", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 141, - "character": 19 - } - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 6954, - "name": "emitModel", + "id": 1018, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 6955, - "name": "emitModel", + "id": 1019, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 184, - "character": 11 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 6944, - "name": "isChecked", + "id": 1020, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 6945, - "name": "isChecked", + "id": 1021, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 6946, - "name": "value", + "id": 1022, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -178625,400 +80807,601 @@ ], "type": { "type": "instrinct", - "name": "boolean" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 145, - "character": 11 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1008 ] }, { - "id": 6937, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6938, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 102, - "character": 10 - } + "title": "Properties", + "kind": 1024, + "children": [ + 1007, + 1006, + 1005, + 1016, + 1015, + 1010, + 1017, + 1009, + 1004, + 1003 ] }, { - "id": 6924, - "name": "onChange", + "title": "Methods", "kind": 2048, - "kindString": "Method", + "children": [ + 1023, + 1018, + 1020 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/filters-container/component-example.ts", + "line": 32, + "character": 45 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 1026, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/filters-container/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n \n

    Filter 1

    \n
    \n \n \n \n \n

    Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptate ex aliquam, molestiae tempora. Nihil alias blanditiis excepturi architecto rerum repellendus adipisci ducimus minus, modi porro nostrum repudiandae perferendis placeat et.

    \n
    \n
    `" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1002 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1026 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/filters-container/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 1027, + "name": "\"src/_docs/components/header/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/header/component-example.ts", + "children": [ + { + "id": 1028, + "name": "SamHeaderComponentExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-sam-header',\n template: '' + code_example + ''\n}" + } + } + ], + "children": [ + { + "id": 1033, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, "signatures": [ { - "id": 6925, - "name": "onChange", - "kind": 4096, - "kindString": "Call signature", + "id": 1036, + "name": "new SamHeaderComponentExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 6926, - "name": "c", + "id": 1037, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "Http" } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 88, - "character": 10 - } - ] - }, - { - "id": 6947, - "name": "onCheckChanged", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6948, - "name": "onCheckChanged", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ + }, { - "id": 6949, - "name": "value", + "id": 1038, + "name": "service", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "DocumentationService", + "id": 148 } }, { - "id": 6950, - "name": "isChecked", + "id": 1039, + "name": "mdService", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "SamHeaderComponentExampleComponent", + "id": 1028 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 149, - "character": 16 + "fileName": "src/_docs/components/header/component-example.ts", + "line": 32, + "character": 43 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 6951, - "name": "onSelectAllChange", - "kind": 2048, - "kindString": "Method", + "id": 1032, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/header/component-example.ts", + "line": 32, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/header/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 1031, + "name": "example", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ + "sources": [ { - "id": 6952, - "name": "onSelectAllChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6953, - "name": "isSelectAllChecked", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/components/header/component-example.ts", + "line": 30, + "character": 9 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 1041, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 176, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 6927, - "name": "onTouched", - "kind": 2048, - "kindString": "Method", + "id": 1040, + "name": "markdown", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 6928, - "name": "onTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 1035, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 89, - "character": 11 + "fileName": "src/_docs/components/header/component-example.ts", + "line": 37, + "character": 20 } - ] + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 6956, - "name": "registerOnChange", - "kind": 2048, - "kindString": "Method", + "id": 1042, + "name": "sections", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 6957, - "name": "registerOnChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6958, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 1034, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 188, + "fileName": "src/_docs/components/header/component-example.ts", + "line": 36, "character": 18 } - ] + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 6959, - "name": "registerOnTouched", - "kind": 2048, - "kindString": "Method", + "id": 1030, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ + "sources": [ { - "id": 6960, - "name": "registerOnTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6961, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/components/header/component-example.ts", + "line": 28, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 1029, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 192, - "character": 19 + "fileName": "src/_docs/components/header/component-example.ts", + "line": 27, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamHeaderComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 6962, - "name": "setDisabledState", + "id": 1048, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 6963, - "name": "setDisabledState", + "id": 1049, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 6964, - "name": "disabled", + "id": 1050, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 196, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 6939, - "name": "setModelValue", + "id": 1043, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 6940, - "name": "setModelValue", + "id": 1044, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 6941, - "name": "val", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 123, - "character": 15 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 6965, - "name": "writeValue", + "id": 1045, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 6966, - "name": "writeValue", + "id": 1046, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 6967, - "name": "value", + "id": 1047, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -179031,16 +81414,26 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 200, - "character": 12 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "groups": [ @@ -179048,126 +81441,77 @@ "title": "Constructors", "kind": 512, "children": [ - 6933 + 1033 ] }, { "title": "Properties", "kind": 1024, "children": [ - 6923, - 6918, - 6920, - 6916, - 6917, - 6914, - 6912, - 6910, - 6921, - 6913, - 6911, - 6915, - 6934, - 6919, - 6922 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 6929 + 1032, + 1031, + 1041, + 1040, + 1035, + 1042, + 1034, + 1030, + 1029 ] }, { "title": "Methods", "kind": 2048, "children": [ - 6942, - 6954, - 6944, - 6937, - 6924, - 6947, - 6951, - 6927, - 6956, - 6959, - 6962, - 6939, - 6965 + 1048, + 1043, + 1045 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 30, - "character": 33 + "fileName": "src/_docs/components/header/component-example.ts", + "line": 26, + "character": 47 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 } ], "implementedTypes": [ { "type": "reference", - "name": "ControlValueAccessor" + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" } ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6909 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/checkbox.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6968, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/checkbox/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/checkbox/index.ts", - "children": [ + }, { - "id": 6969, - "name": "SamCheckboxModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n CommonModule,\n SamWrapperModule,\n ],\n declarations: [ SamCheckboxComponent ],\n exports: [ SamCheckboxComponent ]\n}" - } - } - ], + "id": 1051, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/index.ts", - "line": 16, - "character": 30 + "fileName": "src/_docs/components/header/component-example.ts", + "line": 20, + "character": 18 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `TODO`" } ], "groups": [ @@ -179175,39 +81519,43 @@ "title": "Classes", "kind": 128, "children": [ - 6969 + 1028 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1051 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/checkbox/index.ts", + "fileName": "src/_docs/components/header/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 7266, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component\"", + "id": 1052, + "name": "\"src/_docs/components/history/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/history/component-example.ts", "children": [ { - "id": 7267, - "name": "SamDateRangeComponent", + "id": 1053, + "name": "HistoryExampleComponent", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, - "comment": { - "shortText": "The component is a Date entry portion of a form" - }, "decorators": [ { "name": "Component", @@ -179216,13 +81564,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-date-range',\n templateUrl: 'date-range.template.html',\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => SamDateRangeComponent),\n multi: true\n }]\n}" + "obj": "{\n\tselector: 'doc-history',\n template: `\n\n`+code_example+`\n\n`\n}" } } ], "children": [ { - "id": 7331, + "id": 1068, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -179231,65 +81579,76 @@ }, "signatures": [ { - "id": 7333, - "name": "new SamDateRangeComponent", + "id": 1071, + "name": "new HistoryExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7334, - "name": "samFormService", + "id": 1072, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "Http" + } + }, + { + "id": 1073, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1074, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "SamDateRangeComponent", - "id": 7267 + "name": "HistoryExampleComponent", + "id": 1053 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 204, - "character": 3 - } - ] - }, - { - "id": 7287, - "name": "DT_INPUT_FORMAT", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 105, - "character": 24 + "fileName": "src/_docs/components/history/component-example.ts", + "line": 54, + "character": 44 } ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Y-M-DTH:m\"" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 7285, - "name": "INPUT_FORMAT", + "id": 1067, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { @@ -179298,42 +81657,51 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 103, - "character": 21 + "fileName": "src/_docs/components/history/component-example.ts", + "line": 54, + "character": 13 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"Y-M-D\"" + "defaultValue": "\"_docs/components/history/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 7286, - "name": "OUTPUT_FORMAT", + "id": 1066, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 104, - "character": 22 + "fileName": "src/_docs/components/history/component-example.ts", + "line": 52, + "character": 9 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"YYYY-MM-DD\"" + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } }, { - "id": 7288, - "name": "T_OUTPUT_FORMAT", + "id": 1076, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { @@ -179342,302 +81710,378 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 106, - "character": 24 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"HH:mm\"" - }, - { - "id": 7280, - "name": "control", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Passes in the Angular FormControl" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 85, - "character": 18 - } - ], - "type": { + "defaultValue": "\"\"", + "inheritedFrom": { "type": "reference", - "name": "FormControl" + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 7283, - "name": "defaultValidations", + "id": 1054, + "name": "history", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Toggles default component validations" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 97, - "character": 29 + "fileName": "src/_docs/components/history/component-example.ts", + "line": 27, + "character": 9 } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 1055, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1056, + "name": "authoritative", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/history/component-example.ts", + "line": 29, + "character": 19 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"0\"" + }, + { + "id": 1057, + "name": "date", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/history/component-example.ts", + "line": 30, + "character": 10 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Feb 04, 2016 8:20am\"" + }, + { + "id": 1058, + "name": "description", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/history/component-example.ts", + "line": 31, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Lorem Ipsum\"" + }, + { + "id": 1059, + "name": "id", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/history/component-example.ts", + "line": 32, + "character": 8 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"0564cc38f28e1a85ea66de2bb78dae29\"" + }, + { + "id": 1060, + "name": "index", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/history/component-example.ts", + "line": 33, + "character": 11 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"1\"" + }, + { + "id": 1061, + "name": "isTagged", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/history/component-example.ts", + "line": 34, + "character": 14 + } + ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "false" + }, + { + "id": 1062, + "name": "title", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/history/component-example.ts", + "line": 35, + "character": 11 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Original Combined Synopsis/Solicitation\"" + }, + { + "id": 1063, + "name": "url", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/history/component-example.ts", + "line": 36, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"opportunities/0564cc38f28e1a85ea66de2bb78dae29\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1056, + 1057, + 1058, + 1059, + 1060, + 1061, + 1062, + 1063 + ] + } + ] + } + } + ] }, - "defaultValue": "true" + "defaultValue": " [\n {\n authoritative: \"0\",\n date: \"Feb 04, 2016 8:20am\",\n description: \"Lorem Ipsum\",\n id: \"0564cc38f28e1a85ea66de2bb78dae29\",\n index: \"1\",\n isTagged: false,\n title: \"Original Combined Synopsis/Solicitation\",\n url: \"opportunities/0564cc38f28e1a85ea66de2bb78dae29\",\n },\n {\n authoritative: \"1\",\n date: \"Mar 13, 2016 1:21pm\",\n description: \"\",\n id: \"1a610c814d73fc23a6b71decc9b4c548\",\n index: \"2\",\n isTagged: false,\n title: \"Award Notice\",\n url: \"opportunities/1a610c814d73fc23a6b71decc9b4c548\",\n }\n ]" }, { - "id": 7279, - "name": "disabled", + "id": 1075, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the disabled status of component, defaults to false" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 81, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" }, - "defaultValue": "false" + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } }, { - "id": 7269, - "name": "endControl", + "id": 1070, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'endControl'" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 37, - "character": 44 + "fileName": "src/_docs/components/history/component-example.ts", + "line": 59, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 7271, - "name": "endDateComp", + "id": 1077, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'endDate'" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 39, - "character": 42 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 7298, - "name": "endDateValue", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 120, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "any" + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 7277, - "name": "fromRequired", + "id": 1069, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "If set to true, a 'required' designation is shown for start date\nIf default validations are enabled, also enables a validation checking\nthat start date is provided", - "tags": [ - { - "tag": "see", - "text": "{defaultValidations}\n" - } - ] + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 69, - "character": 23 + "fileName": "src/_docs/components/history/component-example.ts", + "line": 58, + "character": 18 } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 7275, - "name": "hint", + "id": 1065, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the helpful hint text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 53, - "character": 15 + "fileName": "src/_docs/components/history/component-example.ts", + "line": 50, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"\"" + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } }, { - "id": 7274, - "name": "label", + "id": 1064, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { "isExported": true - }, - "comment": { - "shortText": "Sets the label text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", + "fileName": "src/_docs/components/history/component-example.ts", "line": 49, "character": 16 } @@ -179646,447 +82090,692 @@ "type": "instrinct", "name": "string" }, - "defaultValue": "\"\"" + "defaultValue": "\"SamHistoryComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 7276, - "name": "required", - "kind": 1024, - "kindString": "Property", + "id": 1083, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true - }, - "comment": { - "shortText": "If set to true, a 'required' designation is shown for both start and end\ndate. If default validations are enabled, also enables a validation\nchecking that both start and end date are provided.", - "tags": [ - { - "tag": "see", - "text": "{defaultValidations}\n" - } - ] + "isExported": true, + "isPublic": true }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1084, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1085, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], "type": { "type": "reference", - "name": "Input" + "name": "Subscription" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 61, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "type": { - "type": "instrinct", - "name": "boolean" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } }, { - "id": 7332, - "name": "samFormService", - "kind": 1024, - "kindString": "Property", + "id": 1078, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isPublic": true }, + "signatures": [ + { + "id": 1079, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 206, - "character": 36 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "type": { + "inheritedFrom": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 7273, - "name": "stacked", - "kind": 1024, - "kindString": "Property", + "id": 1080, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the label text" + "isExported": true, + "isPublic": true }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1081, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1082, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], "type": { - "type": "reference", - "name": "Input" + "type": "instrinct", + "name": "void" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 45, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1068 + ] }, { - "id": 7268, - "name": "startControl", + "title": "Properties", "kind": 1024, - "kindString": "Property", + "children": [ + 1067, + 1066, + 1076, + 1054, + 1075, + 1070, + 1077, + 1069, + 1065, + 1064 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 1083, + 1078, + 1080 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/history/component-example.ts", + "line": 26, + "character": 36 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 1086, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/history/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `
    \n
    \n \n
    \n
    `" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1053 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1086 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/history/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 1087, + "name": "\"src/_docs/components/image/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/image/component-example.ts", + "children": [ + { + "id": 1088, + "name": "SamImageComponentExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-sam-image',\n template: '' + code_example + ''\n}" + } + } + ], + "children": [ + { + "id": 1093, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "decorators": [ + "signatures": [ { - "name": "ViewChild", + "id": 1096, + "name": "new SamImageComponentExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 1097, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 1098, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1099, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], "type": { "type": "reference", - "name": "ViewChild" + "name": "SamImageComponentExampleComponent", + "id": 1088 }, - "arguments": { - "selector": "'startControl'" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 36, - "character": 48 + "fileName": "src/_docs/components/image/component-example.ts", + "line": 37, + "character": 42 } ], - "type": { - "type": "instrinct", - "name": "any" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } }, { - "id": 7270, - "name": "startDateComp", + "id": 1092, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'startDate'" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 38, - "character": 46 + "fileName": "src/_docs/components/image/component-example.ts", + "line": 37, + "character": 13 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" + }, + "defaultValue": "\"_docs/components/image/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 7297, - "name": "startDateValue", + "id": 1091, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 119, - "character": 24 + "fileName": "src/_docs/components/image/component-example.ts", + "line": 35, + "character": 9 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 7278, - "name": "toRequired", + "id": 1104, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "If set to true, a 'required' designation is shown for end date\nIf default validations are enabled, also enables a validation checking that\nend date is provided", - "tags": [ - { - "tag": "see", - "text": "{defaultValidations}\n" - } - ] + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 77, - "character": 21 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 7281, - "name": "type", + "id": 1103, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Toggles date-time mode" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 89, - "character": 15 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"date\"" + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } }, { - "id": 7282, - "name": "useFormService", + "id": 1095, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Toggles validations to display with SamFormService events" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 93, - "character": 25 + "fileName": "src/_docs/components/image/component-example.ts", + "line": 42, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 7284, - "name": "valueChange", + "id": 1105, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "(deprecated) Event emitted when value changes" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 101, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { "type": "reference", - "name": "EventEmitter", + "name": "Array", "typeArguments": [ { "type": "instrinct", - "name": "any" + "name": "string" } ] }, - "defaultValue": " new EventEmitter()" + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } }, { - "id": 7272, - "name": "wrapper", + "id": 1094, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "decorators": [ + "sources": [ { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'wrapper'" - } + "fileName": "src/_docs/components/image/component-example.ts", + "line": 41, + "character": 18 } ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 1090, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 40, - "character": 38 + "fileName": "src/_docs/components/image/component-example.ts", + "line": 33, + "character": 17 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 7361, - "name": "dateBlur", - "kind": 2048, - "kindString": "Method", + "id": 1089, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ - { - "id": 7362, - "name": "dateBlur", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 332, - "character": 10 + "fileName": "src/_docs/components/image/component-example.ts", + "line": 32, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamImageComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 7356, - "name": "dateChange", + "id": 1111, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7357, - "name": "dateChange", + "id": 1112, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, + "parameters": [ + { + "id": 1113, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 302, - "character": 12 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 7353, - "name": "endDateChange", + "id": 1100, + "name": "fileChangeHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7354, - "name": "endDateChange", + "id": 1101, + "name": "fileChangeHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7355, - "name": "evt", + "id": 1102, + "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -180104,60 +82793,72 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 296, - "character": 15 + "fileName": "src/_docs/components/image/component-example.ts", + "line": 49, + "character": 26 } ] }, { - "id": 7343, - "name": "focusHandler", + "id": 1106, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7344, - "name": "focusHandler", + "id": 1107, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 248, - "character": 14 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 7347, - "name": "getDate", + "id": 1108, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7348, - "name": "getDate", + "id": 1109, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7349, - "name": "model", + "id": 1110, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -180168,311 +82869,745 @@ } ], "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { "type": "reference", - "name": "Moment" + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 286, - "character": 9 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1093 ] }, { - "id": 7358, - "name": "isClean", + "title": "Properties", + "kind": 1024, + "children": [ + 1092, + 1091, + 1104, + 1103, + 1095, + 1105, + 1094, + 1090, + 1089 + ] + }, + { + "title": "Methods", "kind": 2048, - "kindString": "Method", + "children": [ + 1111, + 1100, + 1106, + 1108 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/image/component-example.ts", + "line": 31, + "character": 46 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 1114, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/image/component-example.ts", + "line": 20, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1088 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1114 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/image/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 1115, + "name": "\"src/_docs/components/info-accordion/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/info-accordion/component-example.ts", + "children": [ + { + "id": 1116, + "name": "InfoAccordionExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-info-accordion',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], + "children": [ + { + "id": 1128, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, "signatures": [ { - "id": 7359, - "name": "isClean", - "kind": 4096, - "kindString": "Call signature", + "id": 1131, + "name": "new InfoAccordionExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7360, - "name": "model", + "id": 1132, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "Http" + } + }, + { + "id": 1133, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1134, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "InfoAccordionExampleComponent", + "id": 1116 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 326, - "character": 9 + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 62, + "character": 51 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 1127, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 62, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/info-accordion/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 1117, + "name": "dataConfig", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 27, + "character": 12 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 1118, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1120, + "name": "detail", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 30, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Details for Federal Acquisition Regulation: \"" + }, + { + "id": 1123, + "name": "img", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 33, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"http://placehold.it/200x200\"" + }, + { + "id": 1121, + "name": "link", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 31, + "character": 10 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"View FAR\"" + }, + { + "id": 1119, + "name": "title", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 29, + "character": 11 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Federal Acquisition Regulation\"" + }, + { + "id": 1122, + "name": "url", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 32, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"https://www.acquisition.gov/?q=browsefar\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1120, + 1123, + 1121, + 1119, + 1122 + ] + } + ] + } + } + ] + }, + "defaultValue": " [\n {\n title:\"Federal Acquisition Regulation\",\n detail:\"Details for Federal Acquisition Regulation: \",\n link:\"View FAR\",\n url:\"https://www.acquisition.gov/?q=browsefar\",\n img:\"http://placehold.it/200x200\"\n },\n {\n title:\"Federal Acquisition Regulation\",\n detail:\"Details for Federal Acquisition Regulation: \",\n link:\"View FAR\",\n url:\"https://www.acquisition.gov/?q=browsefar\",\n img:\"http://placehold.it/200x200\"\n },\n {\n title:\"SBA Commercial Market Representative\",\n detail:\"Details for SBA Commercial Market Representative: \",\n link:\"View SBA CMR\",\n url:\"https://www.sba.gov/contracting/resources-small-businesses/commercial-market-representatives\",\n img:\"http://placehold.it/200x200\"\n },\n {\n title:\"Request DUNS Number\",\n detail:\"Details for Request DUNS Number: \",\n link:\"View DUNS Number\",\n url:\"http://fedgov.dnb.com/webform\",\n img:\"http://placehold.it/200x200\"\n }\n ]" }, { - "id": 7341, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", + "id": 1126, + "name": "example", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ - { - "id": 7342, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 244, - "character": 13 + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 60, + "character": 9 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } }, { - "id": 7339, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", + "id": 1136, + "name": "guidance", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 7340, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 1135, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 211, - "character": 10 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } }, { - "id": 7335, - "name": "onChange", - "kind": 2048, - "kindString": "Method", + "id": 1130, + "name": "mdService", + "kind": 1024, + "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 7336, - "name": "onChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 67, + "character": 20 } ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 1137, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 208, + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, "character": 17 } - ] + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } }, { - "id": 7337, - "name": "onTouched", - "kind": 2048, - "kindString": "Method", + "id": 1129, + "name": "service", + "kind": 1024, + "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 7338, - "name": "onTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 209, + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 66, "character": 18 } - ] + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 7345, - "name": "parseValueString", - "kind": 2048, - "kindString": "Method", + "id": 1125, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ + "sources": [ { - "id": 7346, - "name": "parseValueString", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 58, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 1124, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 252, - "character": 18 + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 57, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamInfoAccordionComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 7363, - "name": "registerOnChange", + "id": 1143, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7364, - "name": "registerOnChange", + "id": 1144, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7365, - "name": "fn", + "id": 1145, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 338, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 7366, - "name": "registerOnTouched", + "id": 1138, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7367, - "name": "registerOnTouched", + "id": 1139, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 7368, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 342, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 7369, - "name": "setDisabledState", + "id": 1140, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7370, - "name": "setDisabledState", + "id": 1141, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7371, - "name": "disabled", + "id": 1142, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -180485,870 +83620,631 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 346, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1128 ] }, { - "id": 7350, - "name": "startDateChange", + "title": "Properties", + "kind": 1024, + "children": [ + 1127, + 1117, + 1126, + 1136, + 1135, + 1130, + 1137, + 1129, + 1125, + 1124 + ] + }, + { + "title": "Methods", "kind": 2048, - "kindString": "Method", + "children": [ + 1143, + 1138, + 1140 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 26, + "character": 42 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 1146, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `
    \n
    \n \n
    \n
    `" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1116 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1146 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/info-accordion/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 1147, + "name": "\"src/_docs/components/label/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/label/component-example.ts", + "children": [ + { + "id": 1148, + "name": "LabelExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-label',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], + "children": [ + { + "id": 1153, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, "signatures": [ { - "id": 7351, - "name": "startDateChange", - "kind": 4096, - "kindString": "Call signature", + "id": 1156, + "name": "new LabelExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7352, - "name": "evt", + "id": 1157, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "Http" } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 290, - "character": 17 - } - ] - }, - { - "id": 7372, - "name": "writeValue", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7373, - "name": "writeValue", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ + }, { - "id": 7374, - "name": "value", + "id": 1158, + "name": "service", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "DocumentationService", + "id": 148 } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 350, - "character": 12 - } - ] - }, - { - "id": 7305, - "name": "dateRangeRequired", - "kind": 2048, - "kindString": "Method", - "flags": { - "isStatic": true, - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7306, - "name": "dateRangeRequired", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ + }, { - "id": 7307, - "name": "instance", + "id": 1159, + "name": "mdService", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "SamDateRangeComponent", - "id": 7267 + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "(Anonymous function)" + "name": "LabelExampleComponent", + "id": 1148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 141, - "character": 33 + "fileName": "src/_docs/components/label/component-example.ts", + "line": 28, + "character": 42 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 7299, - "name": "dateRangeValidation", - "kind": 2048, - "kindString": "Method", + "id": 1152, + "name": "base", + "kind": 1024, + "kindString": "Property", "flags": { - "isStatic": true, "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 7300, - "name": "dateRangeValidation", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7301, - "name": "c", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "AbstractControl" - } - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 7302, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 7303, - "name": "dateRangeError", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 7304, - "name": "message", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 201, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7304 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 200, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 7303 - ] - } - ] - } - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 122, - "character": 35 + "fileName": "src/_docs/components/label/component-example.ts", + "line": 28, + "character": 13 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/label/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 7326, - "name": "newError", - "kind": 2048, - "kindString": "Method", + "id": 1151, + "name": "example", + "kind": 1024, + "kindString": "Property", "flags": { - "isStatic": true, - "isPrivate": true, "isExported": true }, - "signatures": [ + "sources": [ { - "id": 7327, - "name": "newError", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 7328, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 7329, - "name": "dateRangeError", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 7330, - "name": "message", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 201, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7330 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 200, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 7329 - ] - } - ] - } - } + "fileName": "src/_docs/components/label/component-example.ts", + "line": 26, + "character": 9 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 1161, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 198, - "character": 25 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 7320, - "name": "validateEnd", - "kind": 2048, - "kindString": "Method", + "id": 1160, + "name": "markdown", + "kind": 1024, + "kindString": "Property", "flags": { - "isStatic": true, - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 7321, - "name": "validateEnd", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7322, - "name": "c", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 7323, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 7324, - "name": "dateRangeError", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 7325, - "name": "message", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 201, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7325 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 200, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 7324 - ] - } - ] - } - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 1155, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 186, - "character": 28 + "fileName": "src/_docs/components/label/component-example.ts", + "line": 33, + "character": 20 } - ] + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 7314, - "name": "validateStart", - "kind": 2048, - "kindString": "Method", + "id": 1162, + "name": "sections", + "kind": 1024, + "kindString": "Property", "flags": { - "isStatic": true, - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 7315, - "name": "validateStart", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7316, - "name": "c", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 7317, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 7318, - "name": "dateRangeError", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 7319, - "name": "message", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 201, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7319 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 200, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 7318 - ] - } - ] - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 1154, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/label/component-example.ts", + "line": 32, + "character": 18 } ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 1150, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 175, - "character": 30 + "fileName": "src/_docs/components/label/component-example.ts", + "line": 24, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } }, { - "id": 7308, - "name": "validateStartAndEnd", + "id": 1149, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/label/component-example.ts", + "line": 23, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamLabelComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } + }, + { + "id": 1168, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isStatic": true, - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7309, - "name": "validateStartAndEnd", + "id": 1169, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7310, - "name": "c", + "id": 1170, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "reflection", - "declaration": { - "id": 7311, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 7312, - "name": "dateRangeError", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 7313, - "name": "message", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 201, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7313 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 200, - "character": 20 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 7312 - ] - } - ] - } + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 162, - "character": 36 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 7293, - "name": "endModel", - "kind": 2097152, - "kindString": "Object literal", + "id": 1163, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, - "children": [ - { - "id": 7295, - "name": "day", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 115, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 7294, - "name": "month", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 114, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "signatures": [ { - "id": 7296, - "name": "year", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 116, - "character": 8 - } - ], + "id": 1164, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, "type": { "type": "instrinct", - "name": "undefined" + "name": "void" }, - "defaultValue": " undefined" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7295, - 7294, - 7296 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 113, + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, "character": 17 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 7289, - "name": "startModel", - "kind": 2097152, - "kindString": "Object literal", + "id": 1165, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, - "children": [ - { - "id": 7291, - "name": "day", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 110, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 7290, - "name": "month", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 109, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "signatures": [ { - "id": 7292, - "name": "year", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ + "id": 1166, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 111, - "character": 8 + "id": 1167, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "undefined" + "name": "void" }, - "defaultValue": " undefined" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7291, - 7290, - 7292 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 108, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], @@ -181357,97 +84253,77 @@ "title": "Constructors", "kind": 512, "children": [ - 7331 + 1153 ] }, { "title": "Properties", "kind": 1024, "children": [ - 7287, - 7285, - 7286, - 7288, - 7280, - 7283, - 7279, - 7269, - 7271, - 7298, - 7277, - 7275, - 7274, - 7276, - 7332, - 7273, - 7268, - 7270, - 7297, - 7278, - 7281, - 7282, - 7284, - 7272 + 1152, + 1151, + 1161, + 1160, + 1155, + 1162, + 1154, + 1150, + 1149 ] }, { "title": "Methods", "kind": 2048, "children": [ - 7361, - 7356, - 7353, - 7343, - 7347, - 7358, - 7341, - 7339, - 7335, - 7337, - 7345, - 7363, - 7366, - 7369, - 7350, - 7372, - 7305, - 7299, - 7326, - 7320, - 7314, - 7308 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 7293, - 7289 + 1168, + 1163, + 1165 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 33, + "fileName": "src/_docs/components/label/component-example.ts", + "line": 22, "character": 34 } ], - "implementedTypes": [ + "extendedTypes": [ { "type": "reference", - "name": "OnInit" - }, + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ { "type": "reference", - "name": "OnChanges" + "name": "OnInit" }, { "type": "reference", - "name": "ControlValueAccessor" + "name": "OnInit" } ] + }, + { + "id": 1171, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/label/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" } ], "groups": [ @@ -181455,56 +84331,43 @@ "title": "Classes", "kind": 128, "children": [ - 7267 + 1148 ] - } - ], - "sources": [ + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/date-range.component.ts", - "line": 1, - "character": 0 + "title": "Variables", + "kind": 32, + "children": [ + 1171 + ] } - ] - }, - { - "id": 7375, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/date-range/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/date-range/index.ts", + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-range/index.ts", + "fileName": "src/_docs/components/label/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 7212, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component\"", + "id": 1172, + "name": "\"src/_docs/components/modal/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/modal/component-example.ts", "children": [ { - "id": 7213, - "name": "SamDateTimeComponent", + "id": 1173, + "name": "ModalExampleComponent", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, - "comment": { - "shortText": "The component is a DateTime entry portion of a form" - }, "decorators": [ { "name": "Component", @@ -181513,13 +84376,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-date-time',\n templateUrl: 'date-time.template.html',\n providers: [ MY_VALUE_ACCESSOR ]\n}" + "obj": "{\n\tselector: 'doc-modal',\n template: `\n\n`+code_example+`\n\n`\n}" } } ], "children": [ { - "id": 7230, + "id": 1196, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -181528,43 +84391,76 @@ }, "signatures": [ { - "id": 7232, - "name": "new SamDateTimeComponent", + "id": 1199, + "name": "new ModalExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7233, - "name": "samFormService", + "id": 1200, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "Http" + } + }, + { + "id": 1201, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1202, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "SamDateTimeComponent", - "id": 7213 + "name": "ModalExampleComponent", + "id": 1173 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 72, - "character": 29 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 118, + "character": 42 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 7214, - "name": "INPUT_FORMAT", + "id": 1195, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { @@ -181573,53 +84469,51 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 34, - "character": 21 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 118, + "character": 13 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"Y-M-DTH:m\"" + "defaultValue": "\"_docs/components/modal/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 7220, - "name": "control", + "id": 1184, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the formControl to check validations and update error messaged" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 58, - "character": 18 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 93, + "character": 9 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 7224, - "name": "date", + "id": 1224, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { @@ -181628,312 +84522,417 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 65, - "character": 13 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": " undefined" + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 7225, - "name": "dateComponent", + "id": 1223, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'dateComponent'" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 67, - "character": 50 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { "type": "reference", - "name": "SamDateComponent", - "id": 6971 + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 7219, - "name": "disabled", + "id": 1198, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets disabled attribute value for input" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 54, - "character": 19 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 123, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "MarkdownService", + "id": 238 }, - "defaultValue": "false" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 7218, - "name": "errorMessage", + "id": 1185, + "name": "message", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets error message string to display for invalid values" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 50, - "character": 23 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 94, + "character": 9 } ], "type": { "type": "instrinct", "name": "string" - } + }, + "defaultValue": "\"\"" }, { - "id": 7217, - "name": "hint", + "id": 1186, + "name": "modalAlertTypes", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets hint text" - }, - "decorators": [ + "sources": [ { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 95, + "character": 17 } ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 1187, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1188, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 96, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"success\"" + }, + { + "id": 1189, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 97, + "character": 8 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"success\"" + }, + { + "id": 1190, + "name": "value", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 98, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"success\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1188, + 1189, + 1190 + ] + } + ] + } + } + ] + }, + "defaultValue": " [{\n label:'success',\n name:'success',\n value:'success'\n },{\n label:'warning',\n name:'warning',\n value:'warning'\n },{\n label:'error',\n name:'error',\n value:'error'\n },{\n label:'info',\n name:'info',\n value:'info'\n }]" + }, + { + "id": 1225, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 46, - "character": 15 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 7215, - "name": "label", + "id": 1197, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets starting value for input" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 38, - "character": 16 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 122, + "character": 18 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 7216, - "name": "name", + "id": 1183, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets name attribute value" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 42, - "character": 15 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 91, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 7228, - "name": "onChange", + "id": 1182, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 71, - "character": 17 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 90, + "character": 16 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamModalComponent\"", + "overwrites": { "type": "reference", - "name": "Function" + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 7229, - "name": "onTouched", + "id": 1177, + "name": "vcModal1", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, + "decorators": [ + { + "name": "ViewChild", + "type": { + "type": "reference", + "name": "ViewChild" + }, + "arguments": { + "selector": "'modal1'" + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 72, - "character": 18 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 85, + "character": 30 } ], "type": { - "type": "reference", - "name": "Function" + "type": "instrinct", + "name": "any" } }, { - "id": 7231, - "name": "samFormService", + "id": 1178, + "name": "vcModal2", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, "isExported": true }, + "decorators": [ + { + "name": "ViewChild", + "type": { + "type": "reference", + "name": "ViewChild" + }, + "arguments": { + "selector": "'modal2'" + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 74, - "character": 36 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 86, + "character": 30 } ], "type": { - "type": "reference", - "name": "SamFormService", - "id": 4560 + "type": "instrinct", + "name": "any" } }, { - "id": 7223, - "name": "time", + "id": 1179, + "name": "vcModal3", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, + "decorators": [ + { + "name": "ViewChild", + "type": { + "type": "reference", + "name": "ViewChild" + }, + "arguments": { + "selector": "'modal3'" + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 64, - "character": 13 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 87, + "character": 30 } ], "type": { "type": "instrinct", - "name": "string" - }, - "defaultValue": " undefined" + "name": "any" + } }, { - "id": 7226, - "name": "timeComponent", + "id": 1180, + "name": "vcModal4", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "decorators": [ { @@ -181943,113 +84942,150 @@ "name": "ViewChild" }, "arguments": { - "selector": "'timeComponent'" + "selector": "'modal4'" } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 68, - "character": 50 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 88, + "character": 30 } ], "type": { - "type": "reference", - "name": "SamTimeComponent", - "id": 7120 + "type": "instrinct", + "name": "any" } }, { - "id": 7221, - "name": "useFormService", + "id": 1181, + "name": "vcModal5", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Toggles validations to display with SamFormService events" - }, "decorators": [ { - "name": "Input", + "name": "ViewChild", "type": { "type": "reference", - "name": "Input" + "name": "ViewChild" }, - "arguments": {} + "arguments": { + "selector": "'modal5'" + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 62, - "character": 25 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 89, + "character": 30 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "any" } }, { - "id": 7222, - "name": "value", - "kind": 1024, - "kindString": "Property", + "id": 1231, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, + "signatures": [ + { + "id": 1232, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1233, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 63, - "character": 14 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "type": { - "type": "instrinct", - "name": "any" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } }, { - "id": 7227, - "name": "wrapper", - "kind": 1024, - "kindString": "Property", + "id": 1226, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, - "decorators": [ + "signatures": [ { - "name": "ViewChild", + "id": 1227, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, "type": { - "type": "reference", - "name": "ViewChild" + "type": "instrinct", + "name": "void" }, - "arguments": { - "selector": "FieldsetWrapper" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 69, - "character": 44 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "type": { - "type": "instrinct", - "name": "any" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 7243, - "name": "dateBlur", + "id": 1209, + "name": "onModal2Close", "kind": 2048, "kindString": "Method", "flags": { @@ -182057,8 +85093,37 @@ }, "signatures": [ { - "id": 7244, - "name": "dateBlur", + "id": 1210, + "name": "onModal2Close", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + } + } + ], + "sources": [ + { + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 139, + "character": 15 + } + ] + }, + { + "id": 1213, + "name": "onModal3Close", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 1214, + "name": "onModal3Close", "kind": 4096, "kindString": "Call signature", "flags": {}, @@ -182070,15 +85135,15 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 128, - "character": 10 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 145, + "character": 15 } ] }, { - "id": 7240, - "name": "emitChanges", + "id": 1217, + "name": "onModal4Close", "kind": 2048, "kindString": "Method", "flags": { @@ -182086,24 +85151,11 @@ }, "signatures": [ { - "id": 7241, - "name": "emitChanges", + "id": 1218, + "name": "onModal4Close", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 7242, - "name": "val", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], "type": { "type": "instrinct", "name": "void" @@ -182112,15 +85164,15 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 119, - "character": 13 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 151, + "character": 15 } ] }, { - "id": 7236, - "name": "ngOnChanges", + "id": 1221, + "name": "onModal5Close", "kind": 2048, "kindString": "Method", "flags": { @@ -182128,8 +85180,8 @@ }, "signatures": [ { - "id": 7237, - "name": "ngOnChanges", + "id": 1222, + "name": "onModal5Close", "kind": 4096, "kindString": "Call signature", "flags": {}, @@ -182141,15 +85193,15 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 102, - "character": 13 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 157, + "character": 15 } ] }, { - "id": 7234, - "name": "ngOnInit", + "id": 1219, + "name": "onModal5InitClick", "kind": 2048, "kindString": "Method", "flags": { @@ -182157,8 +85209,8 @@ }, "signatures": [ { - "id": 7235, - "name": "ngOnInit", + "id": 1220, + "name": "onModal5InitClick", "kind": 4096, "kindString": "Call signature", "flags": {}, @@ -182170,15 +85222,15 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 76, - "character": 10 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 154, + "character": 19 } ] }, { - "id": 7245, - "name": "onInputChange", + "id": 1205, + "name": "onModalClose", "kind": 2048, "kindString": "Method", "flags": { @@ -182186,8 +85238,8 @@ }, "signatures": [ { - "id": 7246, - "name": "onInputChange", + "id": 1206, + "name": "onModalClose", "kind": 4096, "kindString": "Call signature", "flags": {}, @@ -182199,15 +85251,15 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 132, - "character": 15 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 133, + "character": 14 } ] }, { - "id": 7238, - "name": "parseValueString", + "id": 1207, + "name": "onModalInit2Click", "kind": 2048, "kindString": "Method", "flags": { @@ -182215,8 +85267,8 @@ }, "signatures": [ { - "id": 7239, - "name": "parseValueString", + "id": 1208, + "name": "onModalInit2Click", "kind": 4096, "kindString": "Call signature", "flags": {}, @@ -182228,15 +85280,15 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 106, - "character": 18 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 136, + "character": 19 } ] }, { - "id": 7249, - "name": "registerOnChange", + "id": 1211, + "name": "onModalInit3Click", "kind": 2048, "kindString": "Method", "flags": { @@ -182244,24 +85296,11 @@ }, "signatures": [ { - "id": 7250, - "name": "registerOnChange", + "id": 1212, + "name": "onModalInit3Click", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 7251, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", "name": "void" @@ -182270,15 +85309,15 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 147, - "character": 18 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 142, + "character": 19 } ] }, { - "id": 7252, - "name": "registerOnTouched", + "id": 1215, + "name": "onModalInit4Click", "kind": 2048, "kindString": "Method", "flags": { @@ -182286,24 +85325,11 @@ }, "signatures": [ { - "id": 7253, - "name": "registerOnTouched", + "id": 1216, + "name": "onModalInit4Click", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 7254, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", "name": "void" @@ -182312,15 +85338,15 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 151, + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 148, "character": 19 } ] }, { - "id": 7247, - "name": "resetInput", + "id": 1203, + "name": "onModalInitClick", "kind": 2048, "kindString": "Method", "flags": { @@ -182328,8 +85354,8 @@ }, "signatures": [ { - "id": 7248, - "name": "resetInput", + "id": 1204, + "name": "onModalInitClick", "kind": 4096, "kindString": "Call signature", "flags": {}, @@ -182341,31 +85367,32 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 142, - "character": 12 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 130, + "character": 17 } ] }, { - "id": 7255, - "name": "setDisabledState", + "id": 1228, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7256, - "name": "setDisabledState", + "id": 1229, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7257, - "name": "disabled", + "id": 1230, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -182378,58 +85405,196 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 155, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } }, { - "id": 7258, - "name": "writeValue", - "kind": 2048, - "kindString": "Method", + "id": 1174, + "name": "modalConfig", + "kind": 2097152, + "kindString": "Object literal", "flags": { "isExported": true }, - "signatures": [ + "children": [ { - "id": 7259, - "name": "writeValue", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ + "id": 1176, + "name": "description", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 7260, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 83, + "character": 13 } ], "type": { "type": "instrinct", - "name": "void" - } + "name": "string" + }, + "defaultValue": "\"Description Text\"" + }, + { + "id": 1175, + "name": "title", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 82, + "character": 7 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Test Title\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1176, + 1175 + ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 159, + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 81, "character": 12 } - ] + ], + "type": { + "type": "instrinct", + "name": "object" + } + }, + { + "id": 1191, + "name": "modalConfig2", + "kind": 2097152, + "kindString": "Object literal", + "flags": { + "isExported": true + }, + "children": [ + { + "id": 1194, + "name": "description", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 115, + "character": 15 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"lorem ipsum lorem ipsum lorem ipsum lorem ipsum.\"" + }, + { + "id": 1193, + "name": "title", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 114, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Sample Title\"" + }, + { + "id": 1192, + "name": "type", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 113, + "character": 8 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"success\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1194, + 1193, + 1192 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 112, + "character": 14 + } + ], + "type": { + "type": "instrinct", + "name": "object" + } } ], "groups": [ @@ -182437,171 +85602,102 @@ "title": "Constructors", "kind": 512, "children": [ - 7230 + 1196 ] }, { "title": "Properties", "kind": 1024, "children": [ - 7214, - 7220, - 7224, - 7225, - 7219, - 7218, - 7217, - 7215, - 7216, - 7228, - 7229, - 7231, - 7223, - 7226, - 7221, - 7222, - 7227 + 1195, + 1184, + 1224, + 1223, + 1198, + 1185, + 1186, + 1225, + 1197, + 1183, + 1182, + 1177, + 1178, + 1179, + 1180, + 1181 ] }, { "title": "Methods", "kind": 2048, "children": [ - 7243, - 7240, - 7236, - 7234, - 7245, - 7238, - 7249, - 7252, - 7247, - 7255, - 7258 + 1231, + 1226, + 1209, + 1213, + 1217, + 1221, + 1219, + 1205, + 1207, + 1211, + 1215, + 1203, + 1228 + ] + }, + { + "title": "Object literals", + "kind": 2097152, + "children": [ + 1174, + 1191 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 32, - "character": 33 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 80, + "character": 34 } ], - "implementedTypes": [ + "extendedTypes": [ { "type": "reference", - "name": "OnInit" - }, + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ { "type": "reference", - "name": "OnChanges" + "name": "OnInit" }, { "type": "reference", - "name": "ControlValueAccessor" + "name": "OnInit" } ] }, { - "id": 7261, - "name": "MY_VALUE_ACCESSOR", - "kind": 2097152, - "kindString": "Object literal", + "id": 1234, + "name": "code_example", + "kind": 32, + "kindString": "Variable", "flags": {}, - "children": [ - { - "id": 7264, - "name": "multi", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 21, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 7262, - "name": "provide", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 19, - "character": 9 - } - ], - "type": { - "type": "reference", - "name": "InjectionToken", - "typeArguments": [ - { - "type": "reference", - "name": "ControlValueAccessor" - } - ] - }, - "defaultValue": " NG_VALUE_ACCESSOR" - }, - { - "id": 7263, - "name": "useExisting", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 20, - "character": 13 - } - ], - "type": { - "type": "reference", - "name": "Type", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " forwardRef(() => SamDateTimeComponent)" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7264, - 7262, - 7263 - ] - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 18, - "character": 23 + "fileName": "src/_docs/components/modal/component-example.ts", + "line": 13, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": " `\n\n\n\n\n\n\n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptate vero, esse ratione quis quasi commodi distinctio sit aut eum facilis minima hic saepe ut ex, aliquid minus non maxime quod!\n\n\n\n\n

    {{message}}

    \n\n
    \n
    \nShow Warning Modal
    \n\n
    \n\n\n\n\n\n`" } ], "groups": [ @@ -182609,63 +85705,43 @@ "title": "Classes", "kind": 128, "children": [ - 7213 + 1173 ] }, { - "title": "Object literals", - "kind": 2097152, + "title": "Variables", + "kind": 32, "children": [ - 7261 + 1234 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/date-time.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7265, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/date-time/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/date-time/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date-time/index.ts", + "fileName": "src/_docs/components/modal/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 6970, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/date/date.component\"", + "id": 1235, + "name": "\"src/_docs/components/multiselect-dropdown/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/multiselect-dropdown/component-example.ts", "children": [ { - "id": 6971, - "name": "SamDateComponent", + "id": 1236, + "name": "MultiselectDropdownExampleComponent", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, - "comment": { - "shortText": "The component is a Date entry portion of a form" - }, "decorators": [ { "name": "Component", @@ -182674,13 +85750,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-date',\n templateUrl: 'date.template.html',\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => SamDateComponent),\n multi: true\n }]\n}" + "obj": "{\n\tselector: 'doc-multiselect-dropdown',\n template: `\n\n`+code_example+`\n\n`\n}" } } ], "children": [ { - "id": 7014, + "id": 1249, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -182689,681 +85765,139 @@ }, "signatures": [ { - "id": 7017, - "name": "new SamDateComponent", + "id": 1252, + "name": "new MultiselectDropdownExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7018, - "name": "samFormService", + "id": 1253, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "Http" } }, { - "id": 7019, - "name": "cdr", + "id": 1254, + "name": "service", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "ChangeDetectorRef" + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1255, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "SamDateComponent", - "id": 6971 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 153, - "character": 35 - } - ] - }, - { - "id": 6994, - "name": "INPUT_FORMAT", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 98, - "character": 21 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Y-M-D\"" - }, - { - "id": 6995, - "name": "OUTPUT_FORMAT", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 99, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"YYYY-MM-DD\"" - }, - { - "id": 6989, - "name": "allowChars", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 91, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', \n 'Backspace', 'ArrowLeft', 'ArrowRight', 'Tab', 'Delete']" - }, - { - "id": 6984, - "name": "blur", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Event emitted when form control loses focus" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" + "name": "MultiselectDropdownExampleComponent", + "id": 1236 }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 84, - "character": 23 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 6983, - "name": "blurEvent", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "(deprecated) Event emitted when form control loses focus" - }, - "decorators": [ - { - "name": "Output", - "type": { + "overwrites": { "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 80, - "character": 28 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" + "name": "BaseExampleComponent.__constructor", + "id": 287 } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 7016, - "name": "cdr", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 156, - "character": 15 - } - ], - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - }, - { - "id": 6980, - "name": "control", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Passes in the Angular FormControl" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 68, - "character": 25 + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 42, + "character": 57 } ], - "type": { + "overwrites": { "type": "reference", - "name": "FormControl" - } - }, - { - "id": 6986, - "name": "day", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'day'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 87, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6979, - "name": "defaultValidations", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Toggles default component validations" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 64, - "character": 36 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 6977, - "name": "disabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the disabled status of component, defaults to false" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 56, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 6972, - "name": "errorMessage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the general error message for component" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 36, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 6976, - "name": "hint", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the helpful hint text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 52, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 6974, - "name": "label", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the label text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 44, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 6999, - "name": "maxDay", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 103, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "31" - }, - { - "id": 6998, - "name": "maxMonth", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 102, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "12" - }, - { - "id": 6985, - "name": "month", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'month'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 86, - "character": 34 - } - ], - "type": { - "type": "instrinct", - "name": "any" + "name": "BaseExampleComponent.__constructor", + "id": 287 } }, { - "id": 6973, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the name attribute for component" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 40, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 6997, - "name": "nonFebruaryDays", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 101, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "number" - } - ] - }, - "defaultValue": " [30, 31]" - }, - { - "id": 6975, - "name": "required", + "id": 1248, + "name": "base", "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Toggles whether a \"required\" designation is shown" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 48, - "character": 26 + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 42, + "character": 13 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" }, - "defaultValue": "false" + "defaultValue": "\"_docs/components/multiselect-dropdown/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 7015, - "name": "samFormService", + "id": 1247, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 155, - "character": 36 + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 40, + "character": 9 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 6996, - "name": "thirtyDayMonths", + "id": 1237, + "name": "filterTypes", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 100, - "character": 25 + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 28, + "character": 12 } ], "type": { @@ -183372,395 +85906,320 @@ "typeArguments": [ { "type": "instrinct", - "name": "number" + "name": "string" } ] }, - "defaultValue": " [4, 6, 9, 11]" + "defaultValue": " ['Error', 'Informational', 'Warning']" }, { - "id": 6981, - "name": "useFormService", + "id": 1257, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Toggles validations to display with SamFormService events" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 72, - "character": 32 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 6978, - "name": "value", + "id": 1256, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Deprecated - Sets the current value of the form control" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 60, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 6982, - "name": "valueChange", + "id": 1251, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Deprecated - Event emitted when value changes" - }, - "decorators": [ + "sources": [ { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 47, + "character": 20 } ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 1258, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 76, - "character": 30 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { "type": "reference", - "name": "EventEmitter", + "name": "Array", "typeArguments": [ { "type": "instrinct", - "name": "any" + "name": "string" } ] }, - "defaultValue": " new EventEmitter()" + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } }, { - "id": 6988, - "name": "wrapper", + "id": 1250, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'wrapper'" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 89, - "character": 38 + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 46, + "character": 18 } ], "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 6987, - "name": "year", + "id": 1246, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'year'" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 88, - "character": 32 + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 38, + "character": 17 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 7000, - "name": "inputModel", - "kind": 262144, - "kindString": "Accessor", + "id": 1245, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "getSignature": [ - { - "id": 7001, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "reflection", - "declaration": { - "id": 7002, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 7003, - "name": "day", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 107, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " this.day.nativeElement.value" - }, - { - "id": 7004, - "name": "month", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 108, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " this.month.nativeElement.value" - }, - { - "id": 7005, - "name": "year", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 109, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " this.year.nativeElement.value" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7003, - 7004, - 7005 - ] - } - ] - } - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 105, + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 37, "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamMultiSelectDropdownComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 7091, - "name": "_checkCopyPasteChar", + "id": 1264, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7092, - "name": "_checkCopyPasteChar", + "id": 1265, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7093, - "name": "char", + "id": 1266, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 485, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 7097, - "name": "_getClipboardText", + "id": 1259, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7098, - "name": "_getClipboardText", + "id": 1260, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 7099, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", - "name": "any" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 498, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 7103, - "name": "_isLeapYear", + "id": 1261, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7104, - "name": "_isLeapYear", + "id": 1262, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7105, - "name": "year", + "id": 1263, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -183772,222 +86231,764 @@ ], "type": { "type": "instrinct", - "name": "boolean" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 521, - "character": 13 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } }, { - "id": 7094, - "name": "_keyIsNumber", - "kind": 2048, - "kindString": "Method", + "id": 1238, + "name": "types", + "kind": 2097152, + "kindString": "Object literal", "flags": { "isExported": true }, - "signatures": [ + "children": [ { - "id": 7095, - "name": "_keyIsNumber", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ + "id": 1239, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 7096, - "name": "char", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 30, + "character": 9 } ], "type": { "type": "instrinct", - "name": "boolean" - } + "name": "string" + }, + "defaultValue": "\"Types\"" + }, + { + "id": 1240, + "name": "options", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 31, + "character": 11 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 1241, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1242, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 32, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Informational\"" + }, + { + "id": 1244, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 32, + "character": 60 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"informational\"" + }, + { + "id": 1243, + "name": "value", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 32, + "character": 37 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Informational\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1242, + 1244, + 1243 + ] + } + ] + } + } + ] + }, + "defaultValue": " [\n { label: 'Informational', value: 'Informational', name: 'informational' },\n { label: 'Error', value: 'Error', name: 'error' },\n { label: 'Warning', value: 'Warning', name: 'warning' }\n ]" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1239, + 1240 + ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 491, - "character": 14 + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 29, + "character": 6 } + ], + "type": { + "type": "instrinct", + "name": "object" + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1249 ] }, { - "id": 7100, - "name": "_shouldClearDayInput", + "title": "Properties", + "kind": 1024, + "children": [ + 1248, + 1247, + 1237, + 1257, + 1256, + 1251, + 1258, + 1250, + 1246, + 1245 + ] + }, + { + "title": "Methods", "kind": 2048, - "kindString": "Method", + "children": [ + 1264, + 1259, + 1261 + ] + }, + { + "title": "Object literals", + "kind": 2097152, + "children": [ + 1238 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 27, + "character": 48 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 1267, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1236 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1267 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/multiselect-dropdown/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 1268, + "name": "\"src/_docs/components/pagination/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/pagination/component-example.ts", + "children": [ + { + "id": 1269, + "name": "PaginationExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-pagination',\n template: `\n\n\n\n`\n}" + } + } + ], + "children": [ + { + "id": 1277, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, "signatures": [ { - "id": 7101, - "name": "_shouldClearDayInput", - "kind": 4096, - "kindString": "Call signature", + "id": 1280, + "name": "new PaginationExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7102, - "name": "num", + "id": 1281, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "Http" + } + }, + { + "id": 1282, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1283, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "PaginationExampleComponent", + "id": 1269 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 510, - "character": 22 + "fileName": "src/_docs/components/pagination/component-example.ts", + "line": 29, + "character": 47 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 7077, - "name": "dayName", - "kind": 2048, - "kindString": "Method", + "id": 1276, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/pagination/component-example.ts", + "line": 29, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/pagination/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 1275, + "name": "example", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ + "sources": [ { - "id": 7078, - "name": "dayName", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { + "fileName": "src/_docs/components/pagination/component-example.ts", + "line": 27, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 1285, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 1284, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 1279, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/pagination/component-example.ts", + "line": 34, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 1286, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 1278, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/pagination/component-example.ts", + "line": 33, + "character": 18 } ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 1274, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 454, - "character": 9 + "fileName": "src/_docs/components/pagination/component-example.ts", + "line": 25, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } }, { - "id": 7026, - "name": "getDate", + "id": 1273, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/pagination/component-example.ts", + "line": 24, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamPaginationComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } + }, + { + "id": 1292, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7027, - "name": "getDate", + "id": 1293, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7028, - "name": "override", + "id": 1294, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" - }, - "defaultValue": " undefined" + "name": "string" + } } ], "type": { "type": "reference", - "name": "Moment" + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 221, - "character": 9 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 7054, - "name": "getMaxDate", + "id": 1287, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7055, - "name": "getMaxDate", + "id": 1288, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, "type": { "type": "instrinct", - "name": "number" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 344, - "character": 12 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 7056, - "name": "getNumJumpThreshold", + "id": 1289, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7057, - "name": "getNumJumpThreshold", + "id": 1290, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7058, - "name": "month", + "id": 1291, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -183998,373 +86999,656 @@ } ], "type": { - "type": "union", - "types": [ - { - "type": "unknown", - "name": "2" - }, - { - "type": "unknown", - "name": "3" - } - ] + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 365, - "character": 21 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } }, { - "id": 7044, - "name": "getPossibleNum", - "kind": 2048, - "kindString": "Method", + "id": 1270, + "name": "paginationConfig", + "kind": 2097152, + "kindString": "Object literal", "flags": { "isExported": true }, - "signatures": [ + "children": [ { - "id": 7045, - "name": "getPossibleNum", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ + "id": 1271, + "name": "currentPage", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 7046, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, + "fileName": "src/_docs/components/pagination/component-example.ts", + "line": 21, + "character": 15 + } + ], + "type": { + "type": "instrinct", + "name": "number" + }, + "defaultValue": "1" + }, + { + "id": 1272, + "name": "totalPages", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 7047, - "name": "key", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } + "fileName": "src/_docs/components/pagination/component-example.ts", + "line": 22, + "character": 14 } ], "type": { "type": "instrinct", "name": "number" - } + }, + "defaultValue": "4" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1271, + 1272 + ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 297, - "character": 16 + "fileName": "src/_docs/components/pagination/component-example.ts", + "line": 20, + "character": 18 } + ], + "type": { + "type": "instrinct", + "name": "object" + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1277 ] }, { - "id": 7070, - "name": "isClean", + "title": "Properties", + "kind": 1024, + "children": [ + 1276, + 1275, + 1285, + 1284, + 1279, + 1286, + 1278, + 1274, + 1273 + ] + }, + { + "title": "Methods", "kind": 2048, - "kindString": "Method", + "children": [ + 1292, + 1287, + 1289 + ] + }, + { + "title": "Object literals", + "kind": 2097152, + "children": [ + 1270 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/pagination/component-example.ts", + "line": 19, + "character": 39 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1269 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/pagination/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 1295, + "name": "\"src/_docs/components/point-of-contact/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/point-of-contact/component-example.ts", + "children": [ + { + "id": 1296, + "name": "POCExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-poc',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], + "children": [ + { + "id": 1310, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, "signatures": [ { - "id": 7071, - "name": "isClean", - "kind": 4096, - "kindString": "Call signature", + "id": 1313, + "name": "new POCExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7072, - "name": "override", + "id": 1314, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " undefined" + "type": "reference", + "name": "Http" + } + }, + { + "id": 1315, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1316, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "POCExampleComponent", + "id": 1296 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 429, - "character": 9 + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 38, + "character": 53 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 7073, - "name": "isValid", - "kind": 2048, - "kindString": "Method", + "id": 1309, + "name": "base", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 7074, - "name": "isValid", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 445, - "character": 9 + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 38, + "character": 13 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/point-of-contact/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 7075, - "name": "monthName", - "kind": 2048, - "kindString": "Method", + "id": 1308, + "name": "example", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ + "sources": [ { - "id": 7076, - "name": "monthName", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 36, + "character": 9 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 1318, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 450, - "character": 11 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 7022, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", + "id": 1317, + "name": "markdown", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 7023, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 1312, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 195, - "character": 13 + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 43, + "character": 20 } - ] + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 7020, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", + "id": 1319, + "name": "sections", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 7021, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 1311, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 158, - "character": 10 + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 42, + "character": 18 } - ] + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 7010, - "name": "onChange", - "kind": 2048, - "kindString": "Method", + "id": 1307, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ + "sources": [ { - "id": 7011, - "name": "onChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 34, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 1306, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 152, - "character": 10 + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 33, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamPointOfContactComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 7067, - "name": "onChangeHandler", + "id": 1325, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7068, - "name": "onChangeHandler", + "id": 1326, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7069, - "name": "override", + "id": 1327, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" - }, - "defaultValue": " undefined" + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 413, - "character": 17 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 7048, - "name": "onDayBlur", + "id": 1320, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7049, - "name": "onDayBlur", + "id": 1321, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 7050, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 311, - "character": 11 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 7051, - "name": "onDayInput", + "id": 1322, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7052, - "name": "onDayInput", + "id": 1323, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7053, - "name": "event", + "id": 1324, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -184377,388 +87661,812 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 317, - "character": 12 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } }, { - "id": 7032, - "name": "onDayPaste", - "kind": 2048, - "kindString": "Method", + "id": 1297, + "name": "pointOfContact", + "kind": 2097152, + "kindString": "Object literal", "flags": { "isExported": true }, - "signatures": [ + "children": [ { - "id": 7033, - "name": "onDayPaste", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ + "id": 1299, + "name": "address", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 7034, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 25, + "character": 11 } ], "type": { "type": "instrinct", - "name": "void" - } + "name": "string" + }, + "defaultValue": "\"1234 Waterway Rd\"" + }, + { + "id": 1300, + "name": "city", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 26, + "character": 8 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Norfolk\"" + }, + { + "id": 1303, + "name": "email", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 29, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"jdoe@test.gov\"" + }, + { + "id": 1298, + "name": "fullName", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 24, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"John Doe\"" + }, + { + "id": 1304, + "name": "phone", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 30, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"222-222-2222\"" + }, + { + "id": 1301, + "name": "state", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 27, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"VA\"" + }, + { + "id": 1305, + "name": "website", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 31, + "character": 11 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"www.testsite.gov\"" + }, + { + "id": 1302, + "name": "zip", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 28, + "character": 7 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"12345\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1299, + 1300, + 1303, + 1298, + 1304, + 1301, + 1305, + 1302 + ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 239, - "character": 12 + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 23, + "character": 15 } + ], + "type": { + "type": "instrinct", + "name": "object" + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1310 ] }, { - "id": 7038, - "name": "onMonthBlur", + "title": "Properties", + "kind": 1024, + "children": [ + 1309, + 1308, + 1318, + 1317, + 1312, + 1319, + 1311, + 1307, + 1306 + ] + }, + { + "title": "Methods", "kind": 2048, - "kindString": "Method", + "children": [ + 1325, + 1320, + 1322 + ] + }, + { + "title": "Object literals", + "kind": 2097152, + "children": [ + 1297 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 22, + "character": 32 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 1328, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1296 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1328 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/point-of-contact/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 1329, + "name": "\"src/_docs/components/progress-bar/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/progress-bar/component-example.ts", + "children": [ + { + "id": 1330, + "name": "SamProgressExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-sam-progress-bar',\n template: ''+ code_example +''\n}" + } + } + ], + "children": [ + { + "id": 1335, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, "signatures": [ { - "id": 7039, - "name": "onMonthBlur", - "kind": 4096, - "kindString": "Call signature", + "id": 1338, + "name": "new SamProgressExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7040, - "name": "event", + "id": 1339, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "Http" + } + }, + { + "id": 1340, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1341, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "SamProgressExampleComponent", + "id": 1330 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 262, + "fileName": "src/_docs/components/progress-bar/component-example.ts", + "line": 32, + "character": 49 + } + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 1334, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/components/progress-bar/component-example.ts", + "line": 32, "character": 13 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/progress-bar/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 7041, - "name": "onMonthInput", - "kind": 2048, - "kindString": "Method", + "id": 1333, + "name": "example", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ + "sources": [ { - "id": 7042, - "name": "onMonthInput", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7043, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/components/progress-bar/component-example.ts", + "line": 29, + "character": 8 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 1343, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 268, - "character": 14 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 7029, - "name": "onMonthPaste", - "kind": 2048, - "kindString": "Method", + "id": 1342, + "name": "markdown", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 7030, - "name": "onMonthPaste", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7031, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 1337, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 226, - "character": 14 + "fileName": "src/_docs/components/progress-bar/component-example.ts", + "line": 37, + "character": 20 } - ] + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 7012, - "name": "onTouched", - "kind": 2048, - "kindString": "Method", + "id": 1344, + "name": "sections", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 7013, - "name": "onTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 1336, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 153, - "character": 11 + "fileName": "src/_docs/components/progress-bar/component-example.ts", + "line": 36, + "character": 18 } - ] + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 7059, - "name": "onYearBlur", - "kind": 2048, - "kindString": "Method", + "id": 1332, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ - { - "id": 7060, - "name": "onYearBlur", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7061, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 370, - "character": 12 + "fileName": "src/_docs/components/progress-bar/component-example.ts", + "line": 27, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } }, { - "id": 7062, - "name": "onYearInput", - "kind": 2048, - "kindString": "Method", + "id": 1331, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ - { - "id": 7063, - "name": "onYearInput", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7064, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 382, - "character": 13 + "fileName": "src/_docs/components/progress-bar/component-example.ts", + "line": 26, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamProgress\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 7035, - "name": "onYearPaste", + "id": 1350, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7036, - "name": "onYearPaste", + "id": 1351, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7037, - "name": "event", + "id": 1352, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 252, - "character": 13 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 7024, - "name": "parseValueString", + "id": 1345, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7025, - "name": "parseValueString", + "id": 1346, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 199, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 7106, - "name": "registerOnChange", + "id": 1347, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7107, - "name": "registerOnChange", + "id": 1348, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7108, - "name": "fn", + "id": 1349, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -184771,498 +88479,630 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 531, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1335 ] }, { - "id": 7109, - "name": "registerOnTouched", + "title": "Properties", + "kind": 1024, + "children": [ + 1334, + 1333, + 1343, + 1342, + 1337, + 1344, + 1336, + 1332, + 1331 + ] + }, + { + "title": "Methods", "kind": 2048, - "kindString": "Method", + "children": [ + 1350, + 1345, + 1347 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/progress-bar/component-example.ts", + "line": 25, + "character": 40 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 1353, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/progress-bar/component-example.ts", + "line": 19, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `TODO`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1330 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1353 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/progress-bar/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 1354, + "name": "\"src/_docs/components/sidenav/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/sidenav/component-example.ts", + "children": [ + { + "id": 1355, + "name": "SidenavExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-sidenav',\n template: `\n\nSee sidenav on the left\n\n`\n}" + } + } + ], + "children": [ + { + "id": 1360, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, "signatures": [ { - "id": 7110, - "name": "registerOnTouched", - "kind": 4096, - "kindString": "Call signature", + "id": 1363, + "name": "new SidenavExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7111, - "name": "fn", + "id": 1364, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "Http" + } + }, + { + "id": 1365, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1366, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "SidenavExampleComponent", + "id": 1355 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 535, - "character": 19 + "fileName": "src/_docs/components/sidenav/component-example.ts", + "line": 27, + "character": 44 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 7065, - "name": "removalKeyHandler", - "kind": 2048, - "kindString": "Method", + "id": 1359, + "name": "base", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 7066, - "name": "removalKeyHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 408, - "character": 19 + "fileName": "src/_docs/components/sidenav/component-example.ts", + "line": 27, + "character": 13 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/sidenav/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 7089, - "name": "resetInput", - "kind": 2048, - "kindString": "Method", + "id": 1358, + "name": "example", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ - { - "id": 7090, - "name": "resetInput", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 479, - "character": 12 + "fileName": "src/_docs/components/sidenav/component-example.ts", + "line": 25, + "character": 9 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } }, { - "id": 7112, - "name": "setDisabledState", - "kind": 2048, - "kindString": "Method", + "id": 1368, + "name": "guidance", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 7113, - "name": "setDisabledState", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7114, - "name": "disabled", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 1367, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 539, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } }, { - "id": 7086, - "name": "triggerDayTouch", - "kind": 2048, - "kindString": "Method", + "id": 1362, + "name": "mdService", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 7087, - "name": "triggerDayTouch", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7088, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/components/sidenav/component-example.ts", + "line": 32, + "character": 20 } ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 1369, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 472, + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, "character": 17 } - ] + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } }, { - "id": 7083, - "name": "triggerMonthTouch", - "kind": 2048, - "kindString": "Method", + "id": 1361, + "name": "service", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 7084, - "name": "triggerMonthTouch", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7085, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 466, - "character": 19 + "fileName": "src/_docs/components/sidenav/component-example.ts", + "line": 31, + "character": 18 } - ] + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 7081, - "name": "triggerTouch", - "kind": 2048, - "kindString": "Method", + "id": 1357, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ + "sources": [ { - "id": 7082, - "name": "triggerTouch", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/components/sidenav/component-example.ts", + "line": 24, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 1356, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 462, - "character": 14 + "fileName": "src/_docs/components/sidenav/component-example.ts", + "line": 23, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamSidenavComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 7115, - "name": "writeValue", + "id": 1375, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7116, - "name": "writeValue", + "id": 1376, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7117, - "name": "value", + "id": 1377, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 543, - "character": 12 - } - ] - }, - { - "id": 7079, - "name": "yearName", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7080, - "name": "yearName", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 458, - "character": 10 - } - ] - }, - { - "id": 7006, - "name": "dateRequired", - "kind": 2048, - "kindString": "Method", - "flags": { - "isStatic": true, - "isExported": true - }, - "signatures": [ - { - "id": 7007, - "name": "dateRequired", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, "type": { "type": "reference", - "name": "(Anonymous function)" + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 113, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 7008, - "name": "dateValidation", + "id": 1370, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isStatic": true, - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7009, - "name": "dateValidation", + "id": 1371, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { "type": "reference", - "name": "(Anonymous function)" + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 126, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] - }, - { - "id": 6990, - "name": "model", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true, - "isPublic": true - }, - "children": [ - { - "id": 6992, - "name": "day", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 95, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 6991, - "name": "month", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 94, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 1372, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 6993, - "name": "year", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ + "id": 1373, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 96, - "character": 8 + "id": 1374, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "undefined" + "name": "void" }, - "defaultValue": " undefined" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 6992, - 6991, - 6993 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 93, - "character": 14 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], @@ -185271,196 +89111,77 @@ "title": "Constructors", "kind": 512, "children": [ - 7014 + 1360 ] }, { "title": "Properties", "kind": 1024, "children": [ - 6994, - 6995, - 6989, - 6984, - 6983, - 7016, - 6980, - 6986, - 6979, - 6977, - 6972, - 6976, - 6974, - 6999, - 6998, - 6985, - 6973, - 6997, - 6975, - 7015, - 6996, - 6981, - 6978, - 6982, - 6988, - 6987 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 7000 + 1359, + 1358, + 1368, + 1367, + 1362, + 1369, + 1361, + 1357, + 1356 ] }, { "title": "Methods", "kind": 2048, "children": [ - 7091, - 7097, - 7103, - 7094, - 7100, - 7077, - 7026, - 7054, - 7056, - 7044, - 7070, - 7073, - 7075, - 7022, - 7020, - 7010, - 7067, - 7048, - 7051, - 7032, - 7038, - 7041, - 7029, - 7012, - 7059, - 7062, - 7035, - 7024, - 7106, - 7109, - 7065, - 7089, - 7112, - 7086, - 7083, - 7081, - 7115, - 7079, - 7006, - 7008 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 6990 + 1375, + 1370, + 1372 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 31, - "character": 29 + "fileName": "src/_docs/components/sidenav/component-example.ts", + "line": 22, + "character": 36 } ], - "implementedTypes": [ + "extendedTypes": [ { "type": "reference", - "name": "OnInit" - }, + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ { "type": "reference", - "name": "OnChanges" + "name": "OnInit" }, { "type": "reference", - "name": "ControlValueAccessor" + "name": "OnInit" } ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6971 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/date.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7118, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/date/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/date/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/date/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7875, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/index.ts", - "children": [ + }, { - "id": 7876, - "name": "SamFormControlsModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n CommonModule,\n FormsModule,\n SamDirectivesModule,\n SamWrapperModule,\n SamCheckboxModule,\n SamSelectModule,\n SamTextInputModule,\n SamAutocompleteMultiselectModule,\n ],\n declarations: [\n SamDateComponent,\n SamDateTimeComponent,\n SamDateRangeComponent,\n SamNumberComponent,\n SamRadioButtonComponent,\n SamTimeComponent,\n SamToggleSwitchComponent,\n ],\n exports: [\n SamCheckboxModule,\n SamDateComponent,\n SamDateTimeComponent,\n SamDateRangeComponent,\n SamNumberComponent,\n SamRadioButtonComponent,\n SamSelectModule,\n SamTextInputModule,\n SamTextAreaModule,\n SamTimeComponent,\n SamAutocompleteModule,\n SamToggleSwitchComponent,\n SamAutocompleteMultiselectModule\n ],\n providers: []\n}" - } - } - ], + "id": 1378, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/index.ts", - "line": 57, - "character": 34 + "fileName": "src/_docs/components/sidenav/component-example.ts", + "line": 12, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" } ], "groups": [ @@ -185468,54 +89189,43 @@ "title": "Classes", "kind": 128, "children": [ - 7876 + 1355 ] - } - ], - "sources": [ + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/index.ts", - "line": 1, - "character": 0 + "title": "Variables", + "kind": 32, + "children": [ + 1378 + ] } - ] - }, - { - "id": 7427, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/number/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/number/index.ts", + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/index.ts", + "fileName": "src/_docs/components/sidenav/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 7376, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/number/number.component\"", + "id": 1379, + "name": "\"src/_docs/components/spinner/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/spinner/component-example.ts", "children": [ { - "id": 7377, - "name": "SamNumberComponent", + "id": 1380, + "name": "SpinnerExampleComponent", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, - "comment": {}, "decorators": [ { "name": "Component", @@ -185524,13 +89234,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-number',\n template: `\n \n \n \n `,\n providers: [ TEXT_VALUE_ACCESSOR ]\n}" + "obj": "{\n\tselector: 'doc-spinner',\n template: `\n\n` + code_example + `\n\n`\n}" } } ], "children": [ { - "id": 7395, + "id": 1385, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -185539,208 +89249,211 @@ }, "signatures": [ { - "id": 7398, - "name": "new SamNumberComponent", + "id": 1388, + "name": "new SpinnerExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7399, - "name": "samFormService", + "id": 1389, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "Http" } }, { - "id": 7400, - "name": "cdr", + "id": 1390, + "name": "service", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "ChangeDetectorRef" + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1391, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "SamNumberComponent", - "id": 7377 + "name": "SpinnerExampleComponent", + "id": 1380 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 102, - "character": 42 + "fileName": "src/_docs/components/spinner/component-example.ts", + "line": 28, + "character": 44 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 7397, - "name": "cdr", + "id": 1384, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 105, - "character": 15 + "fileName": "src/_docs/components/spinner/component-example.ts", + "line": 28, + "character": 13 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/spinner/\"", + "overwrites": { "type": "reference", - "name": "ChangeDetectorRef" + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 7387, - "name": "control", + "id": 1383, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "sets the form control to trigger label wrapper messages" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 90, - "character": 18 + "fileName": "src/_docs/components/spinner/component-example.ts", + "line": 26, + "character": 9 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { "type": "reference", - "name": "FormControl" + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 7385, - "name": "disabled", + "id": 1393, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "sets the disabled state" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 82, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 7384, - "name": "errorMessage", + "id": 1392, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "deprecated, sets the error message manually" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 78, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 7383, - "name": "hint", + "id": 1387, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "sets the hint text" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 74, - "character": 15 + "fileName": "src/_docs/components/spinner/component-example.ts", + "line": 33, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 7390, - "name": "invalidKeys", + "id": 1394, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { @@ -185749,9 +89462,9 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 97, - "character": 20 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { @@ -185764,445 +89477,718 @@ } ] }, - "defaultValue": " ['e', 'E', ',', '-', '+']" + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } }, { - "id": 7379, - "name": "label", + "id": 1386, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "sets the label wrapper text" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ + "sources": [ { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} + "fileName": "src/_docs/components/spinner/component-example.ts", + "line": 32, + "character": 18 } ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 1382, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 58, - "character": 16 + "fileName": "src/_docs/components/spinner/component-example.ts", + "line": 24, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 7382, - "name": "max", + "id": 1381, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "sets the maximum allowed value" + "sources": [ + { + "fileName": "src/_docs/components/spinner/component-example.ts", + "line": 23, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" }, - "decorators": [ + "defaultValue": "\"SamSpinnerComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } + }, + { + "id": 1400, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "name": "Input", + "id": 1401, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1402, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], "type": { "type": "reference", - "name": "Input" + "name": "Subscription" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 70, - "character": 14 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "type": { - "type": "instrinct", - "name": "number" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } }, { - "id": 7381, - "name": "min", - "kind": 1024, - "kindString": "Property", + "id": 1395, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true - }, - "comment": { - "shortText": "sets the minimum allowed value" + "isExported": true, + "isPublic": true }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1396, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, "type": { - "type": "reference", - "name": "Input" + "type": "instrinct", + "name": "void" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 66, - "character": 14 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "type": { - "type": "instrinct", - "name": "number" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 7380, - "name": "name", - "kind": 1024, - "kindString": "Property", + "id": 1397, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true - }, - "comment": { - "shortText": "sets the input name attribute value" + "isExported": true, + "isPublic": true }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1398, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1399, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], "type": { - "type": "reference", - "name": "Input" + "type": "instrinct", + "name": "void" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 62, - "character": 15 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1385 + ] }, { - "id": 7386, - "name": "required", + "title": "Properties", "kind": 1024, - "kindString": "Property", + "children": [ + 1384, + 1383, + 1393, + 1392, + 1387, + 1394, + 1386, + 1382, + 1381 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 1400, + 1395, + 1397 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/spinner/component-example.ts", + "line": 22, + "character": 36 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 1403, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/spinner/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1380 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1403 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/spinner/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 1404, + "name": "\"src/_docs/components/tabs/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/tabs/component-example.ts", + "children": [ + { + "id": 1405, + "name": "TabsExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-tabs',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], + "children": [ + { + "id": 1410, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, - "comment": { - "shortText": "deprecated, toggles the required text in the label wrapper" - }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1413, + "name": "new TabsExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 1414, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 1415, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1416, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], "type": { "type": "reference", - "name": "Input" + "name": "TabsExampleComponent", + "id": 1405 }, - "arguments": {} + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 86, - "character": 19 + "fileName": "src/_docs/components/tabs/component-example.ts", + "line": 36, + "character": 41 } ], - "type": { - "type": "instrinct", - "name": "boolean" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } }, { - "id": 7396, - "name": "samFormService", + "id": 1409, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 104, - "character": 36 + "fileName": "src/_docs/components/tabs/component-example.ts", + "line": 36, + "character": 13 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/tabs/\"", + "overwrites": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 7388, - "name": "useFormService", + "id": 1408, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Toggles validations to display with SamFormService events" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 94, - "character": 25 + "fileName": "src/_docs/components/tabs/component-example.ts", + "line": 33, + "character": 9 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 7378, - "name": "value", + "id": 1424, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "(deprecated) sets value" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 54, - "character": 16 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "number" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 7389, - "name": "wrapper", + "id": 1423, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "LabelWrapper" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 96, - "character": 41 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { "type": "reference", - "name": "LabelWrapper", - "id": 4513 + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 7405, - "name": "keyDownHandler", - "kind": 2048, - "kindString": "Method", + "id": 1412, + "name": "mdService", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 7406, - "name": "keyDownHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7407, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 149, - "character": 16 + "fileName": "src/_docs/components/tabs/component-example.ts", + "line": 41, + "character": 20 } - ] + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 7403, - "name": "ngAfterViewInit", - "kind": 2048, - "kindString": "Method", + "id": 1425, + "name": "sections", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 7404, - "name": "ngAfterViewInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 142, + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, "character": 17 } - ] + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } }, { - "id": 7401, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", + "id": 1411, + "name": "service", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 7402, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 107, - "character": 10 + "fileName": "src/_docs/components/tabs/component-example.ts", + "line": 40, + "character": 18 } - ] + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 7391, - "name": "onChange", - "kind": 2048, - "kindString": "Method", + "id": 1407, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "signatures": [ + "sources": [ { - "id": 7392, - "name": "onChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/components/tabs/component-example.ts", + "line": 31, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 1406, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 99, - "character": 17 + "fileName": "src/_docs/components/tabs/component-example.ts", + "line": 30, + "character": 15 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamTabsComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 7408, - "name": "onInputChange", + "id": 1417, + "name": "currentTabSelected", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7409, - "name": "onInputChange", + "id": 1418, + "name": "currentTabSelected", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7410, - "name": "value", + "id": 1419, + "name": "evt", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -186220,15 +90206,15 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 155, - "character": 15 + "fileName": "src/_docs/components/tabs/component-example.ts", + "line": 48, + "character": 27 } ] }, { - "id": 7393, - "name": "onTouched", + "id": 1431, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { @@ -186237,128 +90223,108 @@ }, "signatures": [ { - "id": 7394, - "name": "onTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 102, - "character": 18 - } - ] - }, - { - "id": 7411, - "name": "registerOnChange", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7412, - "name": "registerOnChange", + "id": 1432, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7413, - "name": "fn", + "id": 1433, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 160, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 7414, - "name": "registerOnTouched", + "id": 1426, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7415, - "name": "registerOnTouched", + "id": 1427, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 7416, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 164, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 7417, - "name": "setDisabledState", + "id": 1428, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7418, - "name": "setDisabledState", + "id": 1429, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7419, - "name": "disabled", + "id": 1430, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -186371,36 +90337,47 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 168, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } }, { - "id": 7420, - "name": "writeValue", + "id": 1420, + "name": "tabSelected", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7421, - "name": "writeValue", + "id": 1421, + "name": "tabSelected", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7422, - "name": "value", + "id": 1422, + "name": "evt", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -186418,9 +90395,9 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 172, - "character": 12 + "fileName": "src/_docs/components/tabs/component-example.ts", + "line": 50, + "character": 19 } ] } @@ -186430,168 +90407,79 @@ "title": "Constructors", "kind": 512, "children": [ - 7395 + 1410 ] }, { "title": "Properties", "kind": 1024, "children": [ - 7397, - 7387, - 7385, - 7384, - 7383, - 7390, - 7379, - 7382, - 7381, - 7380, - 7386, - 7396, - 7388, - 7378, - 7389 + 1409, + 1408, + 1424, + 1423, + 1412, + 1425, + 1411, + 1407, + 1406 ] }, { "title": "Methods", "kind": 2048, "children": [ - 7405, - 7403, - 7401, - 7391, - 7408, - 7393, - 7411, - 7414, - 7417, - 7420 + 1417, + 1431, + 1426, + 1428, + 1420 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 50, - "character": 31 + "fileName": "src/_docs/components/tabs/component-example.ts", + "line": 29, + "character": 33 } ], - "implementedTypes": [ + "extendedTypes": [ { "type": "reference", - "name": "ControlValueAccessor" + "name": "BaseExampleComponent", + "id": 279 } - ] - }, - { - "id": 7423, - "name": "TEXT_VALUE_ACCESSOR", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 7426, - "name": "multi", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 22, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, + ], + "implementedTypes": [ { - "id": 7424, - "name": "provide", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 20, - "character": 9 - } - ], - "type": { - "type": "reference", - "name": "InjectionToken", - "typeArguments": [ - { - "type": "reference", - "name": "ControlValueAccessor" - } - ] - }, - "defaultValue": " NG_VALUE_ACCESSOR" + "type": "reference", + "name": "OnInit" }, { - "id": 7425, - "name": "useExisting", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 21, - "character": 13 - } - ], - "type": { - "type": "reference", - "name": "Type", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " forwardRef(() => SamNumberComponent)" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7426, - 7424, - 7425 - ] + "type": "reference", + "name": "OnInit" } - ], + ] + }, + { + "id": 1434, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 19, - "character": 32 + "fileName": "src/_docs/components/tabs/component-example.ts", + "line": 12, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": " `\n \n Lorem ipsum dolor sit amet, consectetur adipisicing elit. Culpa rerum nemo officia nam atque nulla tempore explicabo, at voluptatem omnis ad, possimus. Odio, ex, nostrum. Pariatur tempore, accusamus deleniti magnam!\n \n \n Lorem ipsum dolor sit amet. Doloribus similique ea quam laudantium, cum ducimus labore natus dicta excepturi nam voluptas ut placeat eum esse, beatae rem. Tempore expedita, nostrum.\n \n`" } ], "groups": [ @@ -186599,63 +90487,43 @@ "title": "Classes", "kind": 128, "children": [ - 7377 + 1405 ] }, { - "title": "Object literals", - "kind": 2097152, + "title": "Variables", + "kind": 32, "children": [ - 7423 + 1434 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/number/number.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7462, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/index.ts", + "fileName": "src/_docs/components/tabs/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 7428, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component\"", + "id": 1435, + "name": "\"src/_docs/components/upload/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/components/upload/component-example.ts", "children": [ { - "id": 7429, - "name": "SamRadioButtonComponent", + "id": 1436, + "name": "SamUploadComponentExampleComponent", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, - "comment": { - "shortText": "The component is a set of checkboxes compliant with\nsam.gov standards" - }, "decorators": [ { "name": "Component", @@ -186664,459 +90532,339 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-radio-button',\n templateUrl: 'radiobutton.template.html',\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => SamRadioButtonComponent),\n multi: true\n }]\n}" + "obj": "{\n\tselector: 'doc-sam-upload',\n template: ''+ code_example +''\n}" } } ], "children": [ { - "id": 7437, - "name": "control", - "kind": 1024, - "kindString": "Property", + "id": 1441, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the angular FormControl" + "isExported": true }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1444, + "name": "new SamUploadComponentExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 1445, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 1446, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1447, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], "type": { "type": "reference", - "name": "Input" + "name": "SamUploadComponentExampleComponent", + "id": 1436 }, - "arguments": {} + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 65, - "character": 25 + "fileName": "src/_docs/components/upload/component-example.ts", + "line": 31, + "character": 43 } ], - "type": { + "overwrites": { "type": "reference", - "name": "FormControl" + "name": "BaseExampleComponent.__constructor", + "id": 287 } }, { - "id": 7440, - "name": "disabled", + "id": 1440, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 73, - "character": 18 + "fileName": "src/_docs/components/upload/component-example.ts", + "line": 31, + "character": 13 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" }, - "defaultValue": " undefined" + "defaultValue": "\"_docs/components/upload/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 7436, - "name": "errorMessage", + "id": 1439, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the general error message" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 61, - "character": 30 + "fileName": "src/_docs/components/upload/component-example.ts", + "line": 29, + "character": 8 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 7434, - "name": "hint", + "id": 1449, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the helpful text for the using the component" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 53, - "character": 22 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 7432, - "name": "label", + "id": 1448, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the label text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 45, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 7430, - "name": "model", + "id": 1443, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the bound value of the component" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 37, - "character": 23 + "fileName": "src/_docs/components/upload/component-example.ts", + "line": 36, + "character": 20 } ], "type": { - "type": "union", - "types": [ - { - "type": "instrinct", - "name": "string" - }, - { - "type": "instrinct", - "name": "number" - }, - { - "type": "instrinct", - "name": "symbol" - } - ] + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 7438, - "name": "modelChange", + "id": 1450, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Event emitted when model value changes" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 69, - "character": 30 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { "type": "reference", - "name": "EventEmitter", + "name": "Array", "typeArguments": [ { "type": "instrinct", - "name": "any" + "name": "string" } ] }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 7433, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the semantic description for the component" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 49, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 7431, - "name": "options", + "id": 1442, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the array of checkbox values and labels (see OptionsType)" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 41, - "character": 25 + "fileName": "src/_docs/components/upload/component-example.ts", + "line": 35, + "character": 18 } ], "type": { "type": "reference", - "isArray": true, - "name": "OptionsType", - "id": 3829 + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 7435, - "name": "required", + "id": 1438, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets required text on component" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 57, - "character": 26 + "fileName": "src/_docs/components/upload/component-example.ts", + "line": 27, + "character": 17 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" }, - "defaultValue": "false" + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } }, { - "id": 7439, - "name": "wrapper", + "id": 1437, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "FieldsetWrapper" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 71, - "character": 44 + "fileName": "src/_docs/components/upload/component-example.ts", + "line": 26, + "character": 16 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamUploadComponent\"", + "overwrites": { "type": "reference", - "name": "FieldsetWrapper", - "id": 4632 + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 7441, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7442, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 76, - "character": 17 - } - ] - }, - { - "id": 7446, - "name": "onChange", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7447, - "name": "onChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 99, - "character": 17 - } - ] - }, - { - "id": 7443, - "name": "onRadioChange", + "id": 1456, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { @@ -187125,41 +90873,51 @@ }, "signatures": [ { - "id": 7444, - "name": "onRadioChange", + "id": 1457, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7445, - "name": "value", + "id": 1458, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 93, - "character": 22 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 7448, - "name": "onTouched", + "id": 1451, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { @@ -187168,28 +90926,38 @@ }, "signatures": [ { - "id": 7449, - "name": "onTouched", + "id": 1452, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 100, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 7450, - "name": "registerOnChange", + "id": 1453, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { @@ -187198,15 +90966,15 @@ }, "signatures": [ { - "id": 7451, - "name": "registerOnChange", + "id": 1454, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7452, - "name": "fn", + "id": 1455, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -187219,241 +90987,273 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 102, - "character": 25 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1441 ] }, { - "id": 7453, - "name": "registerOnTouched", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7454, - "name": "registerOnTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7455, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 106, - "character": 26 - } + "title": "Properties", + "kind": 1024, + "children": [ + 1440, + 1439, + 1449, + 1448, + 1443, + 1450, + 1442, + 1438, + 1437 ] }, { - "id": 7456, - "name": "setDisabledState", + "title": "Methods", "kind": 2048, - "kindString": "Method", + "children": [ + 1456, + 1451, + 1453 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/upload/component-example.ts", + "line": 25, + "character": 47 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 1459, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/components/upload/component-example.ts", + "line": 19, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `TODO`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1436 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1459 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/components/upload/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5311, + "name": "\"src/_docs/data-structures/interfaces/interfaces.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/data-structures/interfaces/interfaces.component.ts", + "children": [ + { + "id": 5312, + "name": "InterfacesComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-interfaces',\n templateUrl: 'interfaces.template.html'\n}" + } + } + ], + "children": [ + { + "id": 5314, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "signatures": [ { - "id": 7457, - "name": "setDisabledState", - "kind": 4096, - "kindString": "Call signature", + "id": 5316, + "name": "new InterfacesComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7458, - "name": "disabled", + "id": 5317, + "name": "service", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "DocumentationService", + "id": 148 } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "InterfacesComponent", + "id": 5312 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 110, - "character": 25 + "fileName": "src/_docs/data-structures/interfaces/interfaces.component.ts", + "line": 20, + "character": 27 } ] }, { - "id": 7459, - "name": "writeValue", - "kind": 2048, - "kindString": "Method", + "id": 5313, + "name": "interfaces", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 7460, - "name": "writeValue", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7461, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/data-structures/interfaces/interfaces.component.ts", + "line": 20, + "character": 19 } ], + "type": { + "type": "instrinct", + "isArray": true, + "name": "any" + } + }, + { + "id": 5315, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 114, - "character": 19 + "fileName": "src/_docs/data-structures/interfaces/interfaces.component.ts", + "line": 22, + "character": 28 } - ] + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } } ], "groups": [ { - "title": "Properties", - "kind": 1024, + "title": "Constructors", + "kind": 512, "children": [ - 7437, - 7440, - 7436, - 7434, - 7432, - 7430, - 7438, - 7433, - 7431, - 7435, - 7439 + 5314 ] }, { - "title": "Methods", - "kind": 2048, + "title": "Properties", + "kind": 1024, "children": [ - 7441, - 7446, - 7443, - 7448, - 7450, - 7453, - 7456, - 7459 + 5313, + 5315 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 33, - "character": 36 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 7429 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/radiobutton/radiobutton.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7519, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/select/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/select/index.ts", - "children": [ - { - "id": 7520, - "name": "SamSelectModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n CommonModule,\n FormsModule,\n SamWrapperModule\n ],\n declarations: [\n SamSelectComponent\n ],\n exports: [\n SamSelectComponent\n ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/index.ts", - "line": 21, - "character": 28 + "fileName": "src/_docs/data-structures/interfaces/interfaces.component.ts", + "line": 19, + "character": 32 } ] } @@ -187463,39 +91263,36 @@ "title": "Classes", "kind": 128, "children": [ - 7520 + 5312 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/index.ts", + "fileName": "src/_docs/data-structures/interfaces/interfaces.component.ts", "line": 1, "character": 0 } ] }, { - "id": 7463, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/select/select.component\"", + "id": 1460, + "name": "\"src/_docs/directives/click-outside/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/directives/click-outside/component-example.ts", "children": [ { - "id": 7464, - "name": "SamSelectComponent", + "id": 1461, + "name": "ClickOutsideExampleComponent", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, - "comment": { - "shortText": "The component is a select/options group form control" - }, "decorators": [ { "name": "Component", @@ -187504,13 +91301,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-select',\n templateUrl: 'select.template.html',\n providers: [MY_VALUE_ACCESSOR]\n}" + "obj": "{\n\tselector: 'doc-click-outside',\n template: `\n\n

    Click value: {{clickedValue}}

    \n`+code_example+`\n
    \n`\n}" } } ], "children": [ { - "id": 7486, + "id": 1467, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -187519,762 +91316,355 @@ }, "signatures": [ { - "id": 7489, - "name": "new SamSelectComponent", + "id": 1470, + "name": "new ClickOutsideExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7490, - "name": "cdr", + "id": 1471, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, - "decorators": [ - { - "name": "Optional", - "type": { - "type": "reference", - "name": "Optional" - }, - "arguments": {} - } - ], "type": { "type": "reference", - "name": "ChangeDetectorRef" + "name": "Http" } }, { - "id": 7491, - "name": "samFormService", + "id": 1472, + "name": "service", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1473, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "SamSelectComponent", - "id": 7464 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 92, - "character": 32 - } - ] - }, - { - "id": 7487, - "name": "cdr", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "decorators": [ - { - "name": "Optional", - "type": { - "type": "reference", - "name": "Optional" + "name": "ClickOutsideExampleComponent", + "id": 1461 }, - "arguments": {} + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 94, - "character": 37 + "fileName": "src/_docs/directives/click-outside/component-example.ts", + "line": 30, + "character": 50 } ], - "type": { + "overwrites": { "type": "reference", - "name": "ChangeDetectorRef" + "name": "BaseExampleComponent.__constructor", + "id": 287 } }, { - "id": 7474, - "name": "control", + "id": 1466, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the general error message" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 77, - "character": 25 + "fileName": "src/_docs/directives/click-outside/component-example.ts", + "line": 30, + "character": 13 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/directives/click-outside/\"", + "overwrites": { "type": "reference", - "name": "FormControl" + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 7473, - "name": "disabled", + "id": 1462, + "name": "clickedValue", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the general error message" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 73, - "character": 26 + "fileName": "src/_docs/directives/click-outside/component-example.ts", + "line": 24, + "character": 13 } ], "type": { "type": "instrinct", - "name": "boolean" - } + "name": "string" + }, + "defaultValue": "\"None\"" }, { - "id": 7471, - "name": "errorMessage", + "id": 1465, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the general error message" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 65, - "character": 30 + "fileName": "src/_docs/directives/click-outside/component-example.ts", + "line": 28, + "character": 8 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 7470, - "name": "hint", + "id": 1479, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the helpful text for the using the component" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 61, - "character": 22 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 7467, - "name": "label", + "id": 1478, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the label text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 49, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 7465, - "name": "model", + "id": 1469, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the bound value of the component" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 41, - "character": 23 + "fileName": "src/_docs/directives/click-outside/component-example.ts", + "line": 35, + "character": 20 } ], "type": { - "type": "union", - "types": [ - { - "type": "instrinct", - "name": "string" - }, - { - "type": "instrinct", - "name": "number" - }, - { - "type": "instrinct", - "name": "symbol" - } - ] + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 7476, - "name": "modelChange", + "id": 1480, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Event emitted on modal value change" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 85, - "character": 30 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { "type": "reference", - "name": "EventEmitter", + "name": "Array", "typeArguments": [ { "type": "instrinct", - "name": "any" + "name": "string" } ] }, - "defaultValue": " new EventEmitter()" + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } }, { - "id": 7468, - "name": "name", + "id": 1468, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the semantic description for the component" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 53, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 7479, - "name": "onChange", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 91, + "fileName": "src/_docs/directives/click-outside/component-example.ts", + "line": 34, "character": 18 } ], "type": { - "type": "reflection", - "declaration": { - "id": 7480, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 7481, - "name": "__call", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7482, - "name": "_", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 91, - "character": 19 - } - ] - } - } - }, - { - "id": 7483, - "name": "onTouched", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 92, - "character": 19 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 7484, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "signatures": [ - { - "id": 7485, - "name": "__call", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 92, - "character": 20 - } - ] - } - } - }, - { - "id": 7466, - "name": "options", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the array of option values and text (see OptionsType)" + "type": "reference", + "name": "DocumentationService", + "id": 148 }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 45, - "character": 25 - } - ], - "type": { + "overwrites": { "type": "reference", - "isArray": true, - "name": "OptionsType", - "id": 3829 + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 7472, - "name": "required", + "id": 1464, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the general error message" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 69, - "character": 26 + "fileName": "src/_docs/directives/click-outside/component-example.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 7488, - "name": "samFormService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "name": "string" }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 95, - "character": 26 - } - ], - "type": { + "defaultValue": "\"\"", + "overwrites": { "type": "reference", - "name": "SamFormService", - "id": 4560 - } - }, - { - "id": 7478, - "name": "select", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'select'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 89, - "character": 36 - } - ], - "type": { - "type": "instrinct", - "name": "any" + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 7469, - "name": "tabIndex", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the tabindex attribute value" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 57, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 7475, - "name": "useFormService", + "id": 1463, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Toggles validations to display with SamFormService events" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 81, - "character": 32 + "fileName": "src/_docs/directives/click-outside/component-example.ts", + "line": 25, + "character": 15 } ], "type": { "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 7477, - "name": "wrapper", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true + "name": "string" }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "LabelWrapper" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 87, - "character": 41 - } - ], - "type": { + "defaultValue": "\"SamClickOutsideDirective\"", + "overwrites": { "type": "reference", - "name": "LabelWrapper", - "id": 4513 + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 7494, - "name": "ngAfterViewInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7495, - "name": "ngAfterViewInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 127, - "character": 17 - } - ] - }, - { - "id": 7492, - "name": "ngOnInit", + "id": 1476, + "name": "clickInsideHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7493, - "name": "ngOnInit", + "id": 1477, + "name": "clickInsideHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, @@ -188286,24 +91676,25 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 97, - "character": 10 + "fileName": "src/_docs/directives/click-outside/component-example.ts", + "line": 46, + "character": 27 } ] }, { - "id": 7505, - "name": "onBlur", + "id": 1474, + "name": "clickOutsideHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7506, - "name": "onBlur", + "id": 1475, + "name": "clickOutsideHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, @@ -188315,199 +91706,125 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 151, - "character": 8 + "fileName": "src/_docs/directives/click-outside/component-example.ts", + "line": 42, + "character": 28 } ] }, { - "id": 7496, - "name": "onSelectChange", + "id": 1486, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7497, - "name": "onSelectChange", + "id": 1487, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7498, - "name": "val", + "id": 1488, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 135, - "character": 16 - } - ] - }, - { - "id": 7507, - "name": "registerOnChange", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7508, - "name": "registerOnChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7509, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 158, - "character": 18 - } - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 7510, - "name": "registerOnTouched", + "id": 1481, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7511, - "name": "registerOnTouched", + "id": 1482, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 7512, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 162, - "character": 19 - } - ] - }, - { - "id": 7499, - "name": "setDisabledState", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7500, - "name": "setDisabledState", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7501, - "name": "disabled", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 143, - "character": 18 - } - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 7502, - "name": "writeValue", + "id": 1483, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7503, - "name": "writeValue", + "id": 1484, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7504, - "name": "value", + "id": 1485, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -188520,16 +91837,26 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 147, - "character": 12 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "groups": [ @@ -188537,192 +91864,80 @@ "title": "Constructors", "kind": 512, "children": [ - 7486 + 1467 ] }, { "title": "Properties", "kind": 1024, "children": [ - 7487, - 7474, - 7473, - 7471, - 7470, - 7467, - 7465, - 7476, - 7468, - 7479, - 7483, - 7466, - 7472, - 7488, - 7478, - 7469, - 7475, - 7477 + 1466, + 1462, + 1465, + 1479, + 1478, + 1469, + 1480, + 1468, + 1464, + 1463 ] }, { "title": "Methods", "kind": 2048, "children": [ - 7494, - 7492, - 7505, - 7496, - 7507, - 7510, - 7499, - 7502 + 1476, + 1474, + 1486, + 1481, + 1483 ] } ], "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 36, - "character": 31 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "ControlValueAccessor" - }, - { - "type": "reference", - "name": "AfterViewInit" - } - ] - }, - { - "id": 7513, - "name": "noop", - "kind": 64, - "kindString": "Function", - "flags": {}, - "signatures": [ - { - "id": 7514, - "name": "noop", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 21, - "character": 10 - } - ] - }, - { - "id": 7515, - "name": "MY_VALUE_ACCESSOR", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 7518, - "name": "multi", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 25, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 7516, - "name": "provide", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 23, - "character": 9 - } - ], - "type": { - "type": "reference", - "name": "InjectionToken", - "typeArguments": [ - { - "type": "reference", - "name": "ControlValueAccessor" - } - ] - }, - "defaultValue": " NG_VALUE_ACCESSOR" - }, - { - "id": 7517, - "name": "useExisting", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 24, - "character": 13 - } - ], - "type": { - "type": "reference", - "name": "Type", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " forwardRef(() => SamSelectComponent)" + { + "fileName": "src/_docs/directives/click-outside/component-example.ts", + "line": 23, + "character": 41 } ], - "groups": [ + "extendedTypes": [ { - "title": "Variables", - "kind": 32, - "children": [ - 7518, - 7516, - 7517 - ] + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 } ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 1489, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 22, - "character": 23 + "fileName": "src/_docs/directives/click-outside/component-example.ts", + "line": 12, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": " ``" } ], "groups": [ @@ -188730,109 +91945,43 @@ "title": "Classes", "kind": 128, "children": [ - 7464 - ] - }, - { - "title": "Functions", - "kind": 64, - "children": [ - 7513 + 1461 ] }, { - "title": "Object literals", - "kind": 2097152, - "children": [ - 7515 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/select/select.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 7575, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/text/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/text/index.ts", - "children": [ - { - "id": 7576, - "name": "SamTextInputModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n CommonModule,\n FormsModule,\n SamWrapperModule\n ],\n declarations: [ SamTextComponent ],\n exports: [ SamTextComponent ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/index.ts", - "line": 17, - "character": 31 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, + "title": "Variables", + "kind": 32, "children": [ - 7576 + 1489 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/index.ts", + "fileName": "src/_docs/directives/click-outside/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 7521, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/text/text.component\"", + "id": 1490, + "name": "\"src/_docs/directives/drag-drop/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/directives/drag-drop/component-example.ts", "children": [ { - "id": 7522, - "name": "SamTextComponent", + "id": 1491, + "name": "SamDragDropDirectiveExampleComponent", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, - "comment": { - "shortText": "The component provides a text input form control" - }, "decorators": [ { "name": "Component", @@ -188841,13 +91990,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-text',\n templateUrl: 'text.template.html',\n providers: [ TEXT_VALUE_ACCESSOR ]\n}" + "obj": "{\n\tselector: 'doc-sam-drag-drop',\n template: ''+ code_example +''\n}" } } ], "children": [ { - "id": 7543, + "id": 1496, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -188856,884 +92005,929 @@ }, "signatures": [ { - "id": 7546, - "name": "new SamTextComponent", + "id": 1499, + "name": "new SamDragDropDirectiveExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7547, - "name": "samFormService", + "id": 1500, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "Http" } }, { - "id": 7548, - "name": "cdr", + "id": 1501, + "name": "service", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "ChangeDetectorRef" + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1502, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "SamTextComponent", - "id": 7522 + "name": "SamDragDropDirectiveExampleComponent", + "id": 1491 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 97, - "character": 54 + "fileName": "src/_docs/directives/drag-drop/component-example.ts", + "line": 32, + "character": 46 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 7535, - "name": "blur", + "id": 1495, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Lose focus event emit" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 89, - "character": 23 + "fileName": "src/_docs/directives/drag-drop/component-example.ts", + "line": 32, + "character": 13 } ], "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "boolean" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 7545, - "name": "cdr", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "type": "instrinct", + "name": "string" }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 100, - "character": 15 - } - ], - "type": { + "defaultValue": "\"_docs/components/drag-drop/\"", + "overwrites": { "type": "reference", - "name": "ChangeDetectorRef" + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 7530, - "name": "control", + "id": 1494, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Passes in the Angular FormControl" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 69, - "character": 25 + "fileName": "src/_docs/directives/drag-drop/component-example.ts", + "line": 29, + "character": 8 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { "type": "reference", - "name": "FormControl" + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 7528, - "name": "disabled", + "id": 1504, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the disabled attribute" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 61, - "character": 26 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 7527, - "name": "errorMessage", + "id": 1503, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the general error message" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 57, - "character": 30 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 7526, - "name": "hint", + "id": 1498, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the helpful hint text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 53, - "character": 22 + "fileName": "src/_docs/directives/drag-drop/component-example.ts", + "line": 37, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 7524, - "name": "label", + "id": 1505, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the label text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 45, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 7531, - "name": "maxlength", + "id": 1497, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the maxlength attribute" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 73, - "character": 27 + "fileName": "src/_docs/directives/drag-drop/component-example.ts", + "line": 36, + "character": 18 } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 7525, - "name": "name", + "id": 1493, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the name attribute" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 49, - "character": 22 + "fileName": "src/_docs/directives/drag-drop/component-example.ts", + "line": 27, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 7542, - "name": "ngUnsubscribe", + "id": 1492, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 97, - "character": 23 + "fileName": "src/_docs/directives/drag-drop/component-example.ts", + "line": 26, + "character": 16 } ], "type": { - "type": "reference", - "name": "Subject", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] + "type": "instrinct", + "name": "string" }, - "defaultValue": " new Subject()" + "defaultValue": "\"SamDragDropDirective\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 7534, - "name": "onBlur", - "kind": 1024, - "kindString": "Property", + "id": 1511, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "(deprecated) Lose focus event emit" - }, - "decorators": [ + "signatures": [ { - "name": "Output", + "id": 1512, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1513, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], "type": { "type": "reference", - "name": "Output" + "name": "Subscription" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 85, - "character": 25 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "type": { + "inheritedFrom": { "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "boolean" - } - ] - }, - "defaultValue": " new EventEmitter()" + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 7533, - "name": "placeholder", - "kind": 1024, - "kindString": "Property", + "id": 1506, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Optional text to be displayed when the text area is empty" - }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1507, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, "type": { - "type": "reference", - "name": "Input" + "type": "instrinct", + "name": "void" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 81, - "character": 29 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 7529, - "name": "required", - "kind": 1024, - "kindString": "Property", + "id": 1508, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the required attribute" - }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1509, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1510, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], "type": { - "type": "reference", - "name": "Input" + "type": "instrinct", + "name": "void" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 65, - "character": 26 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "boolean" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1496 + ] }, { - "id": 7544, - "name": "samFormService", + "title": "Properties", "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 99, - "character": 36 - } - ], + "children": [ + 1495, + 1494, + 1504, + 1503, + 1498, + 1505, + 1497, + 1493, + 1492 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 1511, + 1506, + 1508 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/directives/drag-drop/component-example.ts", + "line": 25, + "character": 49 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 1514, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/directives/drag-drop/component-example.ts", + "line": 19, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `TODO`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1491 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1514 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/directives/drag-drop/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 1515, + "name": "\"src/_docs/directives/focus/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/directives/focus/component-example.ts", + "children": [ + { + "id": 1516, + "name": "SamFocusDirectiveExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", "type": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-sam-focus',\n template: ' '+ code_example + ''\n}" } - }, + } + ], + "children": [ { - "id": 7532, - "name": "useFormService", - "kind": 1024, - "kindString": "Property", + "id": 1521, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Toggles validations to display with SamFormService events" + "isExported": true }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1524, + "name": "new SamFocusDirectiveExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 1525, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 1526, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1527, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], "type": { "type": "reference", - "name": "Input" + "name": "SamFocusDirectiveExampleComponent", + "id": 1516 }, - "arguments": {} + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 77, - "character": 32 + "fileName": "src/_docs/directives/focus/component-example.ts", + "line": 32, + "character": 42 } ], - "type": { - "type": "instrinct", - "name": "boolean" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } }, { - "id": 7523, - "name": "value", + "id": 1520, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the text input value" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 41, - "character": 23 + "fileName": "src/_docs/directives/focus/component-example.ts", + "line": 32, + "character": 13 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"\"" + "defaultValue": "\"_docs/directives/focus/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 7536, - "name": "wrapper", + "id": 1519, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "LabelWrapper" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 91, - "character": 41 + "fileName": "src/_docs/directives/focus/component-example.ts", + "line": 30, + "character": 9 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { "type": "reference", - "name": "LabelWrapper", - "id": 4513 + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 7553, - "name": "ngAfterViewInit", - "kind": 2048, - "kindString": "Method", + "id": 1529, + "name": "guidance", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 7554, - "name": "ngAfterViewInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 151, - "character": 24 - } - ] - }, - { - "id": 7551, - "name": "ngOnDestroy", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7552, - "name": "ngOnDestroy", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 145, - "character": 20 - } - ] + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 7549, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", + "id": 1528, + "name": "markdown", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 7550, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 102, + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } }, { - "id": 7537, - "name": "onChange", - "kind": 2048, - "kindString": "Method", + "id": 1523, + "name": "mdService", + "kind": 1024, + "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 7538, - "name": "onChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7539, - "name": "c", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 94, - "character": 17 + "fileName": "src/_docs/directives/focus/component-example.ts", + "line": 37, + "character": 20 } - ] + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 7557, - "name": "onInputChange", - "kind": 2048, - "kindString": "Method", + "id": 1530, + "name": "sections", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 7558, - "name": "onInputChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 167, - "character": 22 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } - ] - }, - { - "id": 7555, - "name": "onLoseFocus", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7556, - "name": "onLoseFocus", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", - "name": "void" + "name": "string" } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 158, - "character": 20 - } - ] + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } }, { - "id": 7540, - "name": "onTouched", - "kind": 2048, - "kindString": "Method", + "id": 1522, + "name": "service", + "kind": 1024, + "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 7541, - "name": "onTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 95, + "fileName": "src/_docs/directives/focus/component-example.ts", + "line": 36, "character": 18 } - ] + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 7559, - "name": "registerOnChange", - "kind": 2048, - "kindString": "Method", + "id": 1518, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "signatures": [ + "sources": [ { - "id": 7560, - "name": "registerOnChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7561, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/directives/focus/component-example.ts", + "line": 28, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 1517, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 172, - "character": 25 + "fileName": "src/_docs/directives/focus/component-example.ts", + "line": 27, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamFocusDirective\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 7562, - "name": "registerOnTouched", + "id": 1536, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { @@ -189742,41 +92936,51 @@ }, "signatures": [ { - "id": 7563, - "name": "registerOnTouched", + "id": 1537, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7564, - "name": "fn", + "id": 1538, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 176, - "character": 26 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 7565, - "name": "setDisabledState", + "id": 1531, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { @@ -189785,41 +92989,38 @@ }, "signatures": [ { - "id": 7566, - "name": "setDisabledState", + "id": 1532, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 7567, - "name": "disabled", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 180, - "character": 25 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 7568, - "name": "writeValue", + "id": 1533, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { @@ -189828,15 +93029,15 @@ }, "signatures": [ { - "id": 7569, - "name": "writeValue", + "id": 1534, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7570, - "name": "value", + "id": 1535, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -189849,16 +93050,26 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 184, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "groups": [ @@ -189866,175 +93077,77 @@ "title": "Constructors", "kind": 512, "children": [ - 7543 + 1521 ] }, { "title": "Properties", "kind": 1024, "children": [ - 7535, - 7545, - 7530, - 7528, - 7527, - 7526, - 7524, - 7531, - 7525, - 7542, - 7534, - 7533, - 7529, - 7544, - 7532, - 7523, - 7536 + 1520, + 1519, + 1529, + 1528, + 1523, + 1530, + 1522, + 1518, + 1517 ] }, { "title": "Methods", "kind": 2048, "children": [ - 7553, - 7551, - 7549, - 7537, - 7557, - 7555, - 7540, - 7559, - 7562, - 7565, - 7568 + 1536, + 1531, + 1533 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 37, - "character": 29 + "fileName": "src/_docs/directives/focus/component-example.ts", + "line": 26, + "character": 46 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 } ], "implementedTypes": [ { "type": "reference", - "name": "ControlValueAccessor" + "name": "OnInit" }, { "type": "reference", - "name": "OnDestroy" + "name": "OnInit" } ] }, { - "id": 7571, - "name": "TEXT_VALUE_ACCESSOR", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 7574, - "name": "multi", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 26, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 7572, - "name": "provide", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 24, - "character": 9 - } - ], - "type": { - "type": "reference", - "name": "InjectionToken", - "typeArguments": [ - { - "type": "reference", - "name": "ControlValueAccessor" - } - ] - }, - "defaultValue": " NG_VALUE_ACCESSOR" - }, - { - "id": 7573, - "name": "useExisting", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 25, - "character": 13 - } - ], - "type": { - "type": "reference", - "name": "Type", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] - }, - "defaultValue": " forwardRef(() => SamTextComponent)" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 7574, - 7572, - 7573 - ] - } - ], + "id": 1539, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 23, - "character": 32 + "fileName": "src/_docs/directives/focus/component-example.ts", + "line": 20, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": "\"TODO\"" } ], "groups": [ @@ -190042,102 +93155,43 @@ "title": "Classes", "kind": 128, "children": [ - 7522 + 1516 ] }, { - "title": "Object literals", - "kind": 2097152, - "children": [ - 7571 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/text/text.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4680, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/textarea/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/textarea/index.ts", - "children": [ - { - "id": 4681, - "name": "SamTextAreaModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n CommonModule,\n FormsModule,\n SamWrapperModule\n ],\n declarations: [ SamTextareaComponent ],\n exports: [ SamTextareaComponent ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/index.ts", - "line": 17, - "character": 30 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, + "title": "Variables", + "kind": 32, "children": [ - 4681 + 1539 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/index.ts", + "fileName": "src/_docs/directives/focus/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 4569, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component\"", + "id": 1540, + "name": "\"src/_docs/directives/sticky/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/directives/sticky/component-example.ts", "children": [ { - "id": 4570, - "name": "SamTextareaComponent", + "id": 1541, + "name": "StickyExampleComponent", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, - "comment": { - "shortText": "The component provides a textarea input form control" - }, "decorators": [ { "name": "Component", @@ -190146,13 +93200,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-text-area',\n templateUrl: 'textarea.template.html',\n providers: [ TEXT_VALUE_ACCESSOR ]\n}" + "obj": "{\n\tselector: 'doc-sticky',\n template: `\n\nScroll down and see Sidenav\n\n
    \n`\n}" } } ], "children": [ { - "id": 4594, + "id": 1546, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -190161,684 +93215,807 @@ }, "signatures": [ { - "id": 4597, - "name": "new SamTextareaComponent", + "id": 1549, + "name": "new StickyExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 4598, - "name": "cdr", + "id": 1550, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "ChangeDetectorRef" + "name": "Http" } }, { - "id": 4599, - "name": "samFormService", + "id": 1551, + "name": "service", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1552, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "SamTextareaComponent", - "id": 4570 + "name": "StickyExampleComponent", + "id": 1541 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 108, - "character": 42 + "fileName": "src/_docs/directives/sticky/component-example.ts", + "line": 39, + "character": 43 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 4595, - "name": "cdr", + "id": 1545, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 110, - "character": 25 + "fileName": "src/_docs/directives/sticky/component-example.ts", + "line": 39, + "character": 13 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/directives/sticky/\"", + "overwrites": { "type": "reference", - "name": "ChangeDetectorRef" + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 4580, - "name": "control", + "id": 1544, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "sets the form control to update label messages" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 74, - "character": 18 + "fileName": "src/_docs/directives/sticky/component-example.ts", + "line": 27, + "character": 8 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `
    \n
    \n \n  \n
    \n
    \n ...\n
    \n
    `", + "overwrites": { "type": "reference", - "name": "FormControl" + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 4576, - "name": "disabled", + "id": 1554, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the disabled attribute" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 57, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 4575, - "name": "errorMessage", + "id": 1553, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the general error message" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 53, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 4585, - "name": "focus", + "id": 1548, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emits focus event" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 95, - "character": 17 + "fileName": "src/_docs/directives/sticky/component-example.ts", + "line": 44, + "character": 20 } ], "type": { "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] + "name": "MarkdownService", + "id": 238 }, - "defaultValue": " new EventEmitter()" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 4584, - "name": "focusEvent", + "id": 1555, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "(deprecated) Emits focus event" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 91, - "character": 22 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { "type": "reference", - "name": "EventEmitter", + "name": "Array", "typeArguments": [ { "type": "instrinct", - "name": "any" + "name": "string" } ] }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 4574, - "name": "hint", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the helpful hint text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 49, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 4587, - "name": "inputChange", + "id": 1547, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emits event whenever input event is fired on the textarea" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 103, - "character": 23 + "fileName": "src/_docs/directives/sticky/component-example.ts", + "line": 43, + "character": 18 } ], "type": { "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] + "name": "DocumentationService", + "id": 148 }, - "defaultValue": " new EventEmitter()" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 4586, - "name": "inputEventChange", + "id": 1543, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "deprecated, Emits event whenever input event is fired on the textarea" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 99, - "character": 28 + "fileName": "src/_docs/directives/sticky/component-example.ts", + "line": 25, + "character": 17 } ], "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] + "type": "instrinct", + "name": "string" }, - "defaultValue": " new EventEmitter()" + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } }, { - "id": 4572, - "name": "label", + "id": 1542, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the label text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 41, - "character": 16 + "fileName": "src/_docs/directives/sticky/component-example.ts", + "line": 24, + "character": 15 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"SamStickyComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 4579, - "name": "maxlength", - "kind": 1024, - "kindString": "Property", + "id": 1561, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the maxlength attribute" + "isExported": true, + "isPublic": true }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1562, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1563, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], "type": { "type": "reference", - "name": "Input" + "name": "Subscription" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 70, - "character": 20 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "type": { - "type": "instrinct", - "name": "number" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } }, { - "id": 4573, - "name": "name", - "kind": 1024, - "kindString": "Property", + "id": 1556, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the name attribute" + "isExported": true, + "isPublic": true }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1557, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, "type": { - "type": "reference", - "name": "Input" + "type": "instrinct", + "name": "void" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 45, - "character": 15 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 4582, - "name": "placeholder", - "kind": 1024, - "kindString": "Property", + "id": 1558, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Optional text to be displayed when the text area is empty" + "isExported": true, + "isPublic": true }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1559, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1560, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], "type": { - "type": "reference", - "name": "Input" + "type": "instrinct", + "name": "void" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 83, - "character": 22 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1546 + ] }, { - "id": 4577, - "name": "required", + "title": "Properties", "kind": 1024, - "kindString": "Property", + "children": [ + 1545, + 1544, + 1554, + 1553, + 1548, + 1555, + 1547, + 1543, + 1542 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 1561, + 1556, + 1558 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/directives/sticky/component-example.ts", + "line": 23, + "character": 35 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1541 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/directives/sticky/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 1564, + "name": "\"src/_docs/directives/tab-outside/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/directives/tab-outside/component-example.ts", + "children": [ + { + "id": 1565, + "name": "TabOutsideExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-taboutside',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], + "children": [ + { + "id": 1571, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the required attribute" - }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1574, + "name": "new TabOutsideExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 1575, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 1576, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1577, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], "type": { "type": "reference", - "name": "Input" + "name": "TabOutsideExampleComponent", + "id": 1565 }, - "arguments": {} + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/directives/tab-outside/component-example.ts", + "line": 32, + "character": 48 } ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 1570, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 62, - "character": 19 + "fileName": "src/_docs/directives/tab-outside/component-example.ts", + "line": 32, + "character": 13 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" + }, + "defaultValue": "\"_docs/directives/tab-outside/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 4578, - "name": "requiredFlag", + "id": 1568, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the required attribute" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 66, - "character": 23 + "fileName": "src/_docs/directives/tab-outside/component-example.ts", + "line": 28, + "character": 16 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 4596, - "name": "samFormService", + "id": 1584, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 111, - "character": 26 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 4583, - "name": "useFormService", + "id": 1583, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Toggles validations to display with SamFormService events" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 87, - "character": 25 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 4571, - "name": "value", + "id": 1573, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the text input value" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "src/_docs/directives/tab-outside/component-example.ts", "line": 37, - "character": 16 + "character": 20 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "MarkdownService", + "id": 238 }, - "defaultValue": "\"\"" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 4581, - "name": "valueChange", + "id": 1585, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "deprecated, emits value change events" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 78, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { "type": "reference", - "name": "EventEmitter", + "name": "Array", "typeArguments": [ { "type": "instrinct", @@ -190846,300 +94023,173 @@ } ] }, - "defaultValue": " new EventEmitter()" + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } }, { - "id": 4588, - "name": "wrapper", + "id": 1572, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "LabelWrapper" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 105, - "character": 34 + "fileName": "src/_docs/directives/tab-outside/component-example.ts", + "line": 36, + "character": 18 } ], "type": { "type": "reference", - "name": "LabelWrapper", - "id": 4513 + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 4610, - "name": "inputEventHandler", - "kind": 2048, - "kindString": "Method", + "id": 1569, + "name": "tabAway", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 4611, - "name": "inputEventHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4612, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 176, - "character": 19 - } - ] - }, - { - "id": 4602, - "name": "ngAfterViewInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4603, - "name": "ngAfterViewInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/directives/tab-outside/component-example.ts", + "line": 30, + "character": 16 } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 156, - "character": 17 - } - ] - }, - { - "id": 4600, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true + "type": { + "type": "instrinct", + "name": "string" }, - "signatures": [ - { - "id": 4601, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 113, - "character": 10 - } - ] + "defaultValue": "\"not tabbed away\"" }, { - "id": 4613, - "name": "onBlur", - "kind": 2048, - "kindString": "Method", + "id": 1567, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 4614, - "name": "onBlur", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 181, - "character": 8 + "fileName": "src/_docs/directives/tab-outside/component-example.ts", + "line": 26, + "character": 24 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } }, { - "id": 4589, - "name": "onChange", - "kind": 2048, - "kindString": "Method", + "id": 1566, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 4590, - "name": "onChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4591, - "name": "_", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 107, - "character": 17 - } - ] - }, - { - "id": 4604, - "name": "onFocus", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4605, - "name": "onFocus", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4606, - "name": "$event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/directives/tab-outside/component-example.ts", + "line": 25, + "character": 23 } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 164, - "character": 9 - } - ] + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamTabOutsideDirective\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 4607, - "name": "onInputChange", + "id": 1591, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 4608, - "name": "onInputChange", + "id": 1592, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 4609, - "name": "value", + "id": 1593, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 169, - "character": 15 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 4592, - "name": "onTouched", + "id": 1586, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { @@ -191148,95 +94198,51 @@ }, "signatures": [ { - "id": 4593, - "name": "onTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 108, - "character": 18 - } - ] - }, - { - "id": 4615, - "name": "registerOnChange", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4616, - "name": "registerOnChange", + "id": 1587, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 4617, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 187, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 4618, - "name": "registerOnTouched", + "id": 1581, + "name": "reset", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 4619, - "name": "registerOnTouched", + "id": 1582, + "name": "reset", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 4620, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", "name": "void" @@ -191245,31 +94251,32 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 191, - "character": 19 + "fileName": "src/_docs/directives/tab-outside/component-example.ts", + "line": 47, + "character": 14 } ] }, { - "id": 4621, - "name": "setDisabledState", + "id": 1588, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 4622, - "name": "setDisabledState", + "id": 1589, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 4623, - "name": "disabled", + "id": 1590, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -191282,36 +94289,47 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 195, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } }, { - "id": 4624, - "name": "writeValue", + "id": 1578, + "name": "tabHandler", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 4625, - "name": "writeValue", + "id": 1579, + "name": "tabHandler", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 4626, - "name": "value", + "id": 1580, + "name": "evt", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -191329,9 +94347,9 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 199, - "character": 12 + "fileName": "src/_docs/directives/tab-outside/component-example.ts", + "line": 44, + "character": 19 } ] } @@ -191341,175 +94359,145 @@ "title": "Constructors", "kind": 512, "children": [ - 4594 + 1571 ] }, { "title": "Properties", "kind": 1024, "children": [ - 4595, - 4580, - 4576, - 4575, - 4585, - 4584, - 4574, - 4587, - 4586, - 4572, - 4579, - 4573, - 4582, - 4577, - 4578, - 4596, - 4583, - 4571, - 4581, - 4588 + 1570, + 1568, + 1584, + 1583, + 1573, + 1585, + 1572, + 1569, + 1567, + 1566 ] }, { "title": "Methods", "kind": 2048, "children": [ - 4610, - 4602, - 4600, - 4613, - 4589, - 4604, - 4607, - 4592, - 4615, - 4618, - 4621, - 4624 + 1591, + 1586, + 1581, + 1588, + 1578 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 33, - "character": 33 + "fileName": "src/_docs/directives/tab-outside/component-example.ts", + "line": 24, + "character": 39 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 } ], "implementedTypes": [ { "type": "reference", - "name": "ControlValueAccessor" + "name": "OnInit" } ] }, { - "id": 4627, - "name": "TEXT_VALUE_ACCESSOR", - "kind": 2097152, - "kindString": "Object literal", + "id": 1594, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/directives/tab-outside/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ` \n

    {{ tabAway }}

    \n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1565 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1594 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/directives/tab-outside/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5343, + "name": "\"src/_docs/doc.module.dynamic\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/doc.module.dynamic.ts", + "comment": { + "shortText": "/" + }, + "children": [ + { + "id": 5344, + "name": "DocModule", + "kind": 128, + "kindString": "Class", "flags": { "isExported": true }, - "children": [ - { - "id": 4630, - "name": "multi", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 22, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 4628, - "name": "provide", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 20, - "character": 9 - } - ], - "type": { - "type": "reference", - "name": "InjectionToken", - "typeArguments": [ - { - "type": "reference", - "name": "ControlValueAccessor" - } - ] - }, - "defaultValue": " NG_VALUE_ACCESSOR" - }, + "comment": { + "shortText": "AppModule` is the main entry point into Angular2's bootstraping process" + }, + "decorators": [ { - "id": 4629, - "name": "useExisting", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 21, - "character": 13 - } - ], + "name": "NgModule", "type": { "type": "reference", - "name": "Type", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] + "name": "NgModule" }, - "defaultValue": " forwardRef(() => SamTextareaComponent)" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 4630, - 4628, - 4629 - ] + "arguments": { + "obj": "{\n\tdeclarations: [\n\t\tAccordionExampleComponent,\n\t\tSamActionButtonExampleComponent,\n\t\tSamActionsDropdownComponentExampleComponent,\n\t\tAlertExampleComponent,\n\t\tSamAlertFooterComponentExampleComponent,\n\t\tSamBadgeComponentExampleComponent,\n\t\tBannerExampleComponent,\n\t\tSamBreadcrumbsComponentExampleComponent,\n\t\tCollapsibleExampleComponent,\n\t\tSamCommentsComponentExampleComponent,\n\t\tDownloadExampleComponent,\n\t\tSamFilesComponentExampleComponent,\n\t\tFiltersContainerExampleComponent,\n\t\tSamHeaderComponentExampleComponent,\n\t\tHistoryExampleComponent,\n\t\tSamImageComponentExampleComponent,\n\t\tInfoAccordionExampleComponent,\n\t\tLabelExampleComponent,\n\t\tModalExampleComponent,\n\t\tMultiselectDropdownExampleComponent,\n\t\tPaginationExampleComponent,\n\t\tPOCExampleComponent,\n\t\tSamProgressExampleComponent,\n\t\tSidenavExampleComponent,\n\t\tSpinnerExampleComponent,\n\t\tTabsExampleComponent,\n\t\tSamUploadComponentExampleComponent,\n\t\tClickOutsideExampleComponent,\n\t\tSamDragDropDirectiveExampleComponent,\n\t\tSamFocusDirectiveExampleComponent,\n\t\tStickyExampleComponent,\n\t\tTabOutsideExampleComponent,\n\t\tButtonExampleComponent,\n\t\tSamBoxComponentExampleComponent,\n\t\tSamContainerComponentExampleComponent,\n\t\tSamHeadingComponentExampleComponent,\n\t\tSamIconComponentExampleComponent,\n\t\tSamListComponentExampleComponent,\n\t\tSamMasterPageComponentExampleComponent,\n\t\tSamPageComponentExampleComponent,\n\t\tSamSidebarComponentExampleComponent,\n\t\tSamYoutubeComponentExampleComponent,\n\t\tAutocompleteExampleComponent,\n\t\tAutocompleteMultiselectExampleComponent,\n\t\tCheckboxExampleComponent,\n\t\tDateExampleComponent,\n\t\tSamDateRangeComponentExampleComponent,\n\t\tDateTimeExampleComponent,\n\t\tNumberExampleComponent,\n\t\tRadioExampleComponent,\n\t\tSelectExampleComponent,\n\t\tTextExampleComponent,\n\t\tTextareaExampleComponent,\n\t\tTimeExampleComponent,\n\t\tToggleSwitchExampleComponent,\n\t\tNameEntryExampleComponent,\n\t\tPhoneEntryExampleComponent,\n\t\tCountryServiceDirectiveExampleComponent,\n\t\tStateServiceDirectiveExampleComponent,\n\t\tFieldsetWrapperExampleComponent,\n\t\tLabelWrapperExampleComponent,InterfacesComponent,DocTemplateComponent,StaticPageComponent,BaseExampleComponent\n\t],\n\tentryComponents: [\n\t\tAccordionExampleComponent,\n\t\tSamActionButtonExampleComponent,\n\t\tSamActionsDropdownComponentExampleComponent,\n\t\tAlertExampleComponent,\n\t\tSamAlertFooterComponentExampleComponent,\n\t\tSamBadgeComponentExampleComponent,\n\t\tBannerExampleComponent,\n\t\tSamBreadcrumbsComponentExampleComponent,\n\t\tCollapsibleExampleComponent,\n\t\tSamCommentsComponentExampleComponent,\n\t\tDownloadExampleComponent,\n\t\tSamFilesComponentExampleComponent,\n\t\tFiltersContainerExampleComponent,\n\t\tSamHeaderComponentExampleComponent,\n\t\tHistoryExampleComponent,\n\t\tSamImageComponentExampleComponent,\n\t\tInfoAccordionExampleComponent,\n\t\tLabelExampleComponent,\n\t\tModalExampleComponent,\n\t\tMultiselectDropdownExampleComponent,\n\t\tPaginationExampleComponent,\n\t\tPOCExampleComponent,\n\t\tSamProgressExampleComponent,\n\t\tSidenavExampleComponent,\n\t\tSpinnerExampleComponent,\n\t\tTabsExampleComponent,\n\t\tSamUploadComponentExampleComponent,\n\t\tClickOutsideExampleComponent,\n\t\tSamDragDropDirectiveExampleComponent,\n\t\tSamFocusDirectiveExampleComponent,\n\t\tStickyExampleComponent,\n\t\tTabOutsideExampleComponent,\n\t\tButtonExampleComponent,\n\t\tSamBoxComponentExampleComponent,\n\t\tSamContainerComponentExampleComponent,\n\t\tSamHeadingComponentExampleComponent,\n\t\tSamIconComponentExampleComponent,\n\t\tSamListComponentExampleComponent,\n\t\tSamMasterPageComponentExampleComponent,\n\t\tSamPageComponentExampleComponent,\n\t\tSamSidebarComponentExampleComponent,\n\t\tSamYoutubeComponentExampleComponent,\n\t\tAutocompleteExampleComponent,\n\t\tAutocompleteMultiselectExampleComponent,\n\t\tCheckboxExampleComponent,\n\t\tDateExampleComponent,\n\t\tSamDateRangeComponentExampleComponent,\n\t\tDateTimeExampleComponent,\n\t\tNumberExampleComponent,\n\t\tRadioExampleComponent,\n\t\tSelectExampleComponent,\n\t\tTextExampleComponent,\n\t\tTextareaExampleComponent,\n\t\tTimeExampleComponent,\n\t\tToggleSwitchExampleComponent,\n\t\tNameEntryExampleComponent,\n\t\tPhoneEntryExampleComponent,\n\t\tCountryServiceDirectiveExampleComponent,\n\t\tStateServiceDirectiveExampleComponent,\n\t\tFieldsetWrapperExampleComponent,\n\t\tLabelWrapperExampleComponent,InterfacesComponent,DocTemplateComponent,StaticPageComponent,BaseExampleComponent\n\t],\n\timports: [\n\t\tBrowserModule,\n\t\tCommonModule,\n\t\tFormsModule,\n\t\tSamUIKitModule,\n\t\trouting,\n\t\tSiteComponentsModule\n\t],\n\texports: [BaseExampleComponent]\n}" + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", - "line": 19, - "character": 32 + "fileName": "src/_docs/doc.module.dynamic.ts", + "line": 224, + "character": 22 } - ], - "type": { - "type": "instrinct", - "name": "object" - } + ] } ], "groups": [ @@ -191517,63 +94505,110 @@ "title": "Classes", "kind": 128, "children": [ - 4570 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 4627 + 5344 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/textarea/textarea.component.ts", + "fileName": "src/_docs/doc.module.dynamic.ts", "line": 1, "character": 0 } ] }, { - "id": 7577, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/time/index\"", + "id": 2571, + "name": "\"src/_docs/doc.routes.dynamic\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/time/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/doc.routes.dynamic.ts", + "comment": { + "shortText": "/" + }, + "children": [ + { + "id": 2572, + "name": "ROUTES", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/doc.routes.dynamic.ts", + "line": 72, + "character": 19 + } + ], + "type": { + "type": "reference", + "name": "Routes" + }, + "defaultValue": " [\n\t\n\t{ path: 'components/accordion', component: AccordionExampleComponent },\n\t{ path: 'components/actions/action-button', component: SamActionButtonExampleComponent },\n\t{ path: 'components/actions/actions-dropdown', component: SamActionsDropdownComponentExampleComponent },\n\t{ path: 'components/alert', component: AlertExampleComponent },\n\t{ path: 'components/alert-footer', component: SamAlertFooterComponentExampleComponent },\n\t{ path: 'components/badge', component: SamBadgeComponentExampleComponent },\n\t{ path: 'components/banner', component: BannerExampleComponent },\n\t{ path: 'components/breadcrumbs', component: SamBreadcrumbsComponentExampleComponent },\n\t{ path: 'components/collapsible', component: CollapsibleExampleComponent },\n\t{ path: 'components/comments', component: SamCommentsComponentExampleComponent },\n\t{ path: 'components/download', component: DownloadExampleComponent },\n\t{ path: 'components/files', component: SamFilesComponentExampleComponent },\n\t{ path: 'components/filters-container', component: FiltersContainerExampleComponent },\n\t{ path: 'components/header', component: SamHeaderComponentExampleComponent },\n\t{ path: 'components/history', component: HistoryExampleComponent },\n\t{ path: 'components/image', component: SamImageComponentExampleComponent },\n\t{ path: 'components/info-accordion', component: InfoAccordionExampleComponent },\n\t{ path: 'components/label', component: LabelExampleComponent },\n\t{ path: 'components/modal', component: ModalExampleComponent },\n\t{ path: 'components/multiselect-dropdown', component: MultiselectDropdownExampleComponent },\n\t{ path: 'components/pagination', component: PaginationExampleComponent },\n\t{ path: 'components/point-of-contact', component: POCExampleComponent },\n\t{ path: 'components/progress-bar', component: SamProgressExampleComponent },\n\t{ path: 'components/sidenav', component: SidenavExampleComponent },\n\t{ path: 'components/spinner', component: SpinnerExampleComponent },\n\t{ path: 'components/tabs', component: TabsExampleComponent },\n\t{ path: 'components/upload', component: SamUploadComponentExampleComponent },\n\t{ path: 'directives/click-outside', component: ClickOutsideExampleComponent },\n\t{ path: 'directives/drag-drop', component: SamDragDropDirectiveExampleComponent },\n\t{ path: 'directives/focus', component: SamFocusDirectiveExampleComponent },\n\t{ path: 'directives/sticky', component: StickyExampleComponent },\n\t{ path: 'directives/tab-outside', component: TabOutsideExampleComponent },\n\t{ path: 'elements/button', component: ButtonExampleComponent },\n\t{ path: 'experimental/box', component: SamBoxComponentExampleComponent },\n\t{ path: 'experimental/container', component: SamContainerComponentExampleComponent },\n\t{ path: 'experimental/heading', component: SamHeadingComponentExampleComponent },\n\t{ path: 'experimental/icon', component: SamIconComponentExampleComponent },\n\t{ path: 'experimental/list', component: SamListComponentExampleComponent },\n\t{ path: 'experimental/master-page', component: SamMasterPageComponentExampleComponent },\n\t{ path: 'experimental/page', component: SamPageComponentExampleComponent },\n\t{ path: 'experimental/sidebar', component: SamSidebarComponentExampleComponent },\n\t{ path: 'experimental/youtube', component: SamYoutubeComponentExampleComponent },\n\t{ path: 'form-controls/autocomplete', component: AutocompleteExampleComponent },\n\t{ path: 'form-controls/autocomplete-multiselect', component: AutocompleteMultiselectExampleComponent },\n\t{ path: 'form-controls/checkbox', component: CheckboxExampleComponent },\n\t{ path: 'form-controls/date', component: DateExampleComponent },\n\t{ path: 'form-controls/date-range', component: SamDateRangeComponentExampleComponent },\n\t{ path: 'form-controls/date-time', component: DateTimeExampleComponent },\n\t{ path: 'form-controls/number', component: NumberExampleComponent },\n\t{ path: 'form-controls/radiobutton', component: RadioExampleComponent },\n\t{ path: 'form-controls/select', component: SelectExampleComponent },\n\t{ path: 'form-controls/text', component: TextExampleComponent },\n\t{ path: 'form-controls/textarea', component: TextareaExampleComponent },\n\t{ path: 'form-controls/time', component: TimeExampleComponent },\n\t{ path: 'form-controls/toggle-switch', component: ToggleSwitchExampleComponent },\n\t{ path: 'form-templates/name-entry', component: NameEntryExampleComponent },\n\t{ path: 'form-templates/phone-entry', component: PhoneEntryExampleComponent },\n\t{ path: 'service-directives/autocomplete/country', component: CountryServiceDirectiveExampleComponent },\n\t{ path: 'service-directives/autocomplete/state', component: StateServiceDirectiveExampleComponent },\n\t{ path: 'wrappers/fieldset-wrapper', component: FieldsetWrapperExampleComponent },\n\t{ path: 'wrappers/label-wrapper', component: LabelWrapperExampleComponent },\n\t\n\t{ path: 'architecture/form-service', component: StaticPageComponent, data: { markdownfile: '_static/architecture/Form-Service.md' } },\n\t{ path: 'architecture/modules-and-lazy-loading', component: StaticPageComponent, data: { markdownfile: '_static/architecture/Modules-And-Lazy-Loading.md' } },\n\t{ path: 'architecture/title-service', component: StaticPageComponent, data: { markdownfile: '_static/architecture/Title-Service.md' } },\n\t{ path: 'overview/contribute', component: StaticPageComponent, data: { markdownfile: '_static/overview/Contribute.md' } },\n\t{ path: 'overview/getting-started', component: StaticPageComponent, data: { markdownfile: '_static/overview/Getting-Started.md' } },\n\t{ path: 'overview/giving-back', component: StaticPageComponent, data: { markdownfile: '_static/overview/Giving-Back.md' } },\n\t{ path: 'overview/how-to-use-this-site', component: StaticPageComponent, data: { markdownfile: '_static/overview/How-to-use-this-site.md' } },\n\t{ path: 'pages/basic-page', component: StaticPageComponent, data: { markdownfile: '_static/pages/Basic-Page.md' } },\n\t{ path: 'pages/buttons-and-links', component: StaticPageComponent, data: { markdownfile: '_static/pages/Buttons-and-Links.md' } },\n\t{ path: 'pages/colors', component: StaticPageComponent, data: { markdownfile: '_static/pages/Colors.md' } },\n\t{ path: 'pages/complex-data-entry', component: StaticPageComponent, data: { markdownfile: '_static/pages/Complex-Data-Entry.md' } },\n\t{ path: 'pages/global-elements', component: StaticPageComponent, data: { markdownfile: '_static/pages/Global-Elements.md' } },\n\t{ path: 'pages/graphics-and-images', component: StaticPageComponent, data: { markdownfile: '_static/pages/Graphics-and-Images.md' } },\n\t{ path: 'pages/list-page', component: StaticPageComponent, data: { markdownfile: '_static/pages/List-Page.md' } },\n\t{ path: 'pages/page-templates', component: StaticPageComponent, data: { markdownfile: '_static/pages/Page-Templates.md' } },\n\t{ path: 'pages/simple-data-entry', component: StaticPageComponent, data: { markdownfile: '_static/pages/Simple-Data-Entry.md' } },\n\t{ path: 'pages/typography', component: StaticPageComponent, data: { markdownfile: '_static/pages/Typography.md' } },\n\t{ path: 'pages/workspace-page', component: StaticPageComponent, data: { markdownfile: '_static/pages/Workspace-Page.md' } },\n]" + }, + { + "id": 2573, + "name": "routing", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/doc.routes.dynamic.ts", + "line": 155, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "ModuleWithProviders" + }, + "defaultValue": " RouterModule.forChild(ROUTES)" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 2572, + 2573 + ] + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/index.ts", + "fileName": "src/_docs/doc.routes.dynamic.ts", "line": 1, "character": 0 } ] }, { - "id": 7119, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/time/time.component\"", + "id": 2532, + "name": "\"src/_docs/doc.template\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/doc.template.ts", "children": [ { - "id": 7120, - "name": "SamTimeComponent", + "id": 2533, + "name": "DocTemplateComponent", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, - "comment": { - "shortText": "Provides a time input form control" - }, "decorators": [ { "name": "Component", @@ -191582,13 +94617,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-time',\n templateUrl: 'time.template.html',\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => SamTimeComponent),\n multi: true\n }]\n}" + "obj": "{\n\tselector: 'doc-template',\n templateUrl: 'doc.template.html'\n}" } } ], "children": [ { - "id": 7141, + "id": 2545, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -191597,267 +94632,46 @@ }, "signatures": [ { - "id": 7143, - "name": "new SamTimeComponent", + "id": 2547, + "name": "new DocTemplateComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7144, - "name": "samFormService", + "id": 2548, + "name": "router", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "Router" } - } - ], - "type": { - "type": "reference", - "name": "SamTimeComponent", - "id": 7120 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 80, - "character": 61 - } - ] - }, - { - "id": 7121, - "name": "INPUT_FORMAT", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 36, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"H:m\"" - }, - { - "id": 7122, - "name": "OUTPUT_FORMAT", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 37, - "character": 15 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"HH:mm\"" - }, - { - "id": 7140, - "name": "allowChars", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 79, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - } - ] - }, - "defaultValue": " ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', \n 'Backspace', 'ArrowLeft', 'ArrowRight', 'Tab', 'Delete']" - }, - { - "id": 7138, - "name": "amPm", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 77, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"am\"" - }, - { - "id": 7133, - "name": "ampmV", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'ampm'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 71, - "character": 33 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 7128, - "name": "control", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Passes in the Angular FormControl" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 62, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "FormControl" - } - }, - { - "id": 7124, - "name": "disabled", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the disabled attribute" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 46, - "character": 26 + } + ], + "type": { + "type": "reference", + "name": "DocTemplateComponent", + "id": 2533 + } } ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 7136, - "name": "formattedHours", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 75, - "character": 23 + "fileName": "src/_docs/doc.template.ts", + "line": 28, + "character": 4 } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": " undefined" + ] }, { - "id": 7127, - "name": "hint", + "id": 2538, + "name": "design", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the hint text" + "isExported": true }, "decorators": [ { @@ -191871,42 +94685,39 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 58, - "character": 22 + "fileName": "src/_docs/doc.template.ts", + "line": 19, + "character": 16 } ], "type": { "type": "instrinct", - "name": "string" + "name": "any" } }, { - "id": 7131, - "name": "hourV", + "id": 2535, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "decorators": [ { - "name": "ViewChild", + "name": "Input", "type": { "type": "reference", - "name": "ViewChild" + "name": "Input" }, - "arguments": { - "selector": "'hour'" - } + "arguments": {} } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 69, - "character": 33 + "fileName": "src/_docs/doc.template.ts", + "line": 16, + "character": 17 } ], "type": { @@ -191915,38 +94726,12 @@ } }, { - "id": 7135, - "name": "hours", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 74, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": " undefined" - }, - { - "id": 7125, - "name": "label", + "id": 2537, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the label" + "isExported": true }, "decorators": [ { @@ -191960,64 +94745,39 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 50, - "character": 23 + "fileName": "src/_docs/doc.template.ts", + "line": 18, + "character": 18 } ], "type": { "type": "instrinct", - "name": "string" + "name": "any" } }, { - "id": 7139, - "name": "minuteBlurFlag", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 78, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 7132, - "name": "minuteV", + "id": 2539, + "name": "implementation", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "decorators": [ { - "name": "ViewChild", + "name": "Input", "type": { "type": "reference", - "name": "ViewChild" + "name": "Input" }, - "arguments": { - "selector": "'minute'" - } + "arguments": {} } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 70, - "character": 37 + "fileName": "src/_docs/doc.template.ts", + "line": 20, + "character": 24 } ], "type": { @@ -192026,38 +94786,12 @@ } }, { - "id": 7137, - "name": "minutes", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 76, - "character": 16 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": " undefined" - }, - { - "id": 7126, - "name": "name", + "id": 2534, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the name attribute" + "isExported": true }, "decorators": [ { @@ -192071,54 +94805,40 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 54, - "character": 22 + "fileName": "src/_docs/doc.template.ts", + "line": 15, + "character": 18 } ], "type": { "type": "instrinct", - "name": "string" + "name": "any" } }, { - "id": 7123, - "name": "required", + "id": 2541, + "name": "panelSelected", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the required text" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 42, - "character": 26 + "fileName": "src/_docs/doc.template.ts", + "line": 23, + "character": 15 } ], "type": { "type": "instrinct", "name": "boolean" }, - "defaultValue": "false" + "defaultValue": "true" }, { - "id": 7142, - "name": "samFormService", + "id": 2546, + "name": "router", "kind": 1024, "kindString": "Property", "flags": { @@ -192128,152 +94848,100 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 82, - "character": 36 + "fileName": "src/_docs/doc.template.ts", + "line": 30, + "character": 28 } ], "type": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "Router" } }, { - "id": 7129, - "name": "useFormService", + "id": 2540, + "name": "tabSelected", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Toggles validations to display with SamFormService events" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 66, - "character": 32 + "fileName": "src/_docs/doc.template.ts", + "line": 22, + "character": 13 } ], "type": { "type": "instrinct", "name": "boolean" - } - }, - { - "id": 7134, - "name": "value", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 73, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" }, - "defaultValue": " undefined" + "defaultValue": "true" }, { - "id": 7130, - "name": "wrapper", + "id": 2536, + "name": "typedoc", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "decorators": [ { - "name": "ViewChild", + "name": "Input", "type": { "type": "reference", - "name": "ViewChild" + "name": "Input" }, - "arguments": { - "selector": "LabelWrapper" - } + "arguments": {} } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 68, - "character": 41 + "fileName": "src/_docs/doc.template.ts", + "line": 17, + "character": 17 } ], "type": { - "type": "reference", - "name": "LabelWrapper", - "id": 4513 + "type": "instrinct", + "name": "any" } }, { - "id": 7189, - "name": "_checkCopyPasteChar", + "id": 2552, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7190, - "name": "_checkCopyPasteChar", + "id": 2553, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 7191, - "name": "char", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", - "name": "boolean" + "name": "void" } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 310, - "character": 21 + "fileName": "src/_docs/doc.template.ts", + "line": 39, + "character": 16 } ] }, { - "id": 7186, - "name": "_keyIsNumber", + "id": 2549, + "name": "resolveRoute", "kind": 2048, "kindString": "Method", "flags": { @@ -192281,15 +94949,15 @@ }, "signatures": [ { - "id": 7187, - "name": "_keyIsNumber", + "id": 2550, + "name": "resolveRoute", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7188, - "name": "char", + "id": 2551, + "name": "path", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -192301,818 +94969,754 @@ ], "type": { "type": "instrinct", - "name": "boolean" + "name": "void" } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 304, + "fileName": "src/_docs/doc.template.ts", + "line": 32, "character": 14 } ] }, { - "id": 7184, - "name": "amPmName", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7185, - "name": "amPmName", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 300, - "character": 10 - } - ] - }, - { - "id": 7152, - "name": "formatHours", - "kind": 2048, - "kindString": "Method", + "id": 2542, + "name": "sidenavConfig", + "kind": 2097152, + "kindString": "Object literal", "flags": { "isExported": true }, - "signatures": [ + "children": [ { - "id": 7153, - "name": "formatHours", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ + "id": 2544, + "name": "children", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 7154, - "name": "hours", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { + "fileName": "src/_docs/doc.template.ts", + "line": 27, + "character": 14 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", - "name": "any" + "name": "undefined" } + ] + }, + "defaultValue": " []" + }, + { + "id": 2543, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/doc.template.ts", + "line": 26, + "character": 11 } ], "type": { "type": "instrinct", - "name": "number" - } + "name": "string" + }, + "defaultValue": "\"Documentation Sidenav\"" } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 141, - "character": 13 - } - ] - }, - { - "id": 7170, - "name": "getTime", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ + "groups": [ { - "id": 7171, - "name": "getTime", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } + "title": "Variables", + "kind": 32, + "children": [ + 2544, + 2543 + ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 197, - "character": 9 - } - ] - }, - { - "id": 7180, - "name": "hourName", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7181, - "name": "hourName", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } + "fileName": "src/_docs/doc.template.ts", + "line": 25, + "character": 15 } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 292, - "character": 10 - } - ] - }, + "type": { + "type": "instrinct", + "name": "object" + } + } + ], + "groups": [ { - "id": 7160, - "name": "hourTouched", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7161, - "name": "hourTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7162, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 170, - "character": 13 - } + "title": "Constructors", + "kind": 512, + "children": [ + 2545 ] }, { - "id": 7174, - "name": "hoursPress", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7175, - "name": "hoursPress", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7176, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 228, - "character": 12 - } + "title": "Properties", + "kind": 1024, + "children": [ + 2538, + 2535, + 2537, + 2539, + 2534, + 2541, + 2546, + 2540, + 2536 ] }, { - "id": 7172, - "name": "isClean", + "title": "Methods", "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7173, - "name": "isClean", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 221, - "character": 9 - } + "children": [ + 2552, + 2549 ] }, { - "id": 7168, - "name": "isValid", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7169, - "name": "isValid", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 188, - "character": 9 - } + "title": "Object literals", + "kind": 2097152, + "children": [ + 2542 ] - }, + } + ], + "sources": [ { - "id": 7182, - "name": "minuteName", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true + "fileName": "src/_docs/doc.template.ts", + "line": 13, + "character": 33 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 2554, + "name": "DOCS", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/doc.template.ts", + "line": 6, + "character": 10 + } + ], + "type": { + "type": "instrinct", + "name": "any" + }, + "defaultValue": " environment.DOCS" + }, + { + "id": 2555, + "name": "STATICPAGES", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/doc.template.ts", + "line": 7, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "any" + }, + "defaultValue": " environment.STATICPAGES" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2533 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 2554, + 2555 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/doc.template.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 1595, + "name": "\"src/_docs/elements/button/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/elements/button/component-example.ts", + "children": [ + { + "id": 1596, + "name": "ButtonExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" }, - "signatures": [ - { - "id": 7183, - "name": "minuteName", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 296, - "character": 12 - } - ] - }, + "arguments": { + "obj": "{\n\tselector: 'doc-button',\n template: `\n \n \n \n \n \n

    Actions

    \n \n

    Primary

    \n

    \n Use the darker, primary color set for the most important buttons the \n users will look for in order to initiate an activity (e.g., Create Listing) \n or complete an activity (e.g., Submit). Typically no more than one button \n in this color should appear on the page, although there may be occasions \n to modify this rule. Primary buttons generally appear at the top of a \n page when the action is to initiate work, or at the bottom of the form, \n such as when the action is to submit that form.\n

    \n \n ` + code_example_1 + `\n \n \n
    \n
    \n Submit buttons\n
    \n

    \n There is a specific button type for submit buttons.\n

    \n
    \n \n ` + code_example_1_2 + `\n \n \n Will generate the code below\n \n \n \n \n \n

    Secondary

    \n

    \n Use the secondary color set for the buttons of secondary importance. \n Examples include search or form-related actions, such as adding data to \n a table or adding terms in the Advanced section of the Agency Picker.\n

    \n \n ` + code_example_2 + `\n \n \n \n \n

    Tertiary

    \n

    \n They represent useful, but not necessary actions the user may want to take. \n Generally, these buttons are represented by an icon and related term, or \n simply an icon. Examples include actions such as 'Edit', 'Subscribe', \n 'Favorite', or 'Share'.\n

    \n \n ` + code_example_3 + `\n \n \n \n \n

    Negative

    \n

    \n Use the negative button when you want to perform a potentially destructive \n action.\n

    \n \n ` + code_example_4 + `\n \n \n \n \n

    States

    \n \n

    Disabled

    \n \n ` + code_example_disabled + `\n \n \n
    \n `\n}" + } + } + ], + "children": [ { - "id": 7163, - "name": "minuteTouched", - "kind": 2048, - "kindString": "Method", + "id": 1607, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, "signatures": [ { - "id": 7164, - "name": "minuteTouched", - "kind": 4096, - "kindString": "Call signature", + "id": 1610, + "name": "new ButtonExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 7165, - "name": "event", + "id": 1611, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "Http" } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 177, - "character": 15 - } - ] - }, - { - "id": 7177, - "name": "minutesPress", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7178, - "name": "minutesPress", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ + }, { - "id": 7179, - "name": "event", + "id": 1612, + "name": "service", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "DocumentationService", + "id": 148 } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 260, - "character": 14 - } - ] - }, - { - "id": 7147, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 7148, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ + }, { - "id": 7149, - "name": "v", + "id": 1613, + "name": "mdService", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "ButtonExampleComponent", + "id": 1596 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 108, - "character": 13 + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 122, + "character": 41 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 7145, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", + "id": 1606, + "name": "base", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 7146, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 84, - "character": 10 + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 122, + "character": 13 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/elements/button/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 7196, - "name": "onChange", - "kind": 2048, - "kindString": "Method", + "id": 1605, + "name": "example", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ - { - "id": 7197, - "name": "onChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 332, - "character": 10 + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 120, + "character": 9 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_disabled.trim()", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } }, { - "id": 7157, - "name": "onInputChange", - "kind": 2048, - "kindString": "Method", + "id": 1599, + "name": "example_1", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ - { - "id": 7158, - "name": "onInputChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7159, - "name": "override", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 162, - "character": 15 + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 113, + "character": 11 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_1.trim()" }, { - "id": 7198, - "name": "onTouched", - "kind": 2048, - "kindString": "Method", + "id": 1600, + "name": "example_1_2", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ - { - "id": 7199, - "name": "onTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 333, - "character": 11 + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 114, + "character": 13 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_1_2.trim()" }, { - "id": 7150, - "name": "parseValueString", - "kind": 2048, - "kindString": "Method", + "id": 1601, + "name": "example_1_3", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ + "sources": [ { - "id": 7151, - "name": "parseValueString", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 115, + "character": 13 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_1_3.trim()" + }, + { + "id": 1602, + "name": "example_2", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 114, - "character": 18 + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 116, + "character": 11 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_2.trim()" }, { - "id": 7200, - "name": "registerOnChange", - "kind": 2048, - "kindString": "Method", + "id": 1603, + "name": "example_3", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ - { - "id": 7201, - "name": "registerOnChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7202, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 335, - "character": 18 + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 117, + "character": 11 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_3.trim()" }, { - "id": 7203, - "name": "registerOnTouched", - "kind": 2048, - "kindString": "Method", + "id": 1604, + "name": "example_4", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ + "sources": [ { - "id": 7204, - "name": "registerOnTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7205, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 118, + "character": 11 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_4.trim()" + }, + { + "id": 1617, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 339, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 7192, - "name": "removalKeyHandler", - "kind": 2048, - "kindString": "Method", + "id": 1616, + "name": "markdown", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 7193, - "name": "removalKeyHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 1609, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 316, - "character": 19 + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 127, + "character": 20 } - ] + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 7194, - "name": "resetInput", - "kind": 2048, - "kindString": "Method", + "id": 1618, + "name": "sections", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 7195, - "name": "resetInput", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 1608, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 324, - "character": 12 + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 126, + "character": 18 } - ] + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 7155, - "name": "selectChange", - "kind": 2048, - "kindString": "Method", + "id": 1598, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ + "sources": [ { - "id": 7156, - "name": "selectChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 111, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 1597, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 153, - "character": 14 + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 110, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamButtonComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 7206, - "name": "setDisabledState", + "id": 1622, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7207, - "name": "setDisabledState", + "id": 1623, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7208, - "name": "disabled", + "id": 1624, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 343, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 7166, - "name": "setTouched", + "id": 1614, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { @@ -193120,44 +95724,55 @@ }, "signatures": [ { - "id": 7167, - "name": "setTouched", + "id": 1615, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, "type": { "type": "instrinct", "name": "void" + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 184, - "character": 12 + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 134, + "character": 10 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 7209, - "name": "writeValue", + "id": 1619, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 7210, - "name": "writeValue", + "id": 1620, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 7211, - "name": "value", + "id": 1621, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -193170,16 +95785,26 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 347, - "character": 12 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "groups": [ @@ -193187,91 +95812,197 @@ "title": "Constructors", "kind": 512, "children": [ - 7141 + 1607 ] }, { "title": "Properties", "kind": 1024, "children": [ - 7121, - 7122, - 7140, - 7138, - 7133, - 7128, - 7124, - 7136, - 7127, - 7131, - 7135, - 7125, - 7139, - 7132, - 7137, - 7126, - 7123, - 7142, - 7129, - 7134, - 7130 + 1606, + 1605, + 1599, + 1600, + 1601, + 1602, + 1603, + 1604, + 1617, + 1616, + 1609, + 1618, + 1608, + 1598, + 1597 ] }, { "title": "Methods", "kind": 2048, "children": [ - 7189, - 7186, - 7184, - 7152, - 7170, - 7180, - 7160, - 7174, - 7172, - 7168, - 7182, - 7163, - 7177, - 7147, - 7145, - 7196, - 7157, - 7198, - 7150, - 7200, - 7203, - 7192, - 7194, - 7155, - 7206, - 7166, - 7209 + 1622, + 1614, + 1619 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 34, - "character": 29 + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 109, + "character": 35 } ], - "implementedTypes": [ + "extendedTypes": [ { "type": "reference", - "name": "OnInit" - }, + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ { "type": "reference", - "name": "OnChanges" + "name": "OnInit" }, { "type": "reference", - "name": "ControlValueAccessor" + "name": "OnInit" } ] + }, + { + "id": 1625, + "name": "code_example_1", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 9, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" + }, + { + "id": 1626, + "name": "code_example_1_2", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 10, + "character": 20 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" + }, + { + "id": 1627, + "name": "code_example_1_3", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 11, + "character": 20 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" + }, + { + "id": 1628, + "name": "code_example_2", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 12, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" + }, + { + "id": 1629, + "name": "code_example_3", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 13, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" + }, + { + "id": 1630, + "name": "code_example_4", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 14, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" + }, + { + "id": 1631, + "name": "code_example_disabled", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/elements/button/component-example.ts", + "line": 15, + "character": 25 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n\n\n`" } ], "groups": [ @@ -193279,56 +96010,49 @@ "title": "Classes", "kind": 128, "children": [ - 7120 + 1596 ] - } - ], - "sources": [ + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/time/time.component.ts", - "line": 1, - "character": 0 + "title": "Variables", + "kind": 32, + "children": [ + 1625, + 1626, + 1627, + 1628, + 1629, + 1630, + 1631 + ] } - ] - }, - { - "id": 7603, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/index.ts", + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/index.ts", + "fileName": "src/_docs/elements/button/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 7578, - "name": "\"src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component\"", + "id": 1632, + "name": "\"src/_docs/experimental/box/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/experimental/box/component-example.ts", "children": [ { - "id": 7579, - "name": "SamToggleSwitchComponent", + "id": 1633, + "name": "SamBoxComponentExampleComponent", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, - "comment": { - "shortText": "SAM Toggle Switch Component\nCreates a Toggle Switch to use as a form control\nTODO: Add Form Builder support" - }, "decorators": [ { "name": "Component", @@ -193337,522 +96061,290 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-toggle-switch',\n templateUrl: 'toggle-switch.template.html',\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => SamToggleSwitchComponent),\n multi: true\n }]\n}" + "obj": "{\n\tselector: 'doc-sam-box',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development.\n

    \n
    \n\n

    Types

    \n\n

    Default

    \n\n \n ` + code_example_1 + `\n \n\n

    Primary

    \n\n \n ` + code_example_2 + `\n \n\n

    Outline

    \n\n \n ` + code_example_3 + `\n \n\n
    `\n}" } } ], "children": [ { - "id": 7580, - "name": "disableSwitch", - "kind": 1024, - "kindString": "Property", + "id": 1640, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Boolean value to set whether switch is disabled or not" + "isExported": true }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1643, + "name": "new SamBoxComponentExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 1644, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 1645, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1646, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], "type": { "type": "reference", - "name": "Input" + "name": "SamBoxComponentExampleComponent", + "id": 1633 }, - "arguments": {} + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", - "line": 34, - "character": 31 + "fileName": "src/_docs/experimental/box/component-example.ts", + "line": 76, + "character": 42 } ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 7581, - "name": "isSwitchOn", + "id": 1639, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Boolean value to set whether switch defaults to on" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", - "line": 38, - "character": 28 + "fileName": "src/_docs/experimental/box/component-example.ts", + "line": 76, + "character": 13 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" }, - "defaultValue": "false" + "defaultValue": "\"_docs/experimental/box/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 7583, - "name": "switchStatusChange", + "id": 1649, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Event emitter to output the current state of the toggle switch" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", - "line": 46, - "character": 37 + "fileName": "src/_docs/baseexample.component.ts", + "line": 27, + "character": 16 } ], "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "boolean" - } - ] + "type": "instrinct", + "name": "string" }, - "defaultValue": "\n new EventEmitter()" + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } }, { - "id": 7582, - "name": "toggleSwitchText", + "id": 1636, + "name": "example_1", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "String to pass to the label for 508 compliance" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", - "line": 42, - "character": 34 + "fileName": "src/_docs/experimental/box/component-example.ts", + "line": 72, + "character": 11 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"Toggle Switch\"" + "defaultValue": " code_example_1.trim()" }, { - "id": 7587, - "name": "onChange", - "kind": 2048, - "kindString": "Method", + "id": 1637, + "name": "example_2", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "signatures": [ - { - "id": 7588, - "name": "onChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", - "line": 58, - "character": 17 - } - ] - }, - { - "id": 7584, - "name": "onSwitchClick", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7585, - "name": "onSwitchClick", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7586, - "name": "val", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/experimental/box/component-example.ts", + "line": 73, + "character": 11 } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", - "line": 49, - "character": 22 - } - ] - }, - { - "id": 7589, - "name": "onTouched", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true + "type": { + "type": "instrinct", + "name": "string" }, - "signatures": [ - { - "id": 7590, - "name": "onTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", - "line": 59, - "character": 18 - } - ] + "defaultValue": " code_example_2.trim()" }, { - "id": 7591, - "name": "registerOnChange", - "kind": 2048, - "kindString": "Method", + "id": 1638, + "name": "example_3", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "signatures": [ - { - "id": 7592, - "name": "registerOnChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7593, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", - "line": 61, - "character": 25 - } - ] - }, - { - "id": 7594, - "name": "registerOnTouched", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 7595, - "name": "registerOnTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7596, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/experimental/box/component-example.ts", + "line": 74, + "character": 11 } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", - "line": 65, - "character": 26 - } - ] + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_3.trim()" }, { - "id": 7597, - "name": "setDisabledState", - "kind": 2048, - "kindString": "Method", + "id": 1648, + "name": "guidance", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 7598, - "name": "setDisabledState", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7599, - "name": "disabled", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", - "line": 69, - "character": 25 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 7600, - "name": "writeValue", - "kind": 2048, - "kindString": "Method", + "id": 1647, + "name": "markdown", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 7601, - "name": "writeValue", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 7602, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", - "line": 73, - "character": 19 - } - ] - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 7580, - 7581, - 7583, - 7582 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 7587, - 7584, - 7589, - 7591, - 7594, - 7597, - 7600 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", - "line": 30, - "character": 37 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "ControlValueAccessor" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 7579 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-controls/toggle-switch/toggle-switch.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4559, - "name": "\"src/sam-ui-elements/src/ui-kit/form-service\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-service.ts", - "children": [ - { - "id": 4560, - "name": "SamFormService", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, { - "name": "Injectable", + "id": 1642, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/experimental/box/component-example.ts", + "line": 81, + "character": 20 + } + ], "type": { "type": "reference", - "name": "Injectable" + "name": "MarkdownService", + "id": 238 }, - "arguments": {} - } - ], - "children": [ + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, { - "id": 4561, - "name": "formEvents", + "id": 1650, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { @@ -193861,54 +96353,111 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-service.ts", - "line": 19, - "character": 21 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { "type": "reference", - "name": "Subject", + "name": "Array", "typeArguments": [ { - "type": "reference", - "name": "Object" + "type": "instrinct", + "name": "string" } ] }, - "defaultValue": " new Subject()" + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } }, { - "id": 4562, - "name": "formEventsUpdated$", + "id": 1641, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-service.ts", - "line": 20, - "character": 29 + "fileName": "src/_docs/experimental/box/component-example.ts", + "line": 80, + "character": 18 } ], "type": { "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "reference", - "name": "Object" - } - ] + "name": "DocumentationService", + "id": 148 }, - "defaultValue": " this.formEvents.asObservable()" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 4566, - "name": "fireReset", + "id": 1635, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/experimental/box/component-example.ts", + "line": 70, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 1634, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/experimental/box/component-example.ts", + "line": 69, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamBoxComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } + }, + { + "id": 1656, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { @@ -193917,42 +96466,91 @@ }, "signatures": [ { - "id": 4567, - "name": "fireReset", + "id": 1657, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 4568, - "name": "rootAbstractControl", + "id": 1658, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "reference", - "name": "AbstractControl" - }, - "defaultValue": " undefined" + "type": "instrinct", + "name": "string" + } } ], + "type": { + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 1651, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 1652, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-service.ts", - "line": 25, - "character": 20 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 4563, - "name": "fireSubmit", + "id": 1653, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { @@ -193961,121 +96559,166 @@ }, "signatures": [ { - "id": 4564, - "name": "fireSubmit", + "id": 1654, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 4565, - "name": "rootAbstractControl", + "id": 1655, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "reference", - "name": "AbstractControl" - }, - "defaultValue": " undefined" + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-service.ts", - "line": 22, - "character": 21 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1640 + ] + }, { "title": "Properties", "kind": 1024, "children": [ - 4561, - 4562 + 1639, + 1649, + 1636, + 1637, + 1638, + 1648, + 1647, + 1642, + 1650, + 1641, + 1635, + 1634 ] }, { "title": "Methods", "kind": 2048, "children": [ - 4566, - 4563 + 1656, + 1651, + 1653 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-service.ts", - "line": 18, - "character": 27 + "fileName": "src/_docs/experimental/box/component-example.ts", + "line": 67, + "character": 44 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" } ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4560 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-service.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8718, - "name": "\"src/sam-ui-elements/src/ui-kit/form-templates/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-templates/index.ts", - "children": [ + }, { - "id": 8719, - "name": "SamFormTemplatesModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true + "id": 1659, + "name": "code_example_1", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/box/component-example.ts", + "line": 19, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" }, - "decorators": [ + "defaultValue": " `\nLorem Ipsum\n`" + }, + { + "id": 1660, + "name": "code_example_2", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n CommonModule,\n FormsModule,\n SamFormControlsModule,\n SamWrapperModule\n ],\n declarations: [\n SamNameEntryComponent,\n SamPhoneEntryComponent\n ],\n exports: [\n SamNameEntryComponent,\n SamPhoneEntryComponent,\n SamWrapperModule\n ]\n}" - } + "fileName": "src/_docs/experimental/box/component-example.ts", + "line": 23, + "character": 18 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\nLorem Ipsum\n`" + }, + { + "id": 1661, + "name": "code_example_3", + "kind": 32, + "kindString": "Variable", + "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/index.ts", + "fileName": "src/_docs/experimental/box/component-example.ts", "line": 27, - "character": 35 + "character": 18 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\nLorem Ipsum\n`" } ], "groups": [ @@ -194083,70 +96726,45 @@ "title": "Classes", "kind": 128, "children": [ - 8719 + 1633 ] - } - ], - "sources": [ + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/index.ts", - "line": 1, - "character": 0 + "title": "Variables", + "kind": 32, + "children": [ + 1659, + 1660, + 1661 + ] } - ] - }, - { - "id": 8626, - "name": "\"src/sam-ui-elements/src/ui-kit/form-templates/name-entry/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-templates/name-entry/index.ts", + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/index.ts", + "fileName": "src/_docs/experimental/box/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 8573, - "name": "\"src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component\"", + "id": 1662, + "name": "\"src/_docs/experimental/container/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/experimental/container/component-example.ts", "children": [ { - "id": 8574, - "name": "SamNameEntryComponent", + "id": 1663, + "name": "SamContainerComponentExampleComponent", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, - "comment": { - "shortText": "The component is a Name entry portion of a form", - "tags": [ - { - "tag": "input", - "text": "model: any - The bound value of the component" - }, - { - "tag": "input", - "text": "legend: string - Label text for template" - }, - { - "tag": "input", - "text": "prefix: string - Prefix name/id attribute values\n" - } - ] - }, "decorators": [ { "name": "Component", @@ -194155,35 +96773,91 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-name-entry',\n templateUrl: 'name-entry.template.html',\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => SamNameEntryComponent),\n multi: true\n },\n {\n provide: NG_VALIDATORS,\n useExisting: forwardRef(() => SamNameEntryComponent),\n multi: true\n }\n ]\n}" + "obj": "{\n\tselector: 'doc-sam-container',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development. \n

    \n
    \n\n

    \n Wrapping any content with sam-container will create a 6 column \n layout inside the container.\n

    \n\n \n ` + code_example_1 + `\n \n\n

    Emphasis

    \n

    \n By default any direct child of the container (p,a,div,span,etc) will \n take all the horizontal space avaliable. This can be adjusted by using \n the data-emphasis atribute.\n

    \n\n

    Lowest

    \n \n ` + code_example_4 + `\n \n\n

    Low

    \n \n ` + code_example_5 + `\n \n\n

    Divided

    \n \n ` + code_example_2 + `\n \n\n

    High

    \n \n ` + code_example_3 + `\n \n\n\n
    `\n}" } } ], "children": [ { - "id": 8590, - "name": "disabled", - "kind": 1024, - "kindString": "Property", + "id": 1672, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, + "signatures": [ + { + "id": 1675, + "name": "new SamContainerComponentExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 1676, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 1677, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1678, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], + "type": { + "type": "reference", + "name": "SamContainerComponentExampleComponent", + "id": 1663 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 91, - "character": 10 + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 150, + "character": 48 } ], - "type": { - "type": "instrinct", - "name": "any" - }, - "defaultValue": " undefined" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 8582, - "name": "fNameErrorMsg", + "id": 1671, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { @@ -194192,20 +96866,25 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 69, - "character": 22 + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 150, + "character": 13 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"\"" + "defaultValue": "\"_docs/experimental/container/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 8584, - "name": "lNameErrorMsg", + "id": 1681, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { @@ -194214,489 +96893,325 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 71, - "character": 22 + "fileName": "src/_docs/baseexample.component.ts", + "line": 27, + "character": 16 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"\"" + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } }, { - "id": 8575, - "name": "legend", + "id": 1666, + "name": "example_1", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "The bound value of the component" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 54, - "character": 24 + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 142, + "character": 11 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"Name\"" + "defaultValue": " code_example_1" }, { - "id": 8583, - "name": "mNameErrorMsg", + "id": 1667, + "name": "example_2", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 70, - "character": 22 + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 143, + "character": 11 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"\"" + "defaultValue": " code_example_2" }, { - "id": 8581, - "name": "prefix", + "id": 1668, + "name": "example_3", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Prefix name/id attribute values" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 67, - "character": 24 + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 144, + "character": 11 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"\"" + "defaultValue": " code_example_3" }, { - "id": 8585, - "name": "suffixErrorMsg", + "id": 1669, + "name": "example_4", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 72, - "character": 23 + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 145, + "character": 11 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"\"" + "defaultValue": " code_example_4" }, { - "id": 8586, - "name": "value", - "kind": 262144, - "kindString": "Accessor", + "id": 1670, + "name": "example_5", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "getSignature": [ - { - "id": 8587, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "reference", - "name": "NameEntryType", - "id": 3897 - } - } - ], - "setSignature": [ - { - "id": 8588, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", - "flags": {}, - "parameters": [ - { - "id": 8589, - "name": "value", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "NameEntryType", - "id": 3897 - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 74, - "character": 18 - }, - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 78, - "character": 18 - } - ] - }, - { - "id": 8598, - "name": "getIdentifer", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 8599, - "name": "getIdentifer", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8600, - "name": "str", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 146, + "character": 11 } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 127, - "character": 21 - } - ] + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_5" }, { - "id": 8607, - "name": "modelChange", - "kind": 2048, - "kindString": "Method", + "id": 1680, + "name": "guidance", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 8608, - "name": "modelChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 179, - "character": 20 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 8609, - "name": "onChange", - "kind": 2048, - "kindString": "Method", + "id": 1679, + "name": "markdown", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 8610, - "name": "onChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 184, + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } }, { - "id": 8611, - "name": "onTouched", - "kind": 2048, - "kindString": "Method", + "id": 1674, + "name": "mdService", + "kind": 1024, + "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 8612, - "name": "onTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 185, - "character": 18 + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 155, + "character": 20 } - ] + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 8613, - "name": "registerOnChange", - "kind": 2048, - "kindString": "Method", + "id": 1682, + "name": "sections", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 8614, - "name": "registerOnChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8615, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 187, - "character": 25 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } - ] + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } }, { - "id": 8616, - "name": "registerOnTouched", - "kind": 2048, - "kindString": "Method", + "id": 1673, + "name": "service", + "kind": 1024, + "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "signatures": [ - { - "id": 8617, - "name": "registerOnTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8618, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 191, - "character": 26 + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 154, + "character": 18 } - ] + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 8619, - "name": "setDisabledState", - "kind": 2048, - "kindString": "Method", + "id": 1665, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "signatures": [ - { - "id": 8620, - "name": "setDisabledState", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8621, - "name": "disabled", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 195, - "character": 25 + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 140, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\" \"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } }, { - "id": 8593, - "name": "setSubmitted", - "kind": 2048, - "kindString": "Method", + "id": 1664, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "signatures": [ - { - "id": 8594, - "name": "setSubmitted", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 96, - "character": 21 + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 139, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamContainerComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 8595, - "name": "validate", + "id": 1688, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { @@ -194705,101 +97220,51 @@ }, "signatures": [ { - "id": 8596, - "name": "validate", + "id": 1689, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 8597, - "name": "c", + "id": 1690, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "reference", - "name": "FormControl" + "type": "instrinct", + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 104, - "character": 17 - } - ] - }, - { - "id": 8601, - "name": "validateFirstName", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 8602, - "name": "validateFirstName", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 135, - "character": 26 - } - ] - }, - { - "id": 8605, - "name": "validateLastName", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 8606, - "name": "validateLastName", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 163, - "character": 25 - } - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 8603, - "name": "validateMiddleName", + "id": 1683, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { @@ -194808,28 +97273,38 @@ }, "signatures": [ { - "id": 8604, - "name": "validateMiddleName", + "id": 1684, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, "type": { "type": "instrinct", - "name": "boolean" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 151, - "character": 27 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 8622, - "name": "writeValue", + "id": 1685, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { @@ -194838,15 +97313,15 @@ }, "signatures": [ { - "id": 8623, - "name": "writeValue", + "id": 1686, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 8624, - "name": "value", + "id": 1687, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -194859,287 +97334,185 @@ "type": { "type": "instrinct", "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 199, - "character": 19 - } - ] - }, - { - "id": 8576, - "name": "model", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Label text for template" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "children": [ - { - "id": 8577, - "name": "firstName", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 59, - "character": 13 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 8579, - "name": "lastName", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 61, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 8578, - "name": "middleName", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 60, - "character": 14 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - }, - { - "id": 8580, - "name": "suffix", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 62, - "character": 10 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 8577, - 8579, - 8578, - 8580 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 58, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 8591, - "name": "store", - "kind": 2097152, - "kindString": "Object literal", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 8592, - "name": "suffixes", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 93, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "any" }, - "defaultValue": " suffixOptions" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 8592 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 92, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "groups": [ { - "title": "Properties", - "kind": 1024, + "title": "Constructors", + "kind": 512, "children": [ - 8590, - 8582, - 8584, - 8575, - 8583, - 8581, - 8585 + 1672 ] }, { - "title": "Accessors", - "kind": 262144, + "title": "Properties", + "kind": 1024, "children": [ - 8586 + 1671, + 1681, + 1666, + 1667, + 1668, + 1669, + 1670, + 1680, + 1679, + 1674, + 1682, + 1673, + 1665, + 1664 ] }, { "title": "Methods", "kind": 2048, "children": [ - 8598, - 8607, - 8609, - 8611, - 8613, - 8616, - 8619, - 8593, - 8595, - 8601, - 8605, - 8603, - 8622 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 8576, - 8591 + 1688, + 1683, + 1685 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 50, - "character": 34 + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 138, + "character": 50 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 } ], "implementedTypes": [ { "type": "reference", - "name": "ControlValueAccessor" + "name": "OnInit" }, { "type": "reference", - "name": "Validator" + "name": "OnInit" } ] }, { - "id": 8625, - "name": "suffixOptions", + "id": 1691, + "name": "code_example_1", "kind": 32, "kindString": "Variable", "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 15, - "character": 19 + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 18, + "character": 18 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" }, - "defaultValue": " (suffixes as any).map((item) => {\n return {\n label: item.suffix,\n value: item.suffix\n };\n})" + "defaultValue": " `\n\n

    \n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus id ipsum ut \n arcu pharetra pharetra sit amet eu libero. Ut tristique lacus dolor, nec \n lacinia ante ornare a. Phasellus sagittis, nulla eu porta imperdiet, nisi \n odio interdum dolor, sed dictum leo magna at odio. Donec at molestie elit. \n

    \n
    \n`" + }, + { + "id": 1692, + "name": "code_example_2", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 29, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n

    \n Left column\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus id ipsum ut \n arcu pharetra pharetra sit amet eu libero.\n

    \n

    \n Right column\n Pellentesque pellentesque orci eget lectus aliquet laoreet. Proin ac \n ultrices diam. Aenean et magna lorem.\n

    \n
    \n`" + }, + { + "id": 1693, + "name": "code_example_3", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 44, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n

    \n Left column\n Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus id ipsum ut \n arcu pharetra pharetra sit amet eu libero.\n

    \n

    \n Right column\n Pellentesque pellentesque orci eget lectus aliquet laoreet.\n

    \n
    \n`" + }, + { + "id": 1694, + "name": "code_example_4", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 58, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n

    \n Left column\n Lorem ipsum dolor sit amet.\n

    \n

    \n Right column\n Pellentesque pellentesque orci eget lectus aliquet laoreet.\n

    \n
    \n`" + }, + { + "id": 1695, + "name": "code_example_5", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/container/component-example.ts", + "line": 71, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n

    \n Left column\n Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n

    \n

    \n Right column\n Pellentesque pellentesque orci eget lectus aliquet laoreet.\n

    \n
    \n`" } ], "groups": [ @@ -195147,63 +97520,47 @@ "title": "Classes", "kind": 128, "children": [ - 8574 + 1663 ] }, { "title": "Variables", "kind": 32, "children": [ - 8625 + 1691, + 1692, + 1693, + 1694, + 1695 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/name-entry/name-entry.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8717, - "name": "\"src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/index.ts", + "fileName": "src/_docs/experimental/container/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 8627, - "name": "\"src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component\"", + "id": 1696, + "name": "\"src/_docs/experimental/heading/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/experimental/heading/component-example.ts", "children": [ { - "id": 8628, - "name": "SamPhoneEntryComponent", + "id": 1697, + "name": "SamHeadingComponentExampleComponent", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, - "comment": { - "shortText": "The component is a Phone entry portion of a form" - }, "decorators": [ { "name": "Component", @@ -195212,13 +97569,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-phone-entry',\n templateUrl: 'phone-entry.template.html',\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => SamPhoneEntryComponent),\n multi: true\n }]\n}" + "obj": "{\n\tselector: 'doc-sam-heading',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development. \n

    \n
    \n\n

    Importance

    \n\n \n ` + code_example_1 + `\n \n\n \n ` + code_example_2 + `\n \n\n \n ` + code_example_3 + `\n \n\n \n ` + code_example_4 + `\n \n\n

    Sup Heading

    \n\n
    \n
    \n Availability:\n
    \n

    \n This option its only available for highest importance \n headings \n

    \n
    \n\n \n ` + code_example_5 + `\n \n\n

    Icons

    \n\n \n ` + code_example_6 + `\n \n\n
    `\n}" } } ], "children": [ { - "id": 8652, + "id": 1707, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -195227,136 +97584,399 @@ }, "signatures": [ { - "id": 8655, - "name": "new SamPhoneEntryComponent", + "id": 1710, + "name": "new SamHeadingComponentExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 8656, - "name": "samFormService", + "id": 1711, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "Http" } }, { - "id": 8657, - "name": "cdr", + "id": 1712, + "name": "service", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "ChangeDetectorRef" + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1713, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "SamPhoneEntryComponent", - "id": 8628 + "name": "SamHeadingComponentExampleComponent", + "id": 1697 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 115, - "character": 3 + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 111, + "character": 46 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 8646, - "name": "badIndex", + "id": 1706, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 91, - "character": 10 + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 111, + "character": 13 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/experimental/heading/\"", + "overwrites": { "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 1716, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true }, - "defaultValue": " []" + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 27, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } }, { - "id": 8654, - "name": "cdr", + "id": 1700, + "name": "example_1", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 118, - "character": 15 + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 102, + "character": 11 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_1.trim()" + }, + { + "id": 1701, + "name": "example_2", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 103, + "character": 11 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_2.trim()" + }, + { + "id": 1702, + "name": "example_3", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 104, + "character": 11 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_3.trim()" + }, + { + "id": 1703, + "name": "example_4", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 105, + "character": 11 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_4.trim()" + }, + { + "id": 1704, + "name": "example_5", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 106, + "character": 11 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_5.trim()" + }, + { + "id": 1705, + "name": "example_6", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 107, + "character": 11 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_6.trim()" + }, + { + "id": 1715, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { "type": "reference", - "name": "ChangeDetectorRef" + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 8636, - "name": "control", + "id": 1714, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "comment": { - "shortText": "Input to pass in a formControl" + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" }, - "decorators": [ + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 1709, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 116, + "character": 20 } ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 1717, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 69, + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 1708, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 115, "character": 18 } ], "type": { "type": "reference", - "name": "AbstractControl" + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 8647, - "name": "disabled", + "id": 1699, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { @@ -195364,170 +97984,551 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 92, - "character": 10 + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 100, + "character": 17 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" }, - "defaultValue": " undefined" + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } }, { - "id": 8639, - "name": "emitter", + "id": 1698, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Event emitter when model changes, outputs a string" + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 99, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" }, - "decorators": [ + "defaultValue": "\"SamHeadingComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } + }, + { + "id": 1723, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "name": "Output", + "id": 1724, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1725, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], "type": { "type": "reference", - "name": "Output" + "name": "Subscription" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 81, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "type": { + "inheritedFrom": { "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 1718, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 1719, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { "type": "instrinct", - "name": "string" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } - ] + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 1720, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true }, - "defaultValue": " new EventEmitter()" + "signatures": [ + { + "id": 1721, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1722, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1707 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 1706, + 1716, + 1700, + 1701, + 1702, + 1703, + 1704, + 1705, + 1715, + 1714, + 1709, + 1717, + 1708, + 1699, + 1698 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 1723, + 1718, + 1720 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 98, + "character": 48 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" }, { - "id": 8642, - "name": "errorMsg", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 86, - "character": 10 - } - ], + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 1726, + "name": "code_example_1", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 18, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n`" + }, + { + "id": 1727, + "name": "code_example_2", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 22, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n`" + }, + { + "id": 1728, + "name": "code_example_3", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 26, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n`" + }, + { + "id": 1729, + "name": "code_example_4", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 30, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n`" + }, + { + "id": 1730, + "name": "code_example_5", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 34, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n`" + }, + { + "id": 1731, + "name": "code_example_6", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 38, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1697 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1726, + 1727, + 1728, + 1729, + 1730, + 1731 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/experimental/heading/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 1732, + "name": "\"src/_docs/experimental/icon/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/experimental/icon/component-example.ts", + "children": [ + { + "id": 1733, + "name": "SamIconComponentExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Component" }, - "defaultValue": "\"\"" - }, + "arguments": { + "obj": "{\n\tselector: 'doc-sam-icon',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development. \n

    \n
    \n\n

    Available

    \n\n \n ` + code_example_1 + `\n \n\n
    `\n}" + } + } + ], + "children": [ { - "id": 8630, - "name": "hint", - "kind": 1024, - "kindString": "Property", + "id": 1740, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the hint text" - }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1743, + "name": "new SamIconComponentExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 1744, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 1745, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1746, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], "type": { "type": "reference", - "name": "Input" + "name": "SamIconComponentExampleComponent", + "id": 1733 }, - "arguments": {} + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 43, - "character": 15 + "fileName": "src/_docs/experimental/icon/component-example.ts", + "line": 68, + "character": 43 } ], - "type": { - "type": "instrinct", - "name": "string" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } }, { - "id": 8629, - "name": "label", + "id": 1739, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "The label text to appear above the input" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 39, - "character": 16 + "fileName": "src/_docs/experimental/icon/component-example.ts", + "line": 68, + "character": 13 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"Phone Number\"" + "defaultValue": "\"_docs/experimental/icon/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 8631, - "name": "model", + "id": 1749, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Angular model string value, should match the format of the\nphoneNumberTemplate" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 48, + "fileName": "src/_docs/baseexample.component.ts", + "line": 27, "character": 16 } ], @@ -195535,76 +98536,16 @@ "type": "instrinct", "name": "string" }, - "defaultValue": "\"\"" - }, - { - "id": 8635, - "name": "numbersOnly", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Flag for when model is only numbers" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 65, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 8641, - "name": "phoneInput", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'phoneInput'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 85, - "character": 37 - } - ], - "type": { - "type": "instrinct", - "name": "any" + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 8645, - "name": "phoneNumber", + "id": 1736, + "name": "example_1", "kind": 1024, "kindString": "Property", "flags": { @@ -195612,20 +98553,20 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 90, - "character": 13 + "fileName": "src/_docs/experimental/icon/component-example.ts", + "line": 63, + "character": 10 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": " this.phoneNumberTemplate" + "defaultValue": " code_example_1.trim()" }, { - "id": 8644, - "name": "phoneNumberMirror", + "id": 1737, + "name": "example_2", "kind": 1024, "kindString": "Property", "flags": { @@ -195633,97 +98574,78 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 89, - "character": 19 + "fileName": "src/_docs/experimental/icon/component-example.ts", + "line": 64, + "character": 11 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": " this.phoneNumberTemplate" + "defaultValue": " code_example_2.trim()" }, { - "id": 8632, - "name": "phoneNumberTemplate", + "id": 1738, + "name": "example_3", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "String value that is the phone number should match. Default is\n\"_+(___)___-____\" (underscores denote where numbers are allowed)" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 53, - "character": 30 + "fileName": "src/_docs/experimental/icon/component-example.ts", + "line": 65, + "character": 11 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"_+(___)___-____\"" + "defaultValue": " code_example_3.trim()" }, { - "id": 8643, - "name": "phoneNumberTemplateLength", + "id": 1748, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 88, - "character": 27 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "number" + "name": "string" }, - "defaultValue": " this.phoneNumberTemplate.length" + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 8633, - "name": "prefix", + "id": 1747, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Prefix name/id attribute values" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 57, + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, "character": 17 } ], @@ -195731,198 +98653,174 @@ "type": "instrinct", "name": "string" }, - "defaultValue": "\"\"" + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } }, { - "id": 8634, - "name": "required", + "id": 1742, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Flag to determine whether Phone Entry is required for submission" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 61, - "character": 19 + "fileName": "src/_docs/experimental/icon/component-example.ts", + "line": 73, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "MarkdownService", + "id": 238 }, - "defaultValue": "false" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 8653, - "name": "samFormService", + "id": 1750, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 117, - "character": 36 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { "type": "reference", - "name": "SamFormService", - "id": 4560 + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 8638, - "name": "useDefaultValidations", + "id": 1741, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Toggles default validations" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 77, - "character": 32 + "fileName": "src/_docs/experimental/icon/component-example.ts", + "line": 72, + "character": 18 } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "DocumentationService", + "id": 148 }, - "defaultValue": "true" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 8637, - "name": "useFormService", + "id": 1735, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Toggles validations to display with SamFormService events" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 73, - "character": 25 + "fileName": "src/_docs/experimental/icon/component-example.ts", + "line": 61, + "character": 17 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 8640, - "name": "wrapper", + "id": 1734, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "LabelWrapper" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 84, + "fileName": "src/_docs/experimental/icon/component-example.ts", + "line": 60, "character": 16 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamIconComponent\"", + "overwrites": { "type": "reference", - "name": "LabelWrapper", - "id": 4513 + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 8648, - "name": "value", - "kind": 262144, - "kindString": "Accessor", + "id": 1756, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "getSignature": [ - { - "id": 8649, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "setSignature": [ + "signatures": [ { - "id": 8650, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", + "id": 1757, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 8651, - "name": "value", + "id": 1758, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -195933,816 +98831,1050 @@ } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 94, - "character": 11 - }, - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 98, - "character": 11 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 8686, - "name": "emit", + "id": 1751, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 8687, - "name": "emit", + "id": 1752, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 295, - "character": 6 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 8665, - "name": "formatWithTemplate", + "id": 1753, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 8666, - "name": "formatWithTemplate", + "id": 1754, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 8667, - "name": "numberStr", + "id": 1755, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "string" + "name": "any" } } ], "type": { "type": "instrinct", - "name": "string" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 192, - "character": 20 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1740 ] }, { - "id": 8668, - "name": "getIdentifier", + "title": "Properties", + "kind": 1024, + "children": [ + 1739, + 1749, + 1736, + 1737, + 1738, + 1748, + 1747, + 1742, + 1750, + 1741, + 1735, + 1734 + ] + }, + { + "title": "Methods", "kind": 2048, - "kindString": "Method", + "children": [ + 1756, + 1751, + 1753 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/experimental/icon/component-example.ts", + "line": 59, + "character": 45 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 1759, + "name": "code_example_1", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/icon/component-example.ts", + "line": 18, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n\n\n\n\n\n\n\n`" + }, + { + "id": 1760, + "name": "code_example_2", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/icon/component-example.ts", + "line": 29, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n`" + }, + { + "id": 1761, + "name": "code_example_3", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/icon/component-example.ts", + "line": 33, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 1733 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1759, + 1760, + 1761 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/experimental/icon/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 1762, + "name": "\"src/_docs/experimental/list/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/experimental/list/component-example.ts", + "children": [ + { + "id": 1763, + "name": "SamListComponentExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-sam-list',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development. \n

    \n
    \n\n

    Text

    \n\n \n ` + code_example_1 + `\n \n\n

    Link

    \n\n \n ` + code_example_2 + `\n \n\n

    Icon

    \n\n \n ` + code_example_3 + `\n \n\n
    `\n}" + } + } + ], + "children": [ + { + "id": 1782, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, "signatures": [ { - "id": 8669, - "name": "getIdentifier", - "kind": 4096, - "kindString": "Call signature", + "id": 1785, + "name": "new SamListComponentExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 8670, - "name": "str", + "id": 1786, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "Http" + } + }, + { + "id": 1787, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1788, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "SamListComponentExampleComponent", + "id": 1763 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 201, - "character": 15 + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 100, + "character": 43 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 8693, - "name": "getPositionDecrement", - "kind": 2048, - "kindString": "Method", + "id": 1781, + "name": "base", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 8694, - "name": "getPositionDecrement", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8695, - "name": "pos", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "number" - } + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 100, + "character": 13 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/experimental/list/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 1791, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 312, - "character": 22 + "fileName": "src/_docs/baseexample.component.ts", + "line": 27, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } }, { - "id": 8690, - "name": "getPositionIncrement", - "kind": 2048, - "kindString": "Method", + "id": 1778, + "name": "example_1", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ + "sources": [ { - "id": 8691, - "name": "getPositionIncrement", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8692, - "name": "pos", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 95, + "character": 10 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_1.trim()" + }, + { + "id": 1779, + "name": "example_2", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 305, - "character": 22 + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 96, + "character": 11 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_2.trim()" }, { - "id": 8679, - "name": "handleBackspace", - "kind": 2048, - "kindString": "Method", + "id": 1780, + "name": "example_3", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ + "sources": [ { - "id": 8680, - "name": "handleBackspace", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8681, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8682, - "name": "start", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8683, - "name": "end", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 97, + "character": 11 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_3.trim()" + }, + { + "id": 1790, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 262, + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 8674, - "name": "handleNumber", - "kind": 2048, - "kindString": "Method", + "id": 1766, + "name": "listData", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ + "sources": [ { - "id": 8675, - "name": "handleNumber", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8676, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8677, - "name": "start", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8678, - "name": "end", - "kind": 32768, - "kindString": "Parameter", + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 62, + "character": 10 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 1767, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } + "children": [ + { + "id": 1768, + "name": "text", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 64, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Orci varius natoque\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1768 + ] + } + ] } - ], - "type": { - "type": "instrinct", - "name": "void" } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 234, - "character": 14 - } - ] + ] + }, + "defaultValue": " [\n {\n \"text\": \"Orci varius natoque\"\n },\n {\n \"text\": \"Vivamus ac est eget ipsum\"\n }\n ]" }, { - "id": 8660, - "name": "ngAfterViewInit", - "kind": 2048, - "kindString": "Method", + "id": 1773, + "name": "listIconData", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ - { - "id": 8661, - "name": "ngAfterViewInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 170, - "character": 17 + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 82, + "character": 14 } - ] + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 1774, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1775, + "name": "icon", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 84, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"user\"" + }, + { + "id": 1776, + "name": "link", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 85, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"#\"" + }, + { + "id": 1777, + "name": "text", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 86, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Orci varius natoque\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1775, + 1776, + 1777 + ] + } + ] + } + } + ] + }, + "defaultValue": " [\n {\n \"icon\": \"user\",\n \"link\": \"#\",\n \"text\": \"Orci varius natoque\"\n },\n {\n \"icon\": \"book\",\n \"link\": \"#\",\n \"text\": \"Vivamus ac est eget ipsum\"\n }\n ]" }, { - "id": 8658, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", + "id": 1769, + "name": "listLinkData", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ - { - "id": 8659, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 120, - "character": 10 + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 71, + "character": 14 } - ] + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 1770, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1771, + "name": "link", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 73, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"#\"" + }, + { + "id": 1772, + "name": "text", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 74, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Orci varius natoque\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1771, + 1772 + ] + } + ] + } + } + ] + }, + "defaultValue": " [\n {\n \"link\": \"#\",\n \"text\": \"Orci varius natoque\"\n },\n {\n \"link\": \"#\",\n \"text\": \"Vivamus ac est eget ipsum\"\n }\n ]" }, { - "id": 8701, - "name": "onChange", - "kind": 2048, - "kindString": "Method", + "id": 1789, + "name": "markdown", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 8702, - "name": "onChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 325, - "character": 10 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } }, { - "id": 8703, - "name": "onTouched", - "kind": 2048, - "kindString": "Method", + "id": 1784, + "name": "mdService", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 8704, - "name": "onTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 326, - "character": 11 + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 105, + "character": 20 } - ] + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 8671, - "name": "process", - "kind": 2048, - "kindString": "Method", + "id": 1792, + "name": "sections", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 8672, - "name": "process", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8673, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 210, - "character": 9 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } - ] + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } }, { - "id": 8705, - "name": "registerOnChange", - "kind": 2048, - "kindString": "Method", + "id": 1783, + "name": "service", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 8706, - "name": "registerOnChange", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8707, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 328, + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 104, "character": 18 } - ] + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } }, { - "id": 8708, - "name": "registerOnTouched", - "kind": 2048, - "kindString": "Method", + "id": 1765, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ - { - "id": 8709, - "name": "registerOnTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8710, - "name": "fn", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 332, - "character": 19 + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 60, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } }, { - "id": 8696, - "name": "replaceAt", - "kind": 2048, - "kindString": "Method", + "id": 1764, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", "flags": { "isExported": true }, - "signatures": [ - { - "id": 8697, - "name": "replaceAt", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8698, - "name": "index", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8699, - "name": "character", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 8700, - "name": "str", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 319, - "character": 11 + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 59, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamListComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 8711, - "name": "setDisabledState", + "id": 1798, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 8712, - "name": "setDisabledState", + "id": 1799, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 8713, - "name": "disabled", + "id": 1800, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 336, - "character": 18 - } - ] - }, - { - "id": 8688, - "name": "setTouched", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8689, - "name": "setTouched", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 300, - "character": 12 - } - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 8684, - "name": "updateModel", + "id": 1793, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 8685, - "name": "updateModel", + "id": 1794, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, "type": { "type": "instrinct", "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 283, - "character": 13 - } - ] - }, - { - "id": 8662, - "name": "validatePhoneNumber", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8663, - "name": "validatePhoneNumber", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8664, - "name": "template", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { + }, + "inheritedFrom": { "type": "reference", - "name": "ValidatorFn" + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 177, - "character": 21 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 8714, - "name": "writeValue", + "id": 1795, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 8715, - "name": "writeValue", + "id": 1796, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 8716, - "name": "value", + "id": 1797, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -196755,16 +99887,26 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 340, - "character": 12 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "groups": [ @@ -196772,75 +99914,52 @@ "title": "Constructors", "kind": 512, "children": [ - 8652 + 1782 ] }, { "title": "Properties", "kind": 1024, "children": [ - 8646, - 8654, - 8636, - 8647, - 8639, - 8642, - 8630, - 8629, - 8631, - 8635, - 8641, - 8645, - 8644, - 8632, - 8643, - 8633, - 8634, - 8653, - 8638, - 8637, - 8640 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 8648 + 1781, + 1791, + 1778, + 1779, + 1780, + 1790, + 1766, + 1773, + 1769, + 1789, + 1784, + 1792, + 1783, + 1765, + 1764 ] }, { "title": "Methods", "kind": 2048, "children": [ - 8686, - 8665, - 8668, - 8693, - 8690, - 8679, - 8674, - 8660, - 8658, - 8701, - 8703, - 8671, - 8705, - 8708, - 8696, - 8711, - 8688, - 8684, - 8662, - 8714 + 1798, + 1793, + 1795 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 35, - "character": 35 + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 58, + "character": 45 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 } ], "implementedTypes": [ @@ -196850,65 +99969,66 @@ }, { "type": "reference", - "name": "ControlValueAccessor" + "name": "OnInit" } ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8628 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/form-templates/phone-entry/phone-entry.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9139, - "name": "\"src/sam-ui-elements/src/ui-kit/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/index.ts", - "children": [ + }, { - "id": 9140, - "name": "SamUIKitModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true + "id": 1801, + "name": "code_example_1", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 18, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" }, - "decorators": [ + "defaultValue": " ``" + }, + { + "id": 1802, + "name": "code_example_2", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n CommonModule,\n FormsModule,\n SamComponentsModule,\n SamDirectivesModule,\n SamElementsModule,\n SamFormControlsModule,\n SamFormTemplatesModule,\n SamLayoutModule,\n SamExperimentalModule,\n SamPipesModule,\n ServiceDirectivesModule\n ],\n exports: [\n SamComponentsModule,\n SamDirectivesModule,\n SamElementsModule,\n SamFormControlsModule,\n SamFormTemplatesModule,\n SamLayoutModule,\n SamExperimentalModule,\n SamPipesModule,\n ServiceDirectivesModule\n ],\n providers: [SamFormService]\n}" - } + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 20, + "character": 18 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" + }, + { + "id": 1803, + "name": "code_example_3", + "kind": 32, + "kindString": "Variable", + "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/index.ts", - "line": 44, - "character": 27 + "fileName": "src/_docs/experimental/list/component-example.ts", + "line": 22, + "character": 18 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" } ], "groups": [ @@ -196916,31 +100036,40 @@ "title": "Classes", "kind": 128, "children": [ - 9140 + 1763 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1801, + 1802, + 1803 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/index.ts", + "fileName": "src/_docs/experimental/list/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 8883, - "name": "\"src/sam-ui-elements/src/ui-kit/layout/form-only-page.component\"", + "id": 1804, + "name": "\"src/_docs/experimental/master-page/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/experimental/master-page/component-example.ts", "children": [ { - "id": 8884, - "name": "FormOnlyPageTemplateComponent", + "id": 1805, + "name": "SamMasterPageComponentExampleComponent", "kind": 128, "kindString": "Class", "flags": { @@ -196951,144 +100080,562 @@ "name": "Component", "type": { "type": "reference", - "name": "Component" + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-sam-master-page',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development. \n

    \n
    \n\n

    \n Component that serves as a container for the page component(sam-page). \n It is responsable for main site navigation and global UI services.\n

    \n\n
    `\n}" + } + } + ], + "children": [ + { + "id": 1810, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 1813, + "name": "new SamMasterPageComponentExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 1814, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 1815, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1816, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], + "type": { + "type": "reference", + "name": "SamMasterPageComponentExampleComponent", + "id": 1805 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/experimental/master-page/component-example.ts", + "line": 49, + "character": 50 + } + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 1809, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/experimental/master-page/component-example.ts", + "line": 49, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/experimental/master-page/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 1808, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/experimental/master-page/component-example.ts", + "line": 46, + "character": 8 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 1818, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 1817, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 1812, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/experimental/master-page/component-example.ts", + "line": 54, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 1819, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 1811, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/experimental/master-page/component-example.ts", + "line": 53, + "character": 18 + } + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 }, - "arguments": { - "obj": "{\n selector: 'form-only',\n template: `\n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n \n
    \n
    \n
    \n
    \n
    \n`,\n}" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } - } - ], - "children": [ + }, { - "id": 8886, - "name": "section", + "id": 1807, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the TitleAndSectionComponent section input" + "isExported": true }, - "decorators": [ + "sources": [ { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} + "fileName": "src/_docs/experimental/master-page/component-example.ts", + "line": 44, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\" \"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 1806, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", - "line": 33, - "character": 25 + "fileName": "src/_docs/experimental/master-page/component-example.ts", + "line": 43, + "character": 16 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"SamMasterPageComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 8885, - "name": "theme", - "kind": 1024, - "kindString": "Property", + "id": 1825, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the theme of the component" - }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1826, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1827, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], "type": { "type": "reference", - "name": "Input" + "name": "Subscription" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", - "line": 29, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "type": { - "type": "union", - "types": [ - { - "type": "stringLiteral", - "value": "inside" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 1820, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 1821, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" }, - { - "type": "stringLiteral", - "value": "outside" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } - ] + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 8887, - "name": "title", - "kind": 1024, - "kindString": "Property", + "id": 1822, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the TitleAndSectionComponent title input" - }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1823, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1824, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], "type": { - "type": "reference", - "name": "Input" + "type": "instrinct", + "name": "void" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", - "line": 37, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1810 + ] + }, { "title": "Properties", "kind": 1024, "children": [ - 8886, - 8885, - 8887 + 1809, + 1808, + 1818, + 1817, + 1812, + 1819, + 1811, + 1807, + 1806 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 1825, + 1820, + 1822 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", - "line": 25, - "character": 42 + "fileName": "src/_docs/experimental/master-page/component-example.ts", + "line": 42, + "character": 51 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" } ] + }, + { + "id": 1828, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/master-page/component-example.ts", + "line": 19, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `TODO`" } ], "groups": [ @@ -197096,31 +100643,38 @@ "title": "Classes", "kind": 128, "children": [ - 8884 + 1805 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1828 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/form-only-page.component.ts", + "fileName": "src/_docs/experimental/master-page/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 8802, - "name": "\"src/sam-ui-elements/src/ui-kit/layout/grid/column.directive\"", + "id": 1829, + "name": "\"src/_docs/experimental/page/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/experimental/page/component-example.ts", "children": [ { - "id": 8803, - "name": "ColumnDirective", + "id": 1830, + "name": "SamPageComponentExampleComponent", "kind": 128, "kindString": "Class", "flags": { @@ -197128,19 +100682,19 @@ }, "decorators": [ { - "name": "Directive", + "name": "Component", "type": { "type": "reference", - "name": "Directive" + "name": "Component" }, "arguments": { - "obj": "{\n selector: '[columns]'\n}" + "obj": "{\n\tselector: 'doc-sam-page',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development. \n

    \n
    \n\n

    \n Examples found in Patterns\n section.\n

    \n\n
    `\n}" } } ], "children": [ { - "id": 8813, + "id": 1835, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -197149,85 +100703,129 @@ }, "signatures": [ { - "id": 8816, - "name": "new ColumnDirective", + "id": 1838, + "name": "new SamPageComponentExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 8817, - "name": "renderer", + "id": 1839, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "Renderer" + "name": "Http" } }, { - "id": 8818, - "name": "el", + "id": 1840, + "name": "service", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "ElementRef" + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1841, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "ColumnDirective", - "id": 8803 + "name": "SamPageComponentExampleComponent", + "id": 1830 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", - "line": 53, - "character": 3 + "fileName": "src/_docs/experimental/page/component-example.ts", + "line": 48, + "character": 43 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 8806, - "name": "_columnsMap", + "id": 1834, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", - "line": 10, - "character": 21 + "fileName": "src/_docs/experimental/page/component-example.ts", + "line": 48, + "character": 13 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/experimental/page/\"", + "overwrites": { "type": "reference", - "name": "Map", - "typeArguments": [ - { - "type": "instrinct", - "name": "string" - }, - { - "type": "instrinct", - "name": "string" - } - ] + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 1833, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true }, - "defaultValue": " new Map(\n [\n ['1', 'one'],\n ['2', 'two'],\n ['3', 'three'],\n ['4', 'four'],\n ['5', 'five'],\n ['6', 'six'],\n ['7', 'seven'],\n ['8', 'eight'],\n ['9', 'nine'],\n ['10', 'ten'],\n ['11', 'eleven'],\n ['12', 'twelve']\n ]\n )" + "sources": [ + { + "fileName": "src/_docs/experimental/page/component-example.ts", + "line": 46, + "character": 8 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } }, { - "id": 8805, - "name": "_number", + "id": 1843, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { @@ -197236,19 +100834,25 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", - "line": 8, - "character": 16 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 8804, - "name": "columnsClass", + "id": 1842, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { @@ -197257,19 +100861,25 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", - "line": 7, - "character": 21 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 8815, - "name": "el", + "id": 1837, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { @@ -197279,83 +100889,155 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", - "line": 55, - "character": 51 + "fileName": "src/_docs/experimental/page/component-example.ts", + "line": 53, + "character": 20 } ], "type": { "type": "reference", - "name": "ElementRef" + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 8814, - "name": "renderer", + "id": 1844, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", - "line": 55, - "character": 30 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { "type": "reference", - "name": "Renderer" + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 8807, - "name": "number", - "kind": 262144, - "kindString": "Accessor", + "id": 1836, + "name": "service", + "kind": 1024, + "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "decorators": [ + "sources": [ { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": { - "bindingPropertyName": "'columns'" - } + "fileName": "src/_docs/experimental/page/component-example.ts", + "line": 52, + "character": 18 } ], - "getSignature": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 1832, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 8810, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } + "fileName": "src/_docs/experimental/page/component-example.ts", + "line": 44, + "character": 17 } ], - "setSignature": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 1831, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 8808, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", + "fileName": "src/_docs/experimental/page/component-example.ts", + "line": 43, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamPageComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } + }, + { + "id": 1850, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 1851, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 8809, - "name": "value", + "id": 1852, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -197365,54 +101047,122 @@ } } ], + "type": { + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 1845, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 1846, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", - "line": 27, - "character": 37 - }, - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", - "line": 40, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 8811, - "name": "reset", + "id": 1847, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 8812, - "name": "reset", + "id": 1848, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, + "parameters": [ + { + "id": 1849, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", - "line": 44, - "character": 15 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "groups": [ @@ -197420,42 +101170,77 @@ "title": "Constructors", "kind": 512, "children": [ - 8813 + 1835 ] }, { "title": "Properties", "kind": 1024, "children": [ - 8806, - 8805, - 8804, - 8815, - 8814 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 8807 + 1834, + 1833, + 1843, + 1842, + 1837, + 1844, + 1836, + 1832, + 1831 ] }, { "title": "Methods", "kind": 2048, "children": [ - 8811 + 1850, + 1845, + 1847 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", - "line": 6, - "character": 28 + "fileName": "src/_docs/experimental/page/component-example.ts", + "line": 42, + "character": 45 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" } ] + }, + { + "id": 1853, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/page/component-example.ts", + "line": 19, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `TODO`" } ], "groups": [ @@ -197463,31 +101248,38 @@ "title": "Classes", "kind": 128, "children": [ - 8803 + 1830 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1853 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/column.directive.ts", + "fileName": "src/_docs/experimental/page/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 8786, - "name": "\"src/sam-ui-elements/src/ui-kit/layout/grid/grid.directive\"", + "id": 1854, + "name": "\"src/_docs/experimental/sidebar/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/experimental/sidebar/component-example.ts", "children": [ { - "id": 8787, - "name": "GridDirective", + "id": 1855, + "name": "SamSidebarComponentExampleComponent", "kind": 128, "kindString": "Class", "flags": { @@ -197495,19 +101287,19 @@ }, "decorators": [ { - "name": "Directive", + "name": "Component", "type": { "type": "reference", - "name": "Directive" + "name": "Component" }, "arguments": { - "obj": "{\n selector: '[grid]'\n}" + "obj": "{\n\tselector: 'doc-sam-sidebar',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development. \n

    \n
    \n\n

    \n Examples found in Patterns\n section.\n

    \n\n
    `\n}" } } ], "children": [ { - "id": 8788, + "id": 1860, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -197516,612 +101308,544 @@ }, "signatures": [ { - "id": 8791, - "name": "new GridDirective", + "id": 1863, + "name": "new SamSidebarComponentExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 8792, - "name": "renderer", + "id": 1864, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "Renderer" + "name": "Http" } }, { - "id": 8793, - "name": "el", + "id": 1865, + "name": "service", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "ElementRef" + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1866, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "GridDirective", - "id": 8787 + "name": "SamSidebarComponentExampleComponent", + "id": 1855 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", - "line": 6, - "character": 28 + "fileName": "src/_docs/experimental/sidebar/component-example.ts", + "line": 48, + "character": 46 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 8790, - "name": "el", + "id": 1859, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { - "isConstructorProperty": true, "isExported": true, "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", - "line": 7, - "character": 52 + "fileName": "src/_docs/experimental/sidebar/component-example.ts", + "line": 48, + "character": 13 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/experimental/sidebar/\"", + "overwrites": { "type": "reference", - "name": "ElementRef" + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 8789, - "name": "renderer", + "id": 1858, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", - "line": 7, - "character": 31 + "fileName": "src/_docs/experimental/sidebar/component-example.ts", + "line": 46, + "character": 8 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { "type": "reference", - "name": "Renderer" + "name": "BaseExampleComponent.example", + "id": 284 } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 8788 - ] }, { - "title": "Properties", + "id": 1868, + "name": "guidance", "kind": 1024, - "children": [ - 8790, - 8789 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", - "line": 6, - "character": 26 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8787 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/grid.directive.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8794, - "name": "\"src/sam-ui-elements/src/ui-kit/layout/grid/row.directive\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", - "children": [ - { - "id": 8795, - "name": "RowDirective", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Directive", - "type": { - "type": "reference", - "name": "Directive" - }, - "arguments": { - "obj": "{\n selector: '[row]'\n}" - } - } - ], - "children": [ - { - "id": 8796, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 8799, - "name": "new RowDirective", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 8800, - "name": "renderer", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "Renderer" - } - }, - { - "id": 8801, - "name": "el", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ElementRef" - } - } - ], - "type": { - "type": "reference", - "name": "RowDirective", - "id": 8795 - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", - "line": 6, - "character": 27 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 8798, - "name": "el", + "id": 1867, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { - "isConstructorProperty": true, "isExported": true, "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", - "line": 7, - "character": 52 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { "type": "reference", - "name": "ElementRef" + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 8797, - "name": "renderer", + "id": 1862, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", - "line": 7, - "character": 31 + "fileName": "src/_docs/experimental/sidebar/component-example.ts", + "line": 53, + "character": 20 } ], "type": { "type": "reference", - "name": "Renderer" + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 8796 - ] }, { - "title": "Properties", + "id": 1869, + "name": "sections", "kind": 1024, - "children": [ - 8798, - 8797 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", - "line": 6, - "character": 25 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8795 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/grid/row.directive.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8888, - "name": "\"src/sam-ui-elements/src/ui-kit/layout/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/layout/index.ts", - "children": [ - { - "id": 8889, - "name": "SamLayoutModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "A module for reusable SAM Web Design components" - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true }, - "arguments": { - "obj": "{\n declarations: [\n WorkspaceTemplateComponent,\n PageTemplateComponent,\n SidebarTemplateComponent,\n ResultsTemplateComponent,\n FormOnlyPageTemplateComponent,\n FormStepComponent,\n GridDirective,\n RowDirective,\n ColumnDirective,\n TitleAndSectionComponent,\n ListResultsMessageComponent\n ],\n imports: [\n CommonModule,\n SamComponentsModule,\n SamDirectivesModule,\n SamElementsModule,\n RouterModule\n ],\n exports: [\n WorkspaceTemplateComponent,\n PageTemplateComponent,\n SidebarTemplateComponent,\n ResultsTemplateComponent,\n FormOnlyPageTemplateComponent,\n FormStepComponent,\n GridDirective,\n RowDirective,\n ColumnDirective,\n TitleAndSectionComponent,\n ],\n providers: [\n PageService\n ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/index.ts", - "line": 82, - "character": 28 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8889 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8864, - "name": "\"src/sam-ui-elements/src/ui-kit/layout/list-results-message\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", - "children": [ - { - "id": 8865, - "name": "ListResultsMessageComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "ListResultsMessageComponent - Lists results message component" - }, - "decorators": [ - { - "name": "Component", + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], "type": { "type": "reference", - "name": "Component" + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] }, - "arguments": { - "obj": "{\n selector: 'list-results-message',\n template: '{{ message }}'\n}" + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } - } - ], - "children": [ + }, { - "id": 8867, - "name": "currentPage", + "id": 1861, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", - "line": 12, - "character": 29 + "fileName": "src/_docs/experimental/sidebar/component-example.ts", + "line": 52, + "character": 18 } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 8870, - "name": "message", + "id": 1857, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", - "line": 15, + "fileName": "src/_docs/experimental/sidebar/component-example.ts", + "line": 44, "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 8868, - "name": "showing", + "id": 1856, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", - "line": 13, - "character": 25 + "fileName": "src/_docs/experimental/sidebar/component-example.ts", + "line": 43, + "character": 16 } ], "type": { "type": "instrinct", - "name": "number" + "name": "string" + }, + "defaultValue": "\"SamSidebarComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 8869, - "name": "suffix", - "kind": 1024, - "kindString": "Property", + "id": 1875, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1876, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 1877, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], "type": { "type": "reference", - "name": "Input" + "name": "Subscription" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", - "line": 14, - "character": 24 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } }, { - "id": 8866, - "name": "total", - "kind": 1024, - "kindString": "Property", + "id": 1870, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, - "decorators": [ + "signatures": [ { - "name": "Input", + "id": 1871, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, "type": { - "type": "reference", - "name": "Input" + "type": "instrinct", + "name": "void" }, - "arguments": {} + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", - "line": 11, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "type": { - "type": "instrinct", - "name": "number" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 8871, - "name": "ngOnChanges", + "id": 1872, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 8872, - "name": "ngOnChanges", + "id": 1873, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, + "parameters": [ + { + "id": 1874, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", - "line": 17, - "character": 13 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1860 + ] + }, { "title": "Properties", "kind": 1024, "children": [ - 8867, - 8870, - 8868, - 8869, - 8866 + 1859, + 1858, + 1868, + 1867, + 1862, + 1869, + 1861, + 1857, + 1856 ] }, { "title": "Methods", "kind": 2048, "children": [ - 8871 + 1875, + 1870, + 1872 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", - "line": 10, - "character": 40 + "fileName": "src/_docs/experimental/sidebar/component-example.ts", + "line": 42, + "character": 48 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 } ], "implementedTypes": [ { "type": "reference", - "name": "OnChanges" + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" } ] + }, + { + "id": 1878, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/sidebar/component-example.ts", + "line": 19, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `TODO`" } ], "groups": [ @@ -198129,31 +101853,38 @@ "title": "Classes", "kind": 128, "children": [ - 8865 + 1855 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1878 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/list-results-message.ts", + "fileName": "src/_docs/experimental/sidebar/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 8734, - "name": "\"src/sam-ui-elements/src/ui-kit/layout/page.component\"", + "id": 1879, + "name": "\"src/_docs/experimental/youtube/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/layout/page.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/experimental/youtube/component-example.ts", "children": [ { - "id": 8735, - "name": "PageTemplateComponent", + "id": 1880, + "name": "SamYoutubeComponentExampleComponent", "kind": 128, "kindString": "Class", "flags": { @@ -198167,13 +101898,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'page',\n templateUrl: 'page.template.html',\n providers: [PageService],\n}" + "obj": "{\n\tselector: 'doc-sam-youtube',\n template: `\n \n\n
    \n
    \n Warning\n
    \n

    \n This component is under development.\n

    \n
    \n\n \n ` + code_example_1 + `\n \n\n
    `\n}" } } ], "children": [ { - "id": 8751, + "id": 1885, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -198182,661 +101913,408 @@ }, "signatures": [ { - "id": 8753, - "name": "new PageTemplateComponent", + "id": 1888, + "name": "new SamYoutubeComponentExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 8754, - "name": "pageService", + "id": 1889, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "PageService", - "id": 8721 + "name": "Http" + } + }, + { + "id": 1890, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1891, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "PageTemplateComponent", - "id": 8735 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 68, - "character": 57 - } - ] - }, - { - "id": 8741, - "name": "badge", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the TitleAndSectionComponent badge input" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" + "name": "SamYoutubeComponentExampleComponent", + "id": 1880 }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 34, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 8750, - "name": "breadcrumbChange", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Emits breadcrumb events" - }, - "decorators": [ - { - "name": "Output", - "type": { + "overwrites": { "type": "reference", - "name": "Output" - }, - "arguments": {} + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 68, - "character": 35 + "fileName": "src/_docs/experimental/youtube/component-example.ts", + "line": 49, + "character": 46 } ], - "type": { + "overwrites": { "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "Object" - } - ] - }, - "defaultValue": " new EventEmitter()" + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 8749, - "name": "breadcrumbOut", + "id": 1884, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "(deprecated) Emits breadcrumb events" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 64, - "character": 32 + "fileName": "src/_docs/experimental/youtube/component-example.ts", + "line": 49, + "character": 13 } ], "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "Object" - } - ] + "type": "instrinct", + "name": "string" }, - "defaultValue": " new EventEmitter()" + "defaultValue": "\"_docs/experimental/youtube/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 8736, - "name": "breadcrumbs", + "id": 1894, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Passes in the breadcrumb model" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 14, - "character": 29 + "fileName": "src/_docs/baseexample.component.ts", + "line": 27, + "character": 16 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 8744, - "name": "caption", + "id": 1883, + "name": "example_1", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the TitleAndSectionComponent caption input" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "src/_docs/experimental/youtube/component-example.ts", "line": 46, - "character": 25 + "character": 10 } ], "type": { "type": "instrinct", "name": "string" - } + }, + "defaultValue": " code_example_1.trim()" }, { - "id": 8747, - "name": "headerOptions", + "id": 1893, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets additional header options if true, by default it is false" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 56, - "character": 31 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 8752, - "name": "pageService", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "name": "string" }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 70, - "character": 33 - } - ], - "type": { + "defaultValue": "\"\"", + "inheritedFrom": { "type": "reference", - "name": "PageService", - "id": 8721 + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 8738, - "name": "section", + "id": 1892, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the TitleAndSectionComponent section input" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 22, - "character": 25 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 8748, - "name": "stackable", + "id": 1887, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Adds the stackable class on the grid" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 60, - "character": 27 + "fileName": "src/_docs/experimental/youtube/component-example.ts", + "line": 54, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "true" - }, - { - "id": 8737, - "name": "theme", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets a theme on the template" + "type": "reference", + "name": "MarkdownService", + "id": 238 }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 18, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 8739, - "name": "title", + "id": 1895, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the TitleAndSectionComponent title input" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 26, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 8740, - "name": "titleId", + "id": 1886, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the TitleAndSectionComponent id input" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 30, - "character": 25 + "fileName": "src/_docs/experimental/youtube/component-example.ts", + "line": 53, + "character": 18 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 8742, - "name": "type", + "id": 1882, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the TitleAndSectionComponent type input" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 38, - "character": 22 + "fileName": "src/_docs/experimental/youtube/component-example.ts", + "line": 44, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 8743, - "name": "typeLabel", + "id": 1881, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Sets the TitleAndSectionComponent type label input" + "isExported": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 42, - "character": 27 + "fileName": "src/_docs/experimental/youtube/component-example.ts", + "line": 43, + "character": 16 } ], "type": { "type": "instrinct", "name": "string" - } - }, - { - "id": 8764, - "name": "mainContentColumns", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 8765, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 91, - "character": 24 - } - ] - }, - { - "id": 8760, - "name": "sidebar", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true - }, - "getSignature": [ - { - "id": 8761, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 83, - "character": 13 - } - ] - }, - { - "id": 8762, - "name": "sidebarColumns", - "kind": 262144, - "kindString": "Accessor", - "flags": { - "isExported": true }, - "getSignature": [ - { - "id": 8763, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 87, - "character": 20 - } - ] + "defaultValue": "\"SamYoutubeComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 8757, - "name": "breadcrumbHandler", + "id": 1901, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 8758, - "name": "breadcrumbHandler", + "id": 1902, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 8759, - "name": "evt", + "id": 1903, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 78, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 8755, + "id": 1896, "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 8756, + "id": 1897, "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", @@ -198844,81 +102322,78 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 72, - "character": 10 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 8745, - "name": "options", - "kind": 2097152, - "kindString": "Object literal", + "id": 1898, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the TitleAndSectionComponent badgeOptions input" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "children": [ + "signatures": [ { - "id": 8746, - "name": "badge", - "kind": 32, - "kindString": "Variable", - "flags": { - "isExported": true - }, - "sources": [ + "id": 1899, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 51, - "character": 9 + "id": 1900, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "undefined" + "name": "void" }, - "defaultValue": " undefined" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 8746 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 50, - "character": 25 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], @@ -198927,67 +102402,78 @@ "title": "Constructors", "kind": 512, "children": [ - 8751 + 1885 ] }, { "title": "Properties", "kind": 1024, "children": [ - 8741, - 8750, - 8749, - 8736, - 8744, - 8747, - 8752, - 8738, - 8748, - 8737, - 8739, - 8740, - 8742, - 8743 - ] - }, - { - "title": "Accessors", - "kind": 262144, - "children": [ - 8764, - 8760, - 8762 + 1884, + 1894, + 1883, + 1893, + 1892, + 1887, + 1895, + 1886, + 1882, + 1881 ] }, { "title": "Methods", "kind": 2048, "children": [ - 8757, - 8755 - ] - }, - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 8745 + 1901, + 1896, + 1898 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", - "line": 10, - "character": 34 + "fileName": "src/_docs/experimental/youtube/component-example.ts", + "line": 42, + "character": 48 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 } ], "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, { "type": "reference", "name": "OnInit" } ] + }, + { + "id": 1904, + "name": "code_example_1", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/experimental/youtube/component-example.ts", + "line": 18, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n`" } ], "groups": [ @@ -198995,225 +102481,345 @@ "title": "Classes", "kind": 128, "children": [ - 8735 + 1880 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1904 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.component.ts", + "fileName": "src/_docs/experimental/youtube/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 8720, - "name": "\"src/sam-ui-elements/src/ui-kit/layout/page.service\"", + "id": 1955, + "name": "\"src/_docs/form-controls/autocomplete-multiselect/autocomplete.service\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/layout/page.service.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", "children": [ { - "id": 8721, - "name": "PageService", + "id": 1956, + "name": "ACTestService", "kind": 128, "kindString": "Class", "flags": { "isExported": true }, - "decorators": [ + "children": [ { - "name": "Injectable", + "id": 1961, + "name": "end", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", + "line": 32, + "character": 13 + } + ], "type": { - "type": "reference", - "name": "Injectable" + "type": "instrinct", + "name": "number" }, - "arguments": {} - } - ], - "children": [ + "defaultValue": "2" + }, { - "id": 8722, - "name": "_sidebar", + "id": 1962, + "name": "lastSearch", "kind": 1024, "kindString": "Property", "flags": { + "isPrivate": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.service.ts", - "line": 5, - "character": 10 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", + "line": 33, + "character": 20 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" } }, { - "id": 8723, - "name": "_wideSidebar", + "id": 1959, + "name": "limit", "kind": 1024, "kindString": "Property", "flags": { + "isPrivate": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.service.ts", - "line": 6, - "character": 14 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", + "line": 29, + "character": 15 + } + ], + "type": { + "type": "instrinct", + "name": "number" + }, + "defaultValue": "0" + }, + { + "id": 1958, + "name": "offset", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", + "line": 28, + "character": 16 } ], "type": { "type": "instrinct", - "name": "boolean" - } + "name": "number" + }, + "defaultValue": "1" }, { - "id": 8725, - "name": "mainContentColumns", + "id": 1960, + "name": "start", "kind": 1024, "kindString": "Property", "flags": { + "isPrivate": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.service.ts", - "line": 8, - "character": 20 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", + "line": 31, + "character": 15 } ], "type": { "type": "instrinct", - "name": "string" - } + "name": "number" + }, + "defaultValue": "0" }, { - "id": 8724, - "name": "sidebarColumns", + "id": 1957, + "name": "values", "kind": 1024, "kindString": "Property", "flags": { + "isPrivate": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.service.ts", - "line": 7, + "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", + "line": 9, "character": 16 } ], "type": { "type": "instrinct", - "name": "string" - } + "name": "any" + }, + "defaultValue": " [\n { key: 'Random', value: 'Random'},\n { key: 'Just some data', value: 'Just some data'},\n { key: 'This has no category', value: 'This has no category'},\n { key: 'I have no parent', value: 'I have no parent'},\n { key: 'Christy', value: 'Christy'},\n { key: 'Carlos', value: 'Carlos'},\n { key: 'Colin', value: 'Colin'},\n { key: 'Diego', value: 'Diego'},\n { key: 'Delaware', value: 'Delaware'},\n { key: 'Maryland', value: 'Maryland'},\n { key: 'Virginia', value: 'Virginia'},\n { key: 'Washington, DC', value: 'Washington, DC'},\n { key: 'Onitama', value: 'Onitama'},\n { key: 'Power Grid', value: 'Power Grid' },\n { key: 'Splendor', value: 'Splendor'},\n { key: 'Ticket To Ride', value: 'Ticket to Ride'}\n ]" }, { - "id": 8726, - "name": "sidebar", - "kind": 262144, - "kindString": "Accessor", + "id": 1968, + "name": "fetch", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "getSignature": [ + "signatures": [ { - "id": 8729, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", + "id": 1969, + "name": "fetch", + "kind": 4096, + "kindString": "Call signature", "flags": {}, + "parameters": [ + { + "id": 1970, + "name": "val", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + }, + { + "id": 1971, + "name": "pageEnd", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "boolean" + } + }, + { + "id": 1972, + "name": "serviceOptions", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "Observable", + "typeArguments": [ + { + "type": "instrinct", + "name": "any" + } + ] } } ], - "setSignature": [ + "sources": [ { - "id": 8727, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", + "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", + "line": 42, + "character": 14 + } + ] + }, + { + "id": 1973, + "name": "filter", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPrivate": true, + "isExported": true + }, + "signatures": [ + { + "id": 1974, + "name": "filter", + "kind": 4096, + "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 8728, - "name": "value", + "id": 1975, + "name": "val", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "boolean" + "name": "any" } } ], "type": { "type": "instrinct", - "name": "void" + "name": "any" } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.service.ts", - "line": 10, - "character": 13 - }, - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.service.ts", - "line": 24, - "character": 13 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", + "line": 60, + "character": 16 } ] }, { - "id": 8730, - "name": "wideSidebar", - "kind": 262144, - "kindString": "Accessor", + "id": 1966, + "name": "resetPagination", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "getSignature": [ + "signatures": [ { - "id": 8733, - "name": "__get", - "kind": 524288, - "kindString": "Get signature", + "id": 1967, + "name": "resetPagination", + "kind": 4096, + "kindString": "Call signature", "flags": {}, "type": { "type": "instrinct", - "name": "boolean" + "name": "void" } } ], - "setSignature": [ + "sources": [ { - "id": 8731, - "name": "__set", - "kind": 1048576, - "kindString": "Set signature", + "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", + "line": 37, + "character": 24 + } + ] + }, + { + "id": 1963, + "name": "setFetchMethod", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 1964, + "name": "setFetchMethod", + "kind": 4096, + "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 8732, - "name": "value", + "id": 1965, + "name": "_", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "boolean" + "name": "any" } } ], @@ -199225,14 +102831,9 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.service.ts", - "line": 28, - "character": 17 - }, - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.service.ts", - "line": 36, - "character": 17 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", + "line": 35, + "character": 23 } ] } @@ -199242,26 +102843,65 @@ "title": "Properties", "kind": 1024, "children": [ - 8722, - 8723, - 8725, - 8724 + 1961, + 1962, + 1959, + 1958, + 1960, + 1957 ] }, { - "title": "Accessors", - "kind": 262144, + "title": "Methods", + "kind": 2048, "children": [ - 8726, - 8730 + 1968, + 1973, + 1966, + 1963 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.service.ts", - "line": 4, - "character": 24 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", + "line": 8, + "character": 26 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "AutocompleteService", + "id": 1946 + } + ] + }, + { + "id": 1976, + "name": "TestACDirective", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Directive", + "type": { + "type": "reference", + "name": "Directive" + }, + "arguments": { + "obj": "{\n selector: 'sam-autocomplete-multiselect[test], sam-autcomplete-refactor[test]',\n providers: [\n { provide: AutocompleteService, useClass: ACTestService }\n ]\n}" + } + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", + "line": 78, + "character": 28 } ] } @@ -199271,31 +102911,32 @@ "title": "Classes", "kind": 128, "children": [ - 8721 + 1956, + 1976 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/page.service.ts", + "fileName": "src/_docs/form-controls/autocomplete-multiselect/autocomplete.service.ts", "line": 1, "character": 0 } ] }, { - "id": 8819, - "name": "\"src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component\"", + "id": 1977, + "name": "\"src/_docs/form-controls/autocomplete-multiselect/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-controls/autocomplete-multiselect/component-example.ts", "children": [ { - "id": 8820, - "name": "FormStepComponent", + "id": 1978, + "name": "AutocompleteMultiselectExampleComponent", "kind": 128, "kindString": "Class", "flags": { @@ -199309,13 +102950,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'form-step',\n template: `\n \n \n \n
    \n \"{{sideNavImageAlt}}\"/\n \n \n
    \n
    \n \n 0\">\n
    \n \n
    \n \n
    \n
    \n \n \n \n
    {{statusBannerLeadingText}}
    \n
    \n \n
    \n
    \n
    \n\n \n \n \n
    \n \n
    \n
    \n \n \n \n = 0\" \n buttonText=\"Back\" \n (onClick)=\"formAction('back')\">\n \n \n \n \n \n \n \n
    \n
    \n \n
    \n
    \n `\n}" + "obj": "{\n selector: 'doc-autocomplete-multiselect',\n template: `\n\n` + code_example + `\n
    \n
    \n
    \n

    Working with Paginated Services

    \n
    \n

    The autocomplete multiselect supports working with services that use pagination \n to implement an infinite scroll effect. The component itself stores the values \n passed to it and removes duplicates. However, the developer using the component \n must track the pagination by search string herself.\n \n The following class demonstrates how to setup pagination with the component.\n As with any autocomplete service, we start by implementing the \n AutocompleteService interface.

    \n \n

    The values in this component come from a private member property, but this could\n just as easily come from a service call. In that case, the developer would need\n to use Angular's @Injectable() decorator.

    \n \n

    In this simple example, we use the property names start and end to track \n pagination; however, typically pagination properties are called offset and \n limit.\n \n We initialize the start property to 0 to start at the beginning of the \n index. The end property indicates the last index in the array that should \n return from the results.\n \n Finally, lastSearch is used to track the current filter string. When the \n string changes, the pagination should reset since the result list should be \n different.

    \n \n

    The resetPagination method is used to reset the pagination variables back to \n their initial state when the searchString changes.

    \n \n

    The fetch method from the AutocompleteService is where most of the magic \n happens. First, we check if the latest search string, val, is the same as the \n lastSearch. If not, we reset pagination.

    \n \n

    Next, if the pageEnd parameter is true and val hasn't changed \n since the last search, increment the indices that are used for pagination. In \n this case, I also added a check that if the index is out of scope, return an \n empty array.

    \n \n

    Finally, we call the filter method to return the sliced array with the \n correct indices.

    \n \n

    In an ideal world, most of this tracking will be done by an API call. \n However, this example serves to demonstrate the concerns that developers need \n to account for when implementing pagination on this component.

    \n
    \n

    Complete Service Code

    \n \n
    \n
    \n
    \n`,\nproviders: [\n { provide: AutocompleteService, useClass: ACTestService }\n]\n}" } } ], "children": [ { - "id": 8844, + "id": 2002, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -199324,969 +102965,706 @@ }, "signatures": [ { - "id": 8846, - "name": "new FormStepComponent", + "id": 2005, + "name": "new AutocompleteMultiselectExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 8847, - "name": "cdr", + "id": 2006, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "ChangeDetectorRef" + "name": "Http" + } + }, + { + "id": 2007, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 2008, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "FormStepComponent", - "id": 8820 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 194, - "character": 60 - } - ] - }, - { - "id": 8838, - "name": "action", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emitter for general events" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" + "name": "AutocompleteMultiselectExampleComponent", + "id": 1978 }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 174, - "character": 18 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "Object" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8837, - "name": "alerts", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Passes in an Alerts model" - }, - "decorators": [ - { - "name": "Input", - "type": { + "overwrites": { "type": "reference", - "name": "Input" - }, - "arguments": {} + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 170, - "character": 17 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 297, + "character": 64 } ], - "type": { - "type": "instrinct", - "name": "any" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } }, { - "id": 8842, - "name": "breadcrumbChange", + "id": 2001, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Emitter for breadcrumb events" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 190, - "character": 35 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 297, + "character": 13 } ], "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "Object" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8841, - "name": "breadcrumbOut", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "(deprecated) Emitter for breadcrumb events" + "type": "instrinct", + "name": "string" }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 186, - "character": 32 - } - ], - "type": { + "defaultValue": "\"_docs/form-controls/autocomplete-multiselect/\"", + "overwrites": { "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "Object" - } - ] - }, - "defaultValue": " new EventEmitter()" + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 8845, - "name": "cdr", + "id": 1993, + "name": "code", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 196, - "character": 25 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 288, + "character": 6 } ], "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example1" }, { - "id": 8821, - "name": "crumbs", + "id": 1994, + "name": "code2", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets breadcrumbs model" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 106, - "character": 17 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 289, + "character": 7 } ], "type": { "type": "instrinct", - "name": "any" - } + "name": "string" + }, + "defaultValue": " code_example2" }, { - "id": 8836, - "name": "hasErrors", + "id": 1995, + "name": "code3", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Override to toggle buttons on/off if there are external errors" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 166, - "character": 20 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 290, + "character": 7 } ], "type": { "type": "instrinct", - "name": "any" - } + "name": "string" + }, + "defaultValue": " code_example3" }, { - "id": 8827, - "name": "numberOfSections", + "id": 1996, + "name": "code4", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets number of sections" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 130, - "character": 27 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 291, + "character": 7 } ], "type": { "type": "instrinct", - "name": "number" - } + "name": "string" + }, + "defaultValue": " code_example4" }, { - "id": 8829, - "name": "pageTitle", + "id": 1997, + "name": "code5", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets page title" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 138, - "character": 20 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 292, + "character": 7 } ], "type": { "type": "instrinct", "name": "string" - } + }, + "defaultValue": " code_example5" }, { - "id": 8826, - "name": "sectionIndex", + "id": 1998, + "name": "code6", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Used to toggle appearance of back/next buttons" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 126, - "character": 23 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 293, + "character": 7 } ], "type": { "type": "instrinct", - "name": "number" - } + "name": "string" + }, + "defaultValue": " code_example6" }, { - "id": 8828, - "name": "sectionTitle", + "id": 1999, + "name": "code7", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets section title" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 134, - "character": 23 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 294, + "character": 7 } ], "type": { "type": "instrinct", "name": "string" - } + }, + "defaultValue": " code_example7" }, { - "id": 8840, - "name": "sideNavChange", + "id": 2000, + "name": "code8", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Emitter for sidenav events" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 182, - "character": 25 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 295, + "character": 7 } ], "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "Object" - } - ] + "type": "instrinct", + "name": "string" }, - "defaultValue": " new EventEmitter()" + "defaultValue": " finalCode" }, { - "id": 8824, - "name": "sideNavImage", + "id": 1992, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets sidenav image src" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 118, - "character": 23 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 286, + "character": 9 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 8825, - "name": "sideNavImageAlt", + "id": 2010, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets sidenav image alt" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 122, - "character": 26 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 8822, - "name": "sideNavModel", + "id": 2009, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets sidenav model" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 110, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 8839, - "name": "sideNavOutput", + "id": 2004, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "(deprecated) Emitter for sidenav events" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 178, - "character": 25 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 302, + "character": 20 } ], "type": { "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "Object" - } - ] - }, - "defaultValue": " new EventEmitter()" - }, - { - "id": 8823, - "name": "sideNavSelection", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets sidenav selection" + "name": "MarkdownService", + "id": 238 }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 114, - "character": 27 - } - ], - "type": { - "type": "instrinct", - "name": "any" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 8834, - "name": "statusBannerExpanded", + "id": 1983, + "name": "multiselectOptions", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the state of the banner" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 158, - "character": 31 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 272, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 1984, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1985, + "name": "key", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 273, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Apple\"" + }, + { + "id": 1986, + "name": "value", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 273, + "character": 25 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Apple\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1985, + 1986 + ] + } + ] + } + } + ] }, - "defaultValue": "false" + "defaultValue": " [\n { key: 'Apple', value: 'Apple' },\n { key: 'Grape', value: 'Grape' },\n { key: 'Banana', value: 'Banana' },\n { key: 'Orange', value: 'Orange' },\n { key: 'Acorn', value: 'Acorn' },\n ]" }, { - "id": 8843, - "name": "statusBannerExpandedChange", + "id": 2011, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Emitter for status banner events" + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 194, - "character": 38 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { "type": "reference", - "name": "EventEmitter", + "name": "Array", "typeArguments": [ { "type": "instrinct", - "name": "Object" + "name": "string" } ] }, - "defaultValue": " new EventEmitter()" + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } }, { - "id": 8833, - "name": "statusBannerLeadingText", + "id": 2003, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the banner leading text" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 154, - "character": 34 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 301, + "character": 18 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 8832, - "name": "statusBannerType", + "id": 1991, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the banner alert type" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 150, - "character": 27 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 285, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"error\"" - }, - { - "id": 8835, - "name": "tabsComponent", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Passes in a tab component" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 162, - "character": 24 - } - ], - "type": { - "type": "instrinct", - "name": "any" + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 8830, - "name": "type", + "id": 1990, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets form step type" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 142, + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 284, "character": 15 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"SamAutocompleteMultiselectComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 8831, - "name": "typeLabel", + "id": 1979, + "name": "value", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the page component typelabel input" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 146, - "character": 20 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 270, + "character": 6 } ], "type": { "type": "instrinct", "name": "string" - } + }, + "defaultValue": "\"apple\"" }, { - "id": 8850, - "name": "breadcrumbHandler", + "id": 2017, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 8851, - "name": "breadcrumbHandler", + "id": 2018, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 8852, - "name": "evt", + "id": 2019, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 203, - "character": 19 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 8853, - "name": "formAction", + "id": 2012, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 8854, - "name": "formAction", + "id": 2013, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 8855, - "name": "evtStr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 208, - "character": 12 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 8856, - "name": "navHandler", + "id": 2014, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 8857, - "name": "navHandler", + "id": 2015, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 8858, - "name": "evt", + "id": 2016, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -200299,87 +103677,174 @@ "type": { "type": "instrinct", "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 212, - "character": 12 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } }, { - "id": 8848, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", + "id": 1987, + "name": "multiselectConfig", + "kind": 2097152, + "kindString": "Object literal", "flags": { "isExported": true }, - "signatures": [ + "children": [ { - "id": 8849, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, + "id": 1988, + "name": "keyProperty", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 281, + "character": 15 + } + ], "type": { "type": "instrinct", - "name": "void" - } + "name": "string" + }, + "defaultValue": "\"key\"" + }, + { + "id": 1989, + "name": "valueProperty", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 282, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"value\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1988, + 1989 + ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 199, - "character": 13 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 280, + "character": 19 } - ] + ], + "type": { + "type": "instrinct", + "name": "object" + } }, { - "id": 8859, - "name": "toggleButtons", - "kind": 2048, - "kindString": "Method", + "id": 1980, + "name": "value2", + "kind": 2097152, + "kindString": "Object literal", "flags": { "isExported": true }, - "signatures": [ + "children": [ { - "id": 8860, - "name": "toggleButtons", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ + "id": 1981, + "name": "code", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 8861, - "name": "hasErrors", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 271, + "character": 19 } ], "type": { "type": "instrinct", - "name": "void" - } + "name": "string" + }, + "defaultValue": "\"code05\"" + }, + { + "id": 1982, + "name": "value", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 271, + "character": 38 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"pineapple\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1981, + 1982 + ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 217, - "character": 15 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 271, + "character": 8 } - ] + ], + "type": { + "type": "instrinct", + "name": "object" + } } ], "groups": [ @@ -200387,396 +103852,266 @@ "title": "Constructors", "kind": 512, "children": [ - 8844 + 2002 ] }, { "title": "Properties", "kind": 1024, "children": [ - 8838, - 8837, - 8842, - 8841, - 8845, - 8821, - 8836, - 8827, - 8829, - 8826, - 8828, - 8840, - 8824, - 8825, - 8822, - 8839, - 8823, - 8834, - 8843, - 8833, - 8832, - 8835, - 8830, - 8831 + 2001, + 1993, + 1994, + 1995, + 1996, + 1997, + 1998, + 1999, + 2000, + 1992, + 2010, + 2009, + 2004, + 1983, + 2011, + 2003, + 1991, + 1990, + 1979 ] }, { "title": "Methods", "kind": 2048, "children": [ - 8850, - 8853, - 8856, - 8848, - 8859 + 2017, + 2012, + 2014 + ] + }, + { + "title": "Object literals", + "kind": 2097152, + "children": [ + 1987, + 1980 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 102, - "character": 30 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 269, + "character": 52 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 } ], "implementedTypes": [ { "type": "reference", - "name": "OnChanges" + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" } ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8820 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/pages/form-step.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8775, - "name": "\"src/sam-ui-elements/src/ui-kit/layout/results.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/layout/results.component.ts", - "children": [ + }, { - "id": 8776, - "name": "ResultsTemplateComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ + "id": 2029, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'results',\n templateUrl: 'results.template.html'\n}" - } + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 145, + "character": 18 } ], - "children": [ - { - "id": 8778, - "name": "currentPage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Current page number, value passed to generate list results message\nand pagination" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/results.component.ts", - "line": 18, - "character": 29 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `
    \n
    \n

    Simple Example

    \n \n \n
    \n
    \n

    One With Everything

    \n \n \n
    \n
    \n

    Component with Pagination

    \n \n \n
    \n
    `" + }, + { + "id": 2020, + "name": "code_example1", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ { - "id": 8781, - "name": "listMessageSuffix", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Text that immediately follows \"Showing 21-30 of...\"" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/results.component.ts", - "line": 34, - "character": 35 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 17, + "character": 19 + } + ], + "type": { + "type": "stringLiteral", + "value": "export class ACTestService implements AutocompleteService {" + }, + "defaultValue": "\"export class ACTestService implements AutocompleteService {\"" + }, + { + "id": 2021, + "name": "code_example2", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ { - "id": 8782, - "name": "pageChange", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Event emitter when user navigates to a different page" - }, - "decorators": [ - { - "name": "Output", - "type": { - "type": "reference", - "name": "Output" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/results.component.ts", - "line": 39, - "character": 29 - } - ], - "type": { - "type": "reference", - "name": "EventEmitter", - "typeArguments": [ - { - "type": "instrinct", - "name": "number" - } - ] - }, - "defaultValue": "\n new EventEmitter()" - }, + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 19, + "character": 19 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n private values: any = [\n { key: 'Random', value: 'Random'},\n { key: 'Just some data', value: 'Just some data'},\n ...\n ];\n`" + }, + { + "id": 2022, + "name": "code_example3", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ { - "id": 8780, - "name": "showing", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Total number of resuls shown per page" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/results.component.ts", - "line": 29, - "character": 25 - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - }, + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 27, + "character": 19 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n \\tprivate start: number = 0;\n private end: number = 2;\n private lastSearch: string;\n\n public setFetchMethod(_: any) {}\n`" + }, + { + "id": 2023, + "name": "code_example4", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ { - "id": 8777, - "name": "totalElements", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Total number of results, value passed to generate list results\nmessage and pagination" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/results.component.ts", - "line": 13, - "character": 31 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 35, + "character": 19 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n \\tpublic resetPagination() {\n this.start = 0;\n this.end = 2;\n }\n`" + }, + { + "id": 2024, + "name": "code_example5", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ { - "id": 8779, - "name": "totalPages", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "Total number of pages, value passed to generate list results message\nand pagination" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/results.component.ts", - "line": 24, - "character": 28 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 42, + "character": 19 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n \\tpublic fetch(val: string, pageEnd: boolean, serviceOptions: any) {\n if (val !== this.lastSearch) {\n this.resetPagination();\n }\n`" + }, + { + "id": 2025, + "name": "code_example6", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ { - "id": 8783, - "name": "pageChangeHandler", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 8784, - "name": "pageChangeHandler", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 8785, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/results.component.ts", - "line": 42, - "character": 19 - } - ] + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 49, + "character": 19 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n \\tif (pageEnd && val === this.lastSearch) {\n this.start = this.end;\n this.end = this.end + 2;\n if (this.end > this.values.length) {\n return Observable.of([]);\n }\n }\n\n this.lastSearch = val;\n`" + }, + { + "id": 2026, + "name": "code_example7", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ { - "title": "Properties", - "kind": 1024, - "children": [ - 8778, - 8781, - 8782, - 8780, - 8777, - 8779 - ] - }, + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 61, + "character": 19 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n \\treturn Observable.of(this.filter(val).slice(this.start, this.end));\n }\n\n private filter (val) {\n return this.values.filter(\n (value) => {\n if (value.key.toLowerCase().includes(val.toLowerCase())\n || value.value.toLowerCase().includes(val.toLowerCase())) {\n return value;\n }\n }\n );\n }\n}\n`" + }, + { + "id": 2027, + "name": "finalCode", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ { - "title": "Methods", - "kind": 2048, - "children": [ - 8783 - ] + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 78, + "character": 15 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\nexport class ACTestService implements AutocompleteService {\n private values: any = [\n { key: 'Random', value: 'Random'},\n { key: 'Just some data', value: 'Just some data'},\n ...\n ];\n\n private start: number = 0;\n private end: number = 2;\n private lastSearch: string;\n\n public setFetchMethod(_: any) {}\n\n public resetPagination() {\n this.start = 0;\n this.end = 2;\n }\n public fetch(val: string, pageEnd: boolean, serviceOptions: any) {\n if (val !== this.lastSearch) {\n this.resetPagination();\n }\n if (pageEnd && val === this.lastSearch) {\n this.start = this.end;\n this.end = this.end + 2;\n if (this.end > this.values.length) {\n return Observable.of([]);\n }\n }\n\n this.lastSearch = val;\n return Observable.of(this.filter(val).slice(this.start, this.end));\n }\n\n private filter (val) {\n return this.values.filter(\n (value) => {\n if (value.key.toLowerCase().includes(val.toLowerCase())\n || value.value.toLowerCase().includes(val.toLowerCase())) {\n return value;\n }\n }\n );\n }\n}\n`" + }, + { + "id": 2028, + "name": "paginatedComponent", + "kind": 32, + "kindString": "Variable", + "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/results.component.ts", - "line": 7, - "character": 37 + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", + "line": 125, + "character": 24 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n`" } ], "groups": [ @@ -200784,31 +104119,47 @@ "title": "Classes", "kind": 128, "children": [ - 8776 + 1978 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 2029, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026, + 2027, + 2028 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/results.component.ts", + "fileName": "src/_docs/form-controls/autocomplete-multiselect/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 8766, - "name": "\"src/sam-ui-elements/src/ui-kit/layout/sidebar.component\"", + "id": 1905, + "name": "\"src/_docs/form-controls/autocomplete/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-controls/autocomplete/component-example.ts", "children": [ { - "id": 8767, - "name": "SidebarTemplateComponent", + "id": 1906, + "name": "AutocompleteExampleComponent", "kind": 128, "kindString": "Class", "flags": { @@ -200822,13 +104173,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sidebar',\n template: '',\n}" + "obj": "{\n selector: 'doc-autocomplete',\n template: `\n\n` + code_example + `\n\n`\n}" } } ], "children": [ { - "id": 8769, + "id": 1926, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -200837,1309 +104188,919 @@ }, "signatures": [ { - "id": 8771, - "name": "new SidebarTemplateComponent", + "id": 1929, + "name": "new AutocompleteExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 8772, - "name": "pageService", + "id": 1930, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "PageService", - "id": 8721 + "name": "Http" + } + }, + { + "id": 1931, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 1932, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "SidebarTemplateComponent", - "id": 8767 + "name": "AutocompleteExampleComponent", + "id": 1906 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", - "line": 12, - "character": 40 + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 152, + "character": 52 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 8770, - "name": "pageService", + "id": 1925, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", - "line": 14, - "character": 33 + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 152, + "character": 13 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/form-controls/autocomplete/\"", + "overwrites": { "type": "reference", - "name": "PageService", - "id": 8721 + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 8768, - "name": "wide", + "id": 1921, + "name": "countryValue", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Toggles a wider sidebar in the page service" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", - "line": 12, - "character": 22 + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 147, + "character": 21 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" }, - "defaultValue": "false" + "defaultValue": "\"\"" }, { - "id": 8773, - "name": "ngOnInit", - "kind": 2048, - "kindString": "Method", + "id": 1924, + "name": "example", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 8774, - "name": "ngOnInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", - "line": 17, - "character": 10 + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 150, + "character": 16 } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 8769 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 8770, - 8768 - ] - }, - { - "title": "Methods", - "kind": 2048, - "children": [ - 8773 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", - "line": 8, - "character": 37 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "OnInit" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8767 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/sidebar.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8873, - "name": "\"src/sam-ui-elements/src/ui-kit/layout/title-and-section.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", - "children": [ - { - "id": 8874, - "name": "TitleAndSectionComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Component", + ], "type": { - "type": "reference", - "name": "Component" + "type": "instrinct", + "name": "string" }, - "arguments": { - "obj": "{\n selector: 'title-and-section',\n template: `\n
    \n

    \n {{ badge }}\n \n
    \n {{ section }}\n
    \n {{ title }}\n

    \n
    \n

    {{typeLabel}}: {{type}}

    \n
    \n
    \n
    \n`,\n}" + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } - } - ], - "children": [ + }, { - "id": 8878, - "name": "badge", + "id": 1934, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the badge text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", - "line": 45, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 8882, - "name": "badgeOptions", + "id": 1916, + "name": "kv_options", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 130, + "character": 19 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 1917, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 1918, + "name": "code", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 131, + "character": 8 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"code01\"" + }, + { + "id": 1919, + "name": "value", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 132, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"apple\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1918, + 1919 + ] + } + ] + } + } + ] + }, + "defaultValue": " [{\n code: 'code01',\n value: 'apple'\n }, {\n code: 'code02',\n value: 'orange'\n }, {\n code: 'code03',\n value: 'grape'\n }, {\n code: 'code04',\n value: 'banana'\n }, {\n code: 'code05',\n value: 'pineapple'\n }]" + }, + { + "id": 1933, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the badge component options" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", - "line": 61, - "character": 30 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { "type": "reference", - "name": "BadgeConfig", - "id": 3812 + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 8881, - "name": "caption", + "id": 1928, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the caption text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", - "line": 57, - "character": 25 + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 157, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 8877, - "name": "id", + "id": 1911, + "name": "options", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the id attribute value" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", - "line": 41, - "character": 20 + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 123, + "character": 16 } ], "type": { - "type": "instrinct", - "name": "string" - } + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " ['apple', 'orange', 'grape', 'banana', 'pineapple']" }, { - "id": 8875, - "name": "section", + "id": 1935, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the section text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", - "line": 33, - "character": 25 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 8876, - "name": "title", + "id": 1927, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the title text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", - "line": 37, - "character": 23 + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 156, + "character": 18 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 8879, - "name": "type", + "id": 1920, + "name": "stateValue", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the type text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", - "line": 49, - "character": 22 + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 146, + "character": 19 } ], "type": { "type": "instrinct", "name": "string" - } + }, + "defaultValue": "\"\"" }, { - "id": 8880, - "name": "typeLabel", + "id": 1923, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, "isPublic": true }, - "comment": { - "shortText": "Sets the type label text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", - "line": 53, - "character": 27 + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 149, + "character": 24 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 8878, - 8882, - 8881, - 8877, - 8875, - 8876, - 8879, - 8880 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", - "line": 29, - "character": 37 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8874 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/title-and-section.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 3824, - "name": "\"src/sam-ui-elements/src/ui-kit/layout/types\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/layout/types.ts", - "children": [ - { - "id": 3825, - "name": "PageConfig", - "kind": 256, - "kindString": "Interface", - "flags": { - "isExported": true - }, - "children": [ + }, { - "id": 3827, - "name": "badge", + "id": 1922, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/types.ts", - "line": 5, - "character": 7 + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 148, + "character": 23 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamAutocompleteComponent\"", + "overwrites": { "type": "reference", - "name": "BadgeConfig", - "id": 3812 + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 3826, - "name": "class", + "id": 1907, + "name": "value", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/types.ts", - "line": 4, - "character": 7 + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 121, + "character": 14 } ], "type": { "type": "instrinct", "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 3827, - 3826 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/types.ts", - "line": 3, - "character": 27 - } - ] - } - ], - "groups": [ - { - "title": "Interfaces", - "kind": 256, - "children": [ - 3825 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/types.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 8862, - "name": "\"src/sam-ui-elements/src/ui-kit/layout/workspace/workspace-template.component\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/layout/workspace/workspace-template.component.ts", - "children": [ - { - "id": 8863, - "name": "WorkspaceTemplateComponent", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Example usage:", - "text": "\n
    Headers/breadcrumbs go here
    \n
    Side navs/filters go here
    \n
    Main content goes here
    \n
    \n" - }, - "decorators": [ - { - "name": "Component", - "type": { - "type": "reference", - "name": "Component" - }, - "arguments": { - "obj": "{\n selector: 'workspace-template',\n templateUrl: 'workspace-template.html'\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/workspace/workspace-template.component.ts", - "line": 16, - "character": 39 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 8863 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/layout/workspace/workspace-template.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4484, - "name": "\"src/sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe.ts", - "children": [ - { - "id": 4485, - "name": "DateTimeDisplayPipe", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Pipe", - "type": { - "type": "reference", - "name": "Pipe" }, - "arguments": { - "obj": "{name: 'dateTimeDisplay'}" - } - } - ], - "children": [ + "defaultValue": "\"apple\"" + }, { - "id": 4486, - "name": "transform", + "id": 1941, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 4487, - "name": "transform", + "id": 1942, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 4488, - "name": "datetime", + "id": 1943, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe.ts", - "line": 7, - "character": 11 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] - } - ], - "groups": [ + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, { - "title": "Methods", + "id": 1936, + "name": "ngOnInit", "kind": 2048, - "children": [ - 4486 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe.ts", - "line": 6, - "character": 32 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "PipeTransform" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4485 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/date-time-display/date-time-display.pipe.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4489, - "name": "\"src/sam-ui-elements/src/ui-kit/pipes/date-time-display/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/pipes/date-time-display/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/date-time-display/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4505, - "name": "\"src/sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe.ts", - "children": [ - { - "id": 4506, - "name": "FilesizePipe", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Pipe", - "type": { - "type": "reference", - "name": "Pipe" + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true }, - "arguments": { - "obj": "{name: 'filesize'}" + "signatures": [ + { + "id": 1937, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } - } - ], - "children": [ + }, { - "id": 4507, - "name": "transform", + "id": 1938, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 4508, - "name": "transform", + "id": 1939, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 4509, - "name": "size", + "id": 1940, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "number" + "name": "any" } } ], "type": { "type": "instrinct", - "name": "string" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe.ts", - "line": 7, - "character": 11 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] - } - ], - "groups": [ - { - "title": "Methods", - "kind": 2048, - "children": [ - 4507 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe.ts", - "line": 5, - "character": 25 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "PipeTransform" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4506 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/filesize/filesize.pipe.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4510, - "name": "\"src/sam-ui-elements/src/ui-kit/pipes/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/pipes/index.ts", - "children": [ - { - "id": 4511, - "name": "SamPipesModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [ CommonModule ],\n declarations: [\n FilesizePipe,\n TimeAgoPipe,\n DateTimeDisplayPipe,\n ShortDatePipe\n ],\n exports: [\n FilesizePipe,\n TimeAgoPipe,\n DateTimeDisplayPipe,\n ShortDatePipe,\n ],\n providers: []\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/index.ts", - "line": 25, - "character": 27 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4511 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4496, - "name": "\"src/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", - "children": [ - { - "id": 4497, - "name": "ShortDatePipe", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Pipe", - "type": { + ], + "inheritedFrom": { "type": "reference", - "name": "Pipe" - }, - "arguments": { - "obj": "{\n name: 'shortDate'\n}" + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } - } - ], - "children": [ + }, { - "id": 4500, - "name": "differentYearFormat", - "kind": 1024, - "kindString": "Property", + "id": 1912, + "name": "kv_config", + "kind": 2097152, + "kindString": "Object literal", "flags": { "isExported": true, "isPublic": true }, - "sources": [ + "children": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", - "line": 10, - "character": 28 + "id": 1913, + "name": "keyValueConfig", + "kind": 2097152, + "kindString": "Object literal", + "flags": { + "isExported": true + }, + "children": [ + { + "id": 1914, + "name": "keyProperty", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 126, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"code\"" + }, + { + "id": 1915, + "name": "valueProperty", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 127, + "character": 19 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"value\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1914, + 1915 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 125, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "object" + } } ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"MMM DD YYYY h:mmA\"" - }, - { - "id": 4498, - "name": "sameDayFormat", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ + "groups": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", - "line": 8, - "character": 22 + "title": "Object literals", + "kind": 2097152, + "children": [ + 1913 + ] } ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"h:mmA\"" - }, - { - "id": 4499, - "name": "sameYearFormat", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", - "line": 9, - "character": 23 + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 124, + "character": 18 } ], "type": { "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"MMM DD h:mmA\"" + "name": "object" + } }, { - "id": 4501, - "name": "transform", - "kind": 2048, - "kindString": "Method", + "id": 1908, + "name": "value2", + "kind": 2097152, + "kindString": "Object literal", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "children": [ { - "id": 4502, - "name": "transform", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ + "id": 1909, + "name": "code", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 4503, - "name": "dateStr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 122, + "character": 24 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"code05\"" + }, + { + "id": 1910, + "name": "value", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 4504, - "name": "fakeNow", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "instrinct", - "name": "any" - } + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 122, + "character": 41 } ], "type": { "type": "instrinct", "name": "string" - } + }, + "defaultValue": "\"pineapple\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 1909, + 1910 + ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", - "line": 14, - "character": 11 + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 122, + "character": 15 } - ] + ], + "type": { + "type": "instrinct", + "name": "object" + } } ], "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 1926 + ] + }, { "title": "Properties", "kind": 1024, "children": [ - 4500, - 4498, - 4499 + 1925, + 1921, + 1924, + 1934, + 1916, + 1933, + 1928, + 1911, + 1935, + 1927, + 1920, + 1923, + 1922, + 1907 ] }, { "title": "Methods", "kind": 2048, "children": [ - 4501 + 1941, + 1936, + 1938 ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", - "line": 7, - "character": 26 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "PipeTransform" - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 4497 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/short-date/short-date.pipe.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4495, - "name": "\"src/sam-ui-elements/src/ui-kit/pipes/time-ago/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/pipes/time-ago/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/time-ago/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4490, - "name": "\"src/sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe.ts", - "children": [ - { - "id": 4491, - "name": "TimeAgoPipe", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Pipe", - "type": { - "type": "reference", - "name": "Pipe" - }, - "arguments": { - "obj": "{\n name: 'timeago',\n // WARNING: If this is not set to false, values won't update unless the Object\n // or Array reference changes: https://stackoverflow.com/questions/34456430/\n // ngfor-doesnt-update-data-with-pipe-in-angular2\n}" - } - } - ], - "children": [ + }, { - "id": 4492, - "name": "transform", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4493, - "name": "transform", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4494, - "name": "datetime", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe.ts", - "line": 11, - "character": 11 - } + "title": "Object literals", + "kind": 2097152, + "children": [ + 1912, + 1908 ] } ], - "groups": [ + "sources": [ { - "title": "Methods", - "kind": 2048, - "children": [ - 4492 - ] + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 120, + "character": 41 } ], - "sources": [ + "extendedTypes": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe.ts", - "line": 10, - "character": 24 + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 } ], "implementedTypes": [ { "type": "reference", - "name": "PipeTransform" + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" } ] + }, + { + "id": 1944, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `
    \n
    \n

    Example with Selectable Categories and Subheading

    \n \n \n
    \n
    \n

    Example with Unselectable Categories and Subheadings

    \n \n \n
    \n
    \n

    Example with Array of Strings

    \n \n \n
    \n
    \n

    Example with Key Value Pairs

    \n \n \n
    \n
    \n

    Example with Injected State Service Directive

    \n \n \n
    \n
    \n

    Example With Injected Country Service Directive

    \n \n \n
    \n
    `" } ], "groups": [ @@ -202147,31 +105108,38 @@ "title": "Classes", "kind": 128, "children": [ - 4491 + 1906 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 1944 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/pipes/time-ago/time-ago.pipe.ts", + "fileName": "src/_docs/form-controls/autocomplete/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 9111, - "name": "\"src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive\"", + "id": 2030, + "name": "\"src/_docs/form-controls/checkbox/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-controls/checkbox/component-example.ts", "children": [ { - "id": 9112, - "name": "CountryService", + "id": 2031, + "name": "CheckboxExampleComponent", "kind": 128, "kindString": "Class", "flags": { @@ -202179,17 +105147,19 @@ }, "decorators": [ { - "name": "Injectable", + "name": "Component", "type": { "type": "reference", - "name": "Injectable" + "name": "Component" }, - "arguments": {} + "arguments": { + "obj": "{\n\tselector: 'doc-checkbox',\n template: `\n\n`+code_example+`\n\n`\n}" + } } ], "children": [ { - "id": 9113, + "id": 2054, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -202198,85 +105168,264 @@ }, "signatures": [ { - "id": 9115, - "name": "new CountryService", + "id": 2057, + "name": "new CheckboxExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 9116, - "name": "countries", + "id": 2058, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, - "decorators": [ - { - "name": "Inject", - "type": { - "type": "reference", - "name": "Inject" - }, - "arguments": { - "token": "'COUNTRIES'" - } - } - ], "type": { "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reference", - "name": "Country", - "id": 9125 - } - ] + "name": "Http" + } + }, + { + "id": 2059, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 2060, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "CountryService", - "id": 9112 + "name": "CheckboxExampleComponent", + "id": 2031 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", - "line": 10, - "character": 60 + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 67, + "character": 48 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 9114, - "name": "countries", + "id": 2053, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 67, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/form-controls/checkbox/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 2032, + "name": "checkboxModel", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, "isExported": true }, - "decorators": [ + "sources": [ { - "name": "Inject", - "type": { - "type": "reference", - "name": "Inject" - }, - "arguments": { - "token": "'COUNTRIES'" - } + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 42, + "character": 15 + } + ], + "type": { + "type": "instrinct", + "name": "any" + }, + "defaultValue": " ['ma']" + }, + { + "id": 2033, + "name": "checkboxModel2", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 43, + "character": 16 } ], + "type": { + "type": "instrinct", + "name": "any" + }, + "defaultValue": " ['ma']" + }, + { + "id": 2052, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", - "line": 12, - "character": 52 + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 65, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 2062, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 2061, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 2056, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 72, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 2063, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { @@ -202284,32 +105433,118 @@ "name": "Array", "typeArguments": [ { - "type": "reference", - "name": "Country", - "id": 9125 + "type": "instrinct", + "name": "string" } ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 9119, - "name": "fetch", + "id": 2055, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 71, + "character": 18 + } + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 2051, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 63, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 2050, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 62, + "character": 15 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamCheckboxComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } + }, + { + "id": 2069, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 9120, - "name": "fetch", + "id": 2070, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 9121, - "name": "val", + "id": 2071, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -202317,694 +105552,568 @@ "type": "instrinct", "name": "string" } - }, - { - "id": 9122, - "name": "pageEnd", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 9123, - "name": "serviceOptions", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "instrinct", - "name": "any" - } } ], "type": { "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", - "line": 18, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 9117, - "name": "setFetchMethod", + "id": 2064, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 9118, - "name": "setFetchMethod", + "id": 2065, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", - "line": 14, - "character": 16 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9113 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9114 - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "title": "Methods", + "id": 2066, + "name": "setupTypedocContent", "kind": 2048, - "children": [ - 9119, - 9117 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", - "line": 10, - "character": 27 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "AutocompleteService", - "id": 5749 - } - ] - }, - { - "id": 9124, - "name": "CountryServiceDirective", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Directive", - "type": { - "type": "reference", - "name": "Directive" + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true }, - "arguments": { - "obj": "{\n selector: 'sam-autocomplete[country]',\n providers: [\n { provide: AutocompleteService, useClass: CountryService }\n ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", - "line": 39, - "character": 36 - } - ] - }, - { - "id": 9125, - "name": "Country", - "kind": 256, - "kindString": "Interface", - "flags": {}, - "children": [ - { - "id": 9127, - "name": "code", - "kind": 1024, - "kindString": "Property", - "flags": {}, + "signatures": [ + { + "id": 2067, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2068, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", - "line": 43, - "character": 6 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } }, { - "id": 9126, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": {}, + "id": 2034, + "name": "checkboxConfig", + "kind": 2097152, + "kindString": "Object literal", + "flags": { + "isExported": true + }, + "children": [ + { + "id": 2041, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 51, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Select a region (normal)\"" + }, + { + "id": 2040, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 50, + "character": 8 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"my-sr-name\"" + }, + { + "id": 2035, + "name": "options", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 45, + "character": 11 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 2036, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2038, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 46, + "character": 25 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"DC\"" + }, + { + "id": 2039, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 46, + "character": 37 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"checkbox-dc\"" + }, + { + "id": 2037, + "name": "value", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 46, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"dc\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 2038, + 2039, + 2037 + ] + } + ] + } + } + ] + }, + "defaultValue": " [\n {value: 'dc', label: 'DC', name: 'checkbox-dc'},\n {value: 'ma', label: 'Maryland', name: 'checkbox-maryland'},\n {value: 'va', label: 'Virginia', name: 'checkbox-virginia'},\n ]" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 2041, + 2040, + 2035 + ] + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", - "line": 42, - "character": 6 + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 44, + "character": 16 } ], "type": { "type": "instrinct", - "name": "string" + "name": "object" } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 9127, - 9126 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", - "line": 41, - "character": 17 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9112, - 9124 - ] - }, - { - "title": "Interfaces", - "kind": 256, - "children": [ - 9125 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/country.directive.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9128, - "name": "\"src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", - "children": [ - { - "id": 9129, - "name": "CountryServiceDirectiveModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ + }, { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" + "id": 2042, + "name": "disabledCheckboxConfig", + "kind": 2097152, + "kindString": "Object literal", + "flags": { + "isExported": true }, - "arguments": { - "obj": "{\n imports: [],\n declarations: [\n CountryServiceDirective\n ],\n exports: [\n CountryServiceDirective\n ],\n providers: [\n { provide: 'COUNTRIES', useValue: countriesList }\n ]\n}" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", - "line": 265, - "character": 42 - } - ] - }, - { - "id": 9134, - "name": "COUNTRIES", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", - "line": 251, - "character": 15 - } - ], - "type": { - "type": "reference", - "name": "OpaqueToken" - }, - "defaultValue": " new OpaqueToken('COUNTRIES')" - }, - { - "id": 9130, - "name": "countriesList", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", - "line": 5, - "character": 19 - } - ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9131, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ + "children": [ + { + "id": 2049, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 9133, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", - "line": 6, - "character": 32 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"AF\"" - }, + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 60, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Select a region (disabled)\"" + }, + { + "id": 2048, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 9132, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", - "line": 6, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Afghanistan\"" + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 59, + "character": 8 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"my-sr-name\"" + }, + { + "id": 2043, + "name": "options", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9133, - 9132 - ] + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 54, + "character": 11 } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 2044, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2046, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 55, + "character": 25 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"DC\"" + }, + { + "id": 2047, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 55, + "character": 37 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"checkbox-dc\"" + }, + { + "id": 2045, + "name": "value", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 55, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"dc\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 2046, + 2047, + 2045 + ] + } + ] + } + } + ] + }, + "defaultValue": " [\n {value: 'dc', label: 'DC', name: 'checkbox-dc'},\n {value: 'ma', label: 'Maryland', name: 'checkbox-maryland'},\n {value: 'va', label: 'Virginia', name: 'checkbox-virginia'},\n ]" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 2049, + 2048, + 2043 ] } - } - ] - }, - "defaultValue": " [\n {'name': 'Afghanistan', 'code': 'AF'},\n {'name': 'Ã…land Islands', 'code': 'AX'},\n {'name': 'Albania', 'code': 'AL'},\n {'name': 'Algeria', 'code': 'DZ'},\n {'name': 'American Samoa', 'code': 'AS'},\n {'name': 'AndorrA', 'code': 'AD'},\n {'name': 'Angola', 'code': 'AO'},\n {'name': 'Anguilla', 'code': 'AI'},\n {'name': 'Antarctica', 'code': 'AQ'},\n {'name': 'Antigua and Barbuda', 'code': 'AG'},\n {'name': 'Argentina', 'code': 'AR'},\n {'name': 'Armenia', 'code': 'AM'},\n {'name': 'Aruba', 'code': 'AW'},\n {'name': 'Australia', 'code': 'AU'},\n {'name': 'Austria', 'code': 'AT'},\n {'name': 'Azerbaijan', 'code': 'AZ'},\n {'name': 'Bahamas', 'code': 'BS'},\n {'name': 'Bahrain', 'code': 'BH'},\n {'name': 'Bangladesh', 'code': 'BD'},\n {'name': 'Barbados', 'code': 'BB'},\n {'name': 'Belarus', 'code': 'BY'},\n {'name': 'Belgium', 'code': 'BE'},\n {'name': 'Belize', 'code': 'BZ'},\n {'name': 'Benin', 'code': 'BJ'},\n {'name': 'Bermuda', 'code': 'BM'},\n {'name': 'Bhutan', 'code': 'BT'},\n {'name': 'Bolivia', 'code': 'BO'},\n {'name': 'Bosnia and Herzegovina', 'code': 'BA'},\n {'name': 'Botswana', 'code': 'BW'},\n {'name': 'Bouvet Island', 'code': 'BV'},\n {'name': 'Brazil', 'code': 'BR'},\n {'name': 'British Indian Ocean Territory', 'code': 'IO'},\n {'name': 'Brunei Darussalam', 'code': 'BN'},\n {'name': 'Bulgaria', 'code': 'BG'},\n {'name': 'Burkina Faso', 'code': 'BF'},\n {'name': 'Burundi', 'code': 'BI'},\n {'name': 'Cambodia', 'code': 'KH'},\n {'name': 'Cameroon', 'code': 'CM'},\n {'name': 'Canada', 'code': 'CA'},\n {'name': 'Cape Verde', 'code': 'CV'},\n {'name': 'Cayman Islands', 'code': 'KY'},\n {'name': 'Central African Republic', 'code': 'CF'},\n {'name': 'Chad', 'code': 'TD'},\n {'name': 'Chile', 'code': 'CL'},\n {'name': 'China', 'code': 'CN'},\n {'name': 'Christmas Island', 'code': 'CX'},\n {'name': 'Cocos (Keeling) Islands', 'code': 'CC'},\n {'name': 'Colombia', 'code': 'CO'},\n {'name': 'Comoros', 'code': 'KM'},\n {'name': 'Congo', 'code': 'CG'},\n {'name': 'Congo, The Democratic Republic of the', 'code': 'CD'},\n {'name': 'Cook Islands', 'code': 'CK'},\n {'name': 'Costa Rica', 'code': 'CR'},\n {'name': 'Cote D\\'Ivoire', 'code': 'CI'},\n {'name': 'Croatia', 'code': 'HR'},\n {'name': 'Cuba', 'code': 'CU'},\n {'name': 'Cyprus', 'code': 'CY'},\n {'name': 'Czech Republic', 'code': 'CZ'},\n {'name': 'Denmark', 'code': 'DK'},\n {'name': 'Djibouti', 'code': 'DJ'},\n {'name': 'Dominica', 'code': 'DM'},\n {'name': 'Dominican Republic', 'code': 'DO'},\n {'name': 'Ecuador', 'code': 'EC'},\n {'name': 'Egypt', 'code': 'EG'},\n {'name': 'El Salvador', 'code': 'SV'},\n {'name': 'Equatorial Guinea', 'code': 'GQ'},\n {'name': 'Eritrea', 'code': 'ER'},\n {'name': 'Estonia', 'code': 'EE'},\n {'name': 'Ethiopia', 'code': 'ET'},\n {'name': 'Falkland Islands (Malvinas)', 'code': 'FK'},\n {'name': 'Faroe Islands', 'code': 'FO'},\n {'name': 'Fiji', 'code': 'FJ'},\n {'name': 'Finland', 'code': 'FI'},\n {'name': 'France', 'code': 'FR'},\n {'name': 'French Guiana', 'code': 'GF'},\n {'name': 'French Polynesia', 'code': 'PF'},\n {'name': 'French Southern Territories', 'code': 'TF'},\n {'name': 'Gabon', 'code': 'GA'},\n {'name': 'Gambia', 'code': 'GM'},\n {'name': 'Georgia', 'code': 'GE'},\n {'name': 'Germany', 'code': 'DE'},\n {'name': 'Ghana', 'code': 'GH'},\n {'name': 'Gibraltar', 'code': 'GI'},\n {'name': 'Greece', 'code': 'GR'},\n {'name': 'Greenland', 'code': 'GL'},\n {'name': 'Grenada', 'code': 'GD'},\n {'name': 'Guadeloupe', 'code': 'GP'},\n {'name': 'Guam', 'code': 'GU'},\n {'name': 'Guatemala', 'code': 'GT'},\n {'name': 'Guernsey', 'code': 'GG'},\n {'name': 'Guinea', 'code': 'GN'},\n {'name': 'Guinea-Bissau', 'code': 'GW'},\n {'name': 'Guyana', 'code': 'GY'},\n {'name': 'Haiti', 'code': 'HT'},\n {'name': 'Heard Island and Mcdonald Islands', 'code': 'HM'},\n {'name': 'Holy See (Vatican City State)', 'code': 'VA'},\n {'name': 'Honduras', 'code': 'HN'},\n {'name': 'Hong Kong', 'code': 'HK'},\n {'name': 'Hungary', 'code': 'HU'},\n {'name': 'Iceland', 'code': 'IS'},\n {'name': 'India', 'code': 'IN'},\n {'name': 'Indonesia', 'code': 'ID'},\n {'name': 'Iran, Islamic Republic Of', 'code': 'IR'},\n {'name': 'Iraq', 'code': 'IQ'},\n {'name': 'Ireland', 'code': 'IE'},\n {'name': 'Isle of Man', 'code': 'IM'},\n {'name': 'Israel', 'code': 'IL'},\n {'name': 'Italy', 'code': 'IT'},\n {'name': 'Jamaica', 'code': 'JM'},\n {'name': 'Japan', 'code': 'JP'},\n {'name': 'Jersey', 'code': 'JE'},\n {'name': 'Jordan', 'code': 'JO'},\n {'name': 'Kazakhstan', 'code': 'KZ'},\n {'name': 'Kenya', 'code': 'KE'},\n {'name': 'Kiribati', 'code': 'KI'},\n {'name': 'Korea, Democratic People\\'s Republic of', 'code': 'KP'},\n {'name': 'Korea, Republic of', 'code': 'KR'},\n {'name': 'Kuwait', 'code': 'KW'},\n {'name': 'Kyrgyzstan', 'code': 'KG'},\n {'name': 'Lao People\\'s Democratic Republic', 'code': 'LA'},\n {'name': 'Latvia', 'code': 'LV'},\n {'name': 'Lebanon', 'code': 'LB'},\n {'name': 'Lesotho', 'code': 'LS'},\n {'name': 'Liberia', 'code': 'LR'},\n {'name': 'Libyan Arab Jamahiriya', 'code': 'LY'},\n {'name': 'Liechtenstein', 'code': 'LI'},\n {'name': 'Lithuania', 'code': 'LT'},\n {'name': 'Luxembourg', 'code': 'LU'},\n {'name': 'Macao', 'code': 'MO'},\n {'name': 'Macedonia, The Former Yugoslav Republic of', 'code': 'MK'},\n {'name': 'Madagascar', 'code': 'MG'},\n {'name': 'Malawi', 'code': 'MW'},\n {'name': 'Malaysia', 'code': 'MY'},\n {'name': 'Maldives', 'code': 'MV'},\n {'name': 'Mali', 'code': 'ML'},\n {'name': 'Malta', 'code': 'MT'},\n {'name': 'Marshall Islands', 'code': 'MH'},\n {'name': 'Martinique', 'code': 'MQ'},\n {'name': 'Mauritania', 'code': 'MR'},\n {'name': 'Mauritius', 'code': 'MU'},\n {'name': 'Mayotte', 'code': 'YT'},\n {'name': 'Mexico', 'code': 'MX'},\n {'name': 'Micronesia, Federated States of', 'code': 'FM'},\n {'name': 'Moldova, Republic of', 'code': 'MD'},\n {'name': 'Monaco', 'code': 'MC'},\n {'name': 'Mongolia', 'code': 'MN'},\n {'name': 'Montserrat', 'code': 'MS'},\n {'name': 'Morocco', 'code': 'MA'},\n {'name': 'Mozambique', 'code': 'MZ'},\n {'name': 'Myanmar', 'code': 'MM'},\n {'name': 'Namibia', 'code': 'NA'},\n {'name': 'Nauru', 'code': 'NR'},\n {'name': 'Nepal', 'code': 'NP'},\n {'name': 'Netherlands', 'code': 'NL'},\n {'name': 'Netherlands Antilles', 'code': 'AN'},\n {'name': 'New Caledonia', 'code': 'NC'},\n {'name': 'New Zealand', 'code': 'NZ'},\n {'name': 'Nicaragua', 'code': 'NI'},\n {'name': 'Niger', 'code': 'NE'},\n {'name': 'Nigeria', 'code': 'NG'},\n {'name': 'Niue', 'code': 'NU'},\n {'name': 'Norfolk Island', 'code': 'NF'},\n {'name': 'Northern Mariana Islands', 'code': 'MP'},\n {'name': 'Norway', 'code': 'NO'},\n {'name': 'Oman', 'code': 'OM'},\n {'name': 'Pakistan', 'code': 'PK'},\n {'name': 'Palau', 'code': 'PW'},\n {'name': 'Palestinian Territory, Occupied', 'code': 'PS'},\n {'name': 'Panama', 'code': 'PA'},\n {'name': 'Papua New Guinea', 'code': 'PG'},\n {'name': 'Paraguay', 'code': 'PY'},\n {'name': 'Peru', 'code': 'PE'},\n {'name': 'Philippines', 'code': 'PH'},\n {'name': 'Pitcairn', 'code': 'PN'},\n {'name': 'Poland', 'code': 'PL'},\n {'name': 'Portugal', 'code': 'PT'},\n {'name': 'Puerto Rico', 'code': 'PR'},\n {'name': 'Qatar', 'code': 'QA'},\n {'name': 'Reunion', 'code': 'RE'},\n {'name': 'Romania', 'code': 'RO'},\n {'name': 'Russian Federation', 'code': 'RU'},\n {'name': 'RWANDA', 'code': 'RW'},\n {'name': 'Saint Helena', 'code': 'SH'},\n {'name': 'Saint Kitts and Nevis', 'code': 'KN'},\n {'name': 'Saint Lucia', 'code': 'LC'},\n {'name': 'Saint Pierre and Miquelon', 'code': 'PM'},\n {'name': 'Saint Vincent and the Grenadines', 'code': 'VC'},\n {'name': 'Samoa', 'code': 'WS'},\n {'name': 'San Marino', 'code': 'SM'},\n {'name': 'Sao Tome and Principe', 'code': 'ST'},\n {'name': 'Saudi Arabia', 'code': 'SA'},\n {'name': 'Senegal', 'code': 'SN'},\n {'name': 'Serbia and Montenegro', 'code': 'CS'},\n {'name': 'Seychelles', 'code': 'SC'},\n {'name': 'Sierra Leone', 'code': 'SL'},\n {'name': 'Singapore', 'code': 'SG'},\n {'name': 'Slovakia', 'code': 'SK'},\n {'name': 'Slovenia', 'code': 'SI'},\n {'name': 'Solomon Islands', 'code': 'SB'},\n {'name': 'Somalia', 'code': 'SO'},\n {'name': 'South Africa', 'code': 'ZA'},\n {'name': 'South Georgia and the South Sandwich Islands', 'code': 'GS'},\n {'name': 'Spain', 'code': 'ES'},\n {'name': 'Sri Lanka', 'code': 'LK'},\n {'name': 'Sudan', 'code': 'SD'},\n {'name': 'Suriname', 'code': 'SR'},\n {'name': 'Svalbard and Jan Mayen', 'code': 'SJ'},\n {'name': 'Swaziland', 'code': 'SZ'},\n {'name': 'Sweden', 'code': 'SE'},\n {'name': 'Switzerland', 'code': 'CH'},\n {'name': 'Syrian Arab Republic', 'code': 'SY'},\n {'name': 'Taiwan, Province of China', 'code': 'TW'},\n {'name': 'Tajikistan', 'code': 'TJ'},\n {'name': 'Tanzania, United Republic of', 'code': 'TZ'},\n {'name': 'Thailand', 'code': 'TH'},\n {'name': 'Timor-Leste', 'code': 'TL'},\n {'name': 'Togo', 'code': 'TG'},\n {'name': 'Tokelau', 'code': 'TK'},\n {'name': 'Tonga', 'code': 'TO'},\n {'name': 'Trinidad and Tobago', 'code': 'TT'},\n {'name': 'Tunisia', 'code': 'TN'},\n {'name': 'Turkey', 'code': 'TR'},\n {'name': 'Turkmenistan', 'code': 'TM'},\n {'name': 'Turks and Caicos Islands', 'code': 'TC'},\n {'name': 'Tuvalu', 'code': 'TV'},\n {'name': 'Uganda', 'code': 'UG'},\n {'name': 'Ukraine', 'code': 'UA'},\n {'name': 'United Arab Emirates', 'code': 'AE'},\n {'name': 'United Kingdom', 'code': 'GB'},\n {'name': 'United States', 'code': 'US'},\n {'name': 'United States Minor Outlying Islands', 'code': 'UM'},\n {'name': 'Uruguay', 'code': 'UY'},\n {'name': 'Uzbekistan', 'code': 'UZ'},\n {'name': 'Vanuatu', 'code': 'VU'},\n {'name': 'Venezuela', 'code': 'VE'},\n {'name': 'Viet Nam', 'code': 'VN'},\n {'name': 'Virgin Islands, British', 'code': 'VG'},\n {'name': 'Virgin Islands, U.S.', 'code': 'VI'},\n {'name': 'Wallis and Futuna', 'code': 'WF'},\n {'name': 'Western Sahara', 'code': 'EH'},\n {'name': 'Yemen', 'code': 'YE'},\n {'name': 'Zambia', 'code': 'ZM'},\n {'name': 'Zimbabwe', 'code': 'ZW'}\n]" - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9129 - ] - }, - { - "title": "Variables", - "kind": 32, - "children": [ - 9134, - 9130 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/country/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9135, - "name": "\"src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/index.ts", - "children": [ - { - "id": 9136, - "name": "AutocompleteServiceDirectives", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "NgModule", + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 53, + "character": 24 + } + ], "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [\n StateServiceDirectiveModule\n ],\n exports: [\n StateServiceDirectiveModule,\n CountryServiceDirectiveModule\n ]\n}" + "type": "instrinct", + "name": "object" } } ], - "sources": [ + "groups": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/index.ts", - "line": 17, - "character": 42 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9136 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9099, - "name": "\"src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", - "children": [ - { - "id": 9100, - "name": "StateServiceDirectiveModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ + "title": "Constructors", + "kind": 512, + "children": [ + 2054 + ] + }, { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" - }, - "arguments": { - "obj": "{\n imports: [],\n declarations: [\n StateServiceDirective\n ],\n exports: [\n StateServiceDirective\n ],\n providers: [\n { provide: 'US_STATES', useValue: statesList },\n { provide: 'US_TERRITORIES', useValue: territoriesList }\n ]\n}" - } - } - ], - "sources": [ + "title": "Properties", + "kind": 1024, + "children": [ + 2053, + 2032, + 2033, + 2052, + 2062, + 2061, + 2056, + 2063, + 2055, + 2051, + 2050 + ] + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", - "line": 86, - "character": 40 - } - ] - }, - { - "id": 9101, - "name": "US_STATES", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "title": "Methods", + "kind": 2048, + "children": [ + 2069, + 2064, + 2066 + ] + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", - "line": 5, - "character": 15 + "title": "Object literals", + "kind": 2097152, + "children": [ + 2034, + 2042 + ] } ], - "type": { - "type": "reference", - "name": "OpaqueToken" - }, - "defaultValue": " new OpaqueToken('US_STATES')" - }, - { - "id": 9102, - "name": "US_TERRITORIES", - "kind": 32, - "kindString": "Variable", - "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", - "line": 6, - "character": 20 + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 41, + "character": 37 } ], - "type": { - "type": "reference", - "name": "OpaqueToken" - }, - "defaultValue": " new OpaqueToken('US_TERRITORIES')" - }, - { - "id": 9103, - "name": "statesList", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "extendedTypes": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", - "line": 8, - "character": 16 + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 } ], - "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9104, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9106, - "name": "abbreviation", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", - "line": 9, - "character": 33 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"AL\"" - }, - { - "id": 9105, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", - "line": 9, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Alabama\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9106, - 9105 - ] - } - ] - } - } - ] - }, - "defaultValue": " [\n { name: 'Alabama', abbreviation: 'AL'},\n { name: 'Alaska', abbreviation: 'AK'},\n { name: 'Arizona', abbreviation: 'AZ'},\n { name: 'Arkansas', abbreviation: 'AR'},\n { name: 'California', abbreviation: 'CA'},\n { name: 'Colorado', abbreviation: 'CO'},\n { name: 'Connecticut', abbreviation: 'CT'},\n { name: 'Delaware', abbreviation: 'DE'},\n { name: 'District Of Columbia', abbreviation: 'DC'},\n { name: 'Florida', abbreviation: 'FL'},\n { name: 'Georgia', abbreviation: 'GA'},\n { name: 'Hawaii', abbreviation: 'HI'},\n { name: 'Idaho', abbreviation: 'ID'},\n { name: 'Illinois', abbreviation: 'IL'},\n { name: 'Indiana', abbreviation: 'IN'},\n { name: 'Iowa', abbreviation: 'IA'},\n { name: 'Kansas', abbreviation: 'KS'},\n { name: 'Kentucky', abbreviation: 'KY'},\n { name: 'Louisiana', abbreviation: 'LA'},\n { name: 'Maine', abbreviation: 'ME'},\n { name: 'Maryland', abbreviation: 'MD'},\n { name: 'Massachusetts', abbreviation: 'MA'},\n { name: 'Michigan', abbreviation: 'MI'},\n { name: 'Minnesota', abbreviation: 'MN'},\n { name: 'Mississippi', abbreviation: 'MS'},\n { name: 'Missouri', abbreviation: 'MO'},\n { name: 'Montana', abbreviation: 'MT'},\n { name: 'Nebraska', abbreviation: 'NE'},\n { name: 'Nevada', abbreviation: 'NV'},\n { name: 'New Hampshire', abbreviation: 'NH'},\n { name: 'New Jersey', abbreviation: 'NJ'},\n { name: 'New Mexico', abbreviation: 'NM'},\n { name: 'New York', abbreviation: 'NY'},\n { name: 'North Carolina', abbreviation: 'NC'},\n { name: 'North Dakota', abbreviation: 'ND'},\n { name: 'Ohio', abbreviation: 'OH'},\n { name: 'Oklahoma', abbreviation: 'OK'},\n { name: 'Oregon', abbreviation: 'OR'},\n { name: 'Pennsylvania', abbreviation: 'PA'},\n { name: 'Rhode Island', abbreviation: 'RI'},\n { name: 'South Carolina', abbreviation: 'SC'},\n { name: 'South Dakota', abbreviation: 'SD'},\n { name: 'Tennessee', abbreviation: 'TN'},\n { name: 'Texas', abbreviation: 'TX'},\n { name: 'Utah', abbreviation: 'UT'},\n { name: 'Vermont', abbreviation: 'VT'},\n { name: 'Virgin Islands', abbreviation: 'VI'},\n { name: 'Virginia', abbreviation: 'VA'},\n { name: 'Washington', abbreviation: 'WA'},\n { name: 'West Virginia', abbreviation: 'WV'},\n { name: 'Wisconsin', abbreviation: 'WI'},\n { name: 'Wyoming', abbreviation: 'WY' }\n]" + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] }, { - "id": 9107, - "name": "territoriesList", + "id": 2072, + "name": "code_example", "kind": 32, "kindString": "Variable", "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", - "line": 63, - "character": 21 + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", + "line": 12, + "character": 16 } ], "type": { - "type": "reference", - "name": "Array", - "typeArguments": [ - { - "type": "reflection", - "declaration": { - "id": 9108, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 9110, - "name": "abbreviation", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", - "line": 64, - "character": 40 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"AS\"" - }, - { - "id": 9109, - "name": "name", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", - "line": 64, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"American Samoa\"" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9110, - 9109 - ] - } - ] - } - } - ] + "type": "instrinct", + "name": "string" }, - "defaultValue": " [\n { name: 'American Samoa', abbreviation: 'AS'},\n { name: 'Federated States of Micronesia', abbreviation: 'FM'},\n { name: 'Guam', abbreviation: 'GU'},\n { name: 'Marshall Islands', abbreviation: 'MH'},\n { name: 'Northern Mariana Islands', abbreviation: 'MP'},\n { name: 'Palau', abbreviation: 'PW'},\n { name: 'Puerto Rico', abbreviation: 'PR'}\n]" + "defaultValue": " `\n\n
    \n\n`" } ], "groups": [ @@ -203012,41 +106121,38 @@ "title": "Classes", "kind": 128, "children": [ - 9100 + 2031 ] }, { "title": "Variables", "kind": 32, "children": [ - 9101, - 9102, - 9103, - 9107 + 2072 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/index.ts", + "fileName": "src/_docs/form-controls/checkbox/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 9083, - "name": "\"src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive\"", + "id": 2099, + "name": "\"src/_docs/form-controls/date-range/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-controls/date-range/component-example.ts", "children": [ { - "id": 9084, - "name": "StateService", + "id": 2100, + "name": "SamDateRangeComponentExampleComponent", "kind": 128, "kindString": "Class", "flags": { @@ -203054,17 +106160,19 @@ }, "decorators": [ { - "name": "Injectable", + "name": "Component", "type": { "type": "reference", - "name": "Injectable" + "name": "Component" }, - "arguments": {} + "arguments": { + "obj": "{\n selector: 'doc-sam-date-range',\n template: '' + code_example + ''\n}" + } } ], "children": [ { - "id": 9085, + "id": 2111, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -203073,111 +106181,184 @@ }, "signatures": [ { - "id": 9088, - "name": "new StateService", + "id": 2114, + "name": "new SamDateRangeComponentExampleComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 9089, - "name": "states", + "id": 2115, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, - "decorators": [ - { - "name": "Inject", - "type": { - "type": "reference", - "name": "Inject" - }, - "arguments": { - "token": "'US_STATES'" - } - } - ], "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "Http" } }, { - "id": 9090, - "name": "territories", + "id": 2116, + "name": "service", "kind": 32768, "kindString": "Parameter", "flags": {}, - "decorators": [ - { - "name": "Inject", - "type": { - "type": "reference", - "name": "Inject" - }, - "arguments": { - "token": "'US_TERRITORIES'" - } - } - ], "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 2117, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { "type": "reference", - "name": "StateService", - "id": 9084 + "name": "SamDateRangeComponentExampleComponent", + "id": 2100 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", - "line": 9, - "character": 58 + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 54, + "character": 50 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 9086, - "name": "states", + "id": 2110, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { - "isConstructorProperty": true, "isExported": true, "isPublic": true }, - "decorators": [ + "sources": [ { - "name": "Inject", - "type": { - "type": "reference", - "name": "Inject" - }, - "arguments": { - "token": "'US_STATES'" - } + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 54, + "character": 13 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/form-controls/date-range/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 2103, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", - "line": 11, - "character": 48 + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 44, + "character": 16 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 9087, - "name": "territories", + "id": 2119, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 2118, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 2113, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { @@ -203185,49 +106366,159 @@ "isExported": true, "isPublic": true }, - "decorators": [ + "sources": [ { - "name": "Inject", - "type": { - "type": "reference", - "name": "Inject" - }, - "arguments": { - "token": "'US_TERRITORIES'" + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 59, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 2120, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 2112, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 58, + "character": 18 + } + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 2102, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 42, + "character": 24 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 2101, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", - "line": 12, - "character": 48 + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 41, + "character": 23 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" + }, + "defaultValue": "\"SamDateRangeComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 9093, - "name": "fetch", + "id": 2126, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 9094, - "name": "fetch", + "id": 2127, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 9095, - "name": "val", + "id": 2128, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -203235,1723 +106526,2413 @@ "type": "instrinct", "name": "string" } - }, - { - "id": 9096, - "name": "pageEnd", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "boolean" - } - }, - { - "id": 9097, - "name": "serviceOptions", - "kind": 32768, - "kindString": "Parameter", - "flags": { - "isOptional": true - }, - "type": { - "type": "instrinct", - "name": "any" - } } ], "type": { "type": "reference", - "name": "Observable", - "typeArguments": [ - { - "type": "instrinct", - "name": "any" - } - ] + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", - "line": 18, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 9091, - "name": "setFetchMethod", + "id": 2121, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 9092, - "name": "setFetchMethod", + "id": 2122, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, "type": { "type": "instrinct", - "name": "any" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", - "line": 14, - "character": 16 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] - } - ], - "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 9085 - ] - }, - { - "title": "Properties", - "kind": 1024, - "children": [ - 9086, - 9087 - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "title": "Methods", + "id": 2123, + "name": "setupTypedocContent", "kind": 2048, - "children": [ - 9093, - 9091 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", - "line": 9, - "character": 25 - } - ], - "implementedTypes": [ - { - "type": "reference", - "name": "AutocompleteService", - "id": 5749 - } - ] - }, - { - "id": 9098, - "name": "StateServiceDirective", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ - { - "name": "Directive", - "type": { - "type": "reference", - "name": "Directive" + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true }, - "arguments": { - "obj": "{\n selector: 'sam-autocomplete[state]',\n providers: [\n { provide: AutocompleteService, useClass: StateService }\n ]\n}" + "signatures": [ + { + "id": 2124, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2125, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", - "line": 50, - "character": 34 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9084, - 9098 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/autocomplete/state/state.directive.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9137, - "name": "\"src/sam-ui-elements/src/ui-kit/service-directives/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/service-directives/index.ts", - "children": [ - { - "id": 9138, - "name": "ServiceDirectivesModule", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, - "decorators": [ + }, { - "name": "NgModule", - "type": { - "type": "reference", - "name": "NgModule" + "id": 2104, + "name": "dateRangeModel", + "kind": 2097152, + "kindString": "Object literal", + "flags": { + "isExported": true, + "isPublic": true }, - "arguments": { - "obj": "{\n imports: [\n AutocompleteServiceDirectives\n ],\n declarations: [],\n exports: [\n AutocompleteServiceDirectives\n ],\n providers: []\n}" + "children": [ + { + "id": 2106, + "name": "endDate", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 47, + "character": 11 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"2017-04-23\"" + }, + { + "id": 2105, + "name": "startDate", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 46, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"2016-02-03\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 2106, + 2105 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 45, + "character": 23 + } + ], + "type": { + "type": "instrinct", + "name": "object" } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/index.ts", - "line": 16, - "character": 36 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 9138 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/service-directives/index.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6726, - "name": "\"src/sam-ui-elements/src/ui-kit/type-check-helpers\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/type-check-helpers.ts", - "children": [ - { - "id": 6733, - "name": "isArray", - "kind": 64, - "kindString": "Function", - "flags": { - "isExported": true - }, - "signatures": [ + }, { - "id": 6734, - "name": "isArray", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Returns true if type is [object Array]" + "id": 2107, + "name": "dateRangeModel2", + "kind": 2097152, + "kindString": "Object literal", + "flags": { + "isExported": true, + "isPublic": true }, - "parameters": [ + "children": [ { - "id": 6735, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, + "id": 2109, + "name": "endDate", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 51, + "character": 11 + } + ], "type": { "type": "instrinct", - "name": "any" - } + "name": "string" + }, + "defaultValue": "\"2017-04-23\"" + }, + { + "id": 2108, + "name": "startDate", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 50, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"2016-02-03\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 2109, + 2108 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 49, + "character": 24 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "object" } } ], - "sources": [ + "groups": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/type-check-helpers.ts", - "line": 18, - "character": 23 - } - ] - }, - { - "id": 6730, - "name": "isObject", - "kind": 64, - "kindString": "Function", - "flags": { - "isExported": true - }, - "signatures": [ + "title": "Constructors", + "kind": 512, + "children": [ + 2111 + ] + }, { - "id": 6731, - "name": "isObject", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Returns true if type is [object Object]" - }, - "parameters": [ - { - "id": 6732, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } + "title": "Properties", + "kind": 1024, + "children": [ + 2110, + 2103, + 2119, + 2118, + 2113, + 2120, + 2112, + 2102, + 2101 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2126, + 2121, + 2123 + ] + }, + { + "title": "Object literals", + "kind": 2097152, + "children": [ + 2104, + 2107 + ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/type-check-helpers.ts", - "line": 11, - "character": 24 + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 40, + "character": 50 } - ] - }, - { - "id": 6727, - "name": "isString", - "kind": 64, - "kindString": "Function", - "flags": { - "isExported": true - }, - "signatures": [ + ], + "extendedTypes": [ { - "id": 6728, - "name": "isString", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Returns true if passed parameter is a string" - }, - "parameters": [ - { - "id": 6729, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 } ], - "sources": [ + "implementedTypes": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/type-check-helpers.ts", - "line": 4, - "character": 24 + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" } ] }, { - "id": 6736, - "name": "safeTypeOf", - "kind": 64, - "kindString": "Function", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 6737, - "name": "safeTypeOf", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Returns string with object type\nSafest way to do JS typechecking" - }, - "parameters": [ - { - "id": 6738, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - } - ], + "id": 2129, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/type-check-helpers.ts", - "line": 26, - "character": 26 + "fileName": "src/_docs/form-controls/date-range/component-example.ts", + "line": 20, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n
    \n`" } ], "groups": [ { - "title": "Functions", - "kind": 64, + "title": "Classes", + "kind": 128, + "children": [ + 2100 + ] + }, + { + "title": "Variables", + "kind": 32, "children": [ - 6733, - 6730, - 6727, - 6736 + 2129 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/type-check-helpers.ts", + "fileName": "src/_docs/form-controls/date-range/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 3828, - "name": "\"src/sam-ui-elements/src/ui-kit/types\"", + "id": 2130, + "name": "\"src/_docs/form-controls/date-time/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/types.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-controls/date-time/component-example.ts", "children": [ { - "id": 3902, - "name": "AlertType", - "kind": 256, - "kindString": "Interface", + "id": 2131, + "name": "DateTimeExampleComponent", + "kind": 128, + "kindString": "Class", "flags": { "isExported": true }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-datetime',\n template: `\n\n` + code_example + `\n\n`\n}" + } + } + ], "children": [ { - "id": 3905, - "name": "description", - "kind": 1024, - "kindString": "Property", + "id": 2137, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the alert body text" - }, + "signatures": [ + { + "id": 2140, + "name": "new DateTimeExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 2141, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 2142, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 2143, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], + "type": { + "type": "reference", + "name": "DateTimeExampleComponent", + "id": 2131 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 286, - "character": 13 + "fileName": "src/_docs/form-controls/date-time/component-example.ts", + "line": 29, + "character": 49 } ], - "type": { - "type": "instrinct", - "name": "any" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } }, { - "id": 3907, - "name": "mustDismiss", + "id": 2136, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Explicity defines that user must dismiss alert" + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 295, + "fileName": "src/_docs/form-controls/date-time/component-example.ts", + "line": 29, "character": 13 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" + }, + "defaultValue": "\"_docs/form-controls/date-time/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 3906, - "name": "timer", + "id": 2132, + "name": "dateTime", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets a timeout (in milliseconds) for the alert to dismiss itself. 0 is\ninfinite." + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 291, - "character": 7 + "fileName": "src/_docs/form-controls/date-time/component-example.ts", + "line": 23, + "character": 17 } ], "type": { "type": "instrinct", - "name": "number" - } + "name": "string" + }, + "defaultValue": "\"2016-12-12T13:01\"" }, { - "id": 3903, - "name": "title", + "id": 2135, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the alert title" + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 278, - "character": 7 + "fileName": "src/_docs/form-controls/date-time/component-example.ts", + "line": 27, + "character": 16 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 3904, - "name": "type", + "id": 2145, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the alert type" + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 282, - "character": 6 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "any" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 3905, - 3907, - 3906, - 3903, - 3904 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 274, - "character": 26 - } - ] - }, - { - "id": 3849, - "name": "AutocompleteConfig", - "kind": 256, - "kindString": "Interface", - "flags": { - "isExported": true - }, - "children": [ + }, { - "id": 3850, - "name": "addOnIconClass", + "id": 2144, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Adds an icon inside the input" + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 86, - "character": 16 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 3851, - "name": "allowAny", + "id": 2139, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Allows any text inside the input to register as a selection" + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 90, - "character": 10 + "fileName": "src/_docs/form-controls/date-time/component-example.ts", + "line": 34, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 3855, - "name": "categoryProperty", + "id": 2146, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Set value to be used to determine if an item is a category." + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 106, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 3856, - "name": "isCategorySelectable", + "id": 2138, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Sets whether categories can be selected or not" + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 110, - "character": 22 + "fileName": "src/_docs/form-controls/date-time/component-example.ts", + "line": 33, + "character": 18 } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 3852, - "name": "keyValueConfig", + "id": 2134, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Defines the key/value configuration" + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 94, - "character": 16 + "fileName": "src/_docs/form-controls/date-time/component-example.ts", + "line": 25, + "character": 24 } ], "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { "type": "reference", - "name": "AutocompleteKeyValueConfig", - "id": 3857 + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 3853, - "name": "placeholder", + "id": 2133, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Adds optional placeholder text" + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 98, - "character": 13 + "fileName": "src/_docs/form-controls/date-time/component-example.ts", + "line": 24, + "character": 23 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"SamDateTimeComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 3854, - "name": "serviceOptions", - "kind": 1024, - "kindString": "Property", + "id": 2152, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, - "isOptional": true + "isPublic": true }, - "comment": { - "shortText": "Passes value to the custom autocomplete service fetch method call" + "signatures": [ + { + "id": 2153, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2154, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 2147, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true }, + "signatures": [ + { + "id": 2148, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 102, - "character": 16 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "type": { - "type": "instrinct", - "name": "any" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 2149, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 2150, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2151, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2137 + ] + }, { "title": "Properties", "kind": 1024, "children": [ - 3850, - 3851, - 3855, - 3856, - 3852, - 3853, - 3854 + 2136, + 2132, + 2135, + 2145, + 2144, + 2139, + 2146, + 2138, + 2134, + 2133 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2152, + 2147, + 2149 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 82, - "character": 35 + "fileName": "src/_docs/form-controls/date-time/component-example.ts", + "line": 22, + "character": 37 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" } ] }, { - "id": 3834, - "name": "AutocompleteDropdownButton", - "kind": 256, - "kindString": "Interface", + "id": 2155, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/date-time/component-example.ts", + "line": 12, + "character": 18 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2131 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 2155 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/date-time/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 2073, + "name": "\"src/_docs/form-controls/date/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-controls/date/component-example.ts", + "children": [ + { + "id": 2074, + "name": "DateExampleComponent", + "kind": 128, + "kindString": "Class", "flags": { "isExported": true }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-date',\n template: `\n\n` + code_example + `\n\n`\n}" + } + } + ], "children": [ { - "id": 3836, - "name": "class", - "kind": 1024, - "kindString": "Property", + "id": 2080, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { - "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "The class for button style" + "isExported": true }, - "sources": [ + "signatures": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 31, - "character": 7 + "id": 2083, + "name": "new DateExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 2084, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 2085, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 2086, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], + "type": { + "type": "reference", + "name": "DateExampleComponent", + "id": 2074 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 3837, - "name": "icon", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "An option icon that will appear on the button" - }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 35, - "character": 6 + "fileName": "src/_docs/form-controls/date/component-example.ts", + "line": 29, + "character": 44 } ], - "type": { + "overwrites": { "type": "reference", - "name": "AutocompleteDropdownButtonIcon", - "id": 3838 + "name": "BaseExampleComponent.__constructor", + "id": 287 } }, { - "id": 3835, - "name": "label", + "id": 2079, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "The text that appears on the button" + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 27, - "character": 7 + "fileName": "src/_docs/form-controls/date/component-example.ts", + "line": 29, + "character": 13 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"_docs/form-controls/date/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 3836, - 3837, - 3835 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 23, - "character": 43 - } - ] - }, - { - "id": 3838, - "name": "AutocompleteDropdownButtonIcon", - "kind": 256, - "kindString": "Interface", - "flags": { - "isExported": true - }, - "children": [ + }, { - "id": 3840, - "name": "altText", + "id": 2075, + "name": "dateModel", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "String for alt icon text for screen readers" + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 46, - "character": 9 + "fileName": "src/_docs/form-controls/date/component-example.ts", + "line": 23, + "character": 18 } ], "type": { "type": "instrinct", "name": "string" - } + }, + "defaultValue": "\"2016-02-03\"" }, { - "id": 3839, - "name": "class", + "id": 2078, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "String for icon clas (font-awesome, glphicon, etc)" + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 42, - "character": 7 + "fileName": "src/_docs/form-controls/date/component-example.ts", + "line": 27, + "character": 16 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 3840, - 3839 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 38, - "character": 47 - } - ] - }, - { - "id": 3857, - "name": "AutocompleteKeyValueConfig", - "kind": 256, - "kindString": "Interface", - "flags": { - "isExported": true - }, - "children": [ + }, { - "id": 3858, - "name": "keyProperty", + "id": 2088, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "The lookup value for the option" + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 117, - "character": 13 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 3859, - "name": "valueProperty", + "id": 2087, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "The human-readable value of the option" + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 121, - "character": 15 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 3858, - 3859 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 113, - "character": 43 - } - ] - }, - { - "id": 3860, - "name": "DownloadPackageType", - "kind": 256, - "kindString": "Interface", - "flags": { - "isExported": true - }, - "children": [ + }, { - "id": 3864, - "name": "access", + "id": 2082, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the packages access property" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 142, - "character": 8 + "fileName": "src/_docs/form-controls/date/component-example.ts", + "line": 34, + "character": 20 } ], "type": { "type": "reference", - "name": "AccessType", - "id": 3908 + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 3867, - "name": "accordionState", + "id": 2089, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the initial state of package accordion" + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 154, - "character": 16 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { "type": "reference", - "name": "ExpansionType", - "id": 3909 + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 3868, - "name": "downloadUrl", + "id": 2081, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the download url for the whole package" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 158, - "character": 13 + "fileName": "src/_docs/form-controls/date/component-example.ts", + "line": 33, + "character": 18 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 3862, - "name": "name", + "id": 2077, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the package name" + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 134, - "character": 6 + "fileName": "src/_docs/form-controls/date/component-example.ts", + "line": 25, + "character": 24 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 3861, - "name": "packageId", + "id": 2076, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets a package id value" + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 130, - "character": 11 + "fileName": "src/_docs/form-controls/date/component-example.ts", + "line": 24, + "character": 23 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"SamDateComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 3865, - "name": "postedDate", - "kind": 1024, - "kindString": "Property", + "id": 2095, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the posted date property" + "isExported": true, + "isPublic": true }, + "signatures": [ + { + "id": 2096, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2097, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 146, - "character": 12 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } }, { - "id": 3866, - "name": "resources", - "kind": 1024, - "kindString": "Property", + "id": 2090, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the resources in the package" + "isExported": true, + "isPublic": true }, + "signatures": [ + { + "id": 2091, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 150, - "character": 11 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "type": { + "inheritedFrom": { "type": "reference", - "isArray": true, - "name": "DownloadResourceType", - "id": 3869 + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 3863, - "name": "type", - "kind": 1024, - "kindString": "Property", + "id": 2092, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the package type" + "isExported": true, + "isPublic": true }, + "signatures": [ + { + "id": 2093, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2094, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 138, - "character": 6 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2080 + ] + }, { "title": "Properties", "kind": 1024, "children": [ - 3864, - 3867, - 3868, - 3862, - 3861, - 3865, - 3866, - 3863 + 2079, + 2075, + 2078, + 2088, + 2087, + 2082, + 2089, + 2081, + 2077, + 2076 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2095, + 2090, + 2092 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 126, - "character": 36 + "fileName": "src/_docs/form-controls/date/component-example.ts", + "line": 22, + "character": 33 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" } ] }, { - "id": 3869, - "name": "DownloadResourceType", - "kind": 256, - "kindString": "Interface", + "id": 2098, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/date/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2074 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 2098 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/date/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 2156, + "name": "\"src/_docs/form-controls/number/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-controls/number/component-example.ts", + "children": [ + { + "id": 2157, + "name": "NumberExampleComponent", + "kind": 128, + "kindString": "Class", "flags": { "isExported": true }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-number',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], "children": [ { - "id": 3872, - "name": "description", - "kind": 1024, - "kindString": "Property", + "id": 2163, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the resource description" - }, + "signatures": [ + { + "id": 2166, + "name": "new NumberExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 2167, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 2168, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 2169, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], + "type": { + "type": "reference", + "name": "NumberExampleComponent", + "id": 2157 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 172, - "character": 13 + "fileName": "src/_docs/form-controls/number/component-example.ts", + "line": 32, + "character": 46 } ], - "type": { - "type": "instrinct", - "name": "string" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } }, { - "id": 3874, - "name": "downloadUrl", + "id": 2162, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the resource download url" + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 180, + "fileName": "src/_docs/form-controls/number/component-example.ts", + "line": 32, "character": 13 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"_docs/form-controls/number/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 3871, - "name": "name", + "id": 2161, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the resource name" - }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 168, - "character": 6 + "fileName": "src/_docs/form-controls/number/component-example.ts", + "line": 30, + "character": 9 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 3870, - "name": "resourceId", + "id": 2171, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets a resource id value" + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 164, - "character": 12 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 3873, - "name": "size", + "id": 2170, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the resource filesize" + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 176, - "character": 6 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 3875, - "name": "typeInfo", + "id": 2165, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the resource type information" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 184, - "character": 10 + "fileName": "src/_docs/form-controls/number/component-example.ts", + "line": 37, + "character": 20 } ], "type": { "type": "reference", - "name": "DownloadResourceTypeInfoType", - "id": 3876 - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 3872, - 3874, - 3871, - 3870, - 3873, - 3875 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 160, - "character": 37 - } - ] - }, - { - "id": 3876, - "name": "DownloadResourceTypeInfoType", - "kind": 256, - "kindString": "Interface", - "flags": { - "isExported": true - }, - "children": [ - { - "id": 3878, - "name": "iconClass", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the font awesome icon to use for the resource" + "name": "MarkdownService", + "id": 238 }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 194, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "string" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 3877, - "name": "name", + "id": 2158, + "name": "numValue", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the resource type name" - }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 190, - "character": 6 + "fileName": "src/_docs/form-controls/number/component-example.ts", + "line": 26, + "character": 9 } ], "type": { "type": "instrinct", - "name": "string" - } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 3878, - 3877 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 186, - "character": 45 - } - ] - }, - { - "id": 3841, - "name": "HistoryNodeType", - "kind": 256, - "kindString": "Interface", - "flags": { - "isExported": true - }, - "children": [ + "name": "number" + }, + "defaultValue": "10" + }, { - "id": 3848, - "name": "ariaLabel", + "id": 2172, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Optional aria label value for node" + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 77, - "character": 11 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 3843, - "name": "date", + "id": 2164, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Date value for node" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 57, - "character": 6 + "fileName": "src/_docs/form-controls/number/component-example.ts", + "line": 36, + "character": 18 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 3847, - "name": "description", + "id": 2160, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Optional description for node" + "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 73, - "character": 13 + "fileName": "src/_docs/form-controls/number/component-example.ts", + "line": 28, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 3842, - "name": "id", + "id": 2159, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Identifier for node" - }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 53, - "character": 4 + "fileName": "src/_docs/form-controls/number/component-example.ts", + "line": 27, + "character": 15 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"SamNumberComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 3845, - "name": "queryParams", - "kind": 1024, - "kindString": "Property", + "id": 2178, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Optional query params" + "isPublic": true }, + "signatures": [ + { + "id": 2179, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2180, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 65, - "character": 13 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "type": { - "type": "instrinct", - "name": "any" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } }, { - "id": 3846, - "name": "title", - "kind": 1024, - "kindString": "Property", + "id": 2173, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Title value for node" + "isPublic": true }, + "signatures": [ + { + "id": 2174, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 69, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 3844, - "name": "url", - "kind": 1024, - "kindString": "Property", + "id": 2175, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Optional url value for title" + "isPublic": true }, + "signatures": [ + { + "id": 2176, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2177, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 61, - "character": 5 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2163 + ] + }, { "title": "Properties", "kind": 1024, "children": [ - 3848, - 3843, - 3847, - 3842, - 3845, - 3846, - 3844 + 2162, + 2161, + 2171, + 2170, + 2165, + 2158, + 2172, + 2164, + 2160, + 2159 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2178, + 2173, + 2175 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 49, - "character": 32 + "fileName": "src/_docs/form-controls/number/component-example.ts", + "line": 25, + "character": 35 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" } ] }, { - "id": 3892, - "name": "IBreadcrumb", - "kind": 256, - "kindString": "Interface", + "id": 2181, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/number/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2157 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 2181 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/number/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 2182, + "name": "\"src/_docs/form-controls/radiobutton/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-controls/radiobutton/component-example.ts", + "children": [ + { + "id": 2183, + "name": "RadioExampleComponent", + "kind": 128, + "kindString": "Class", "flags": { "isExported": true }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-radio',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], "children": [ { - "id": 3895, - "name": "breadcrumb", + "id": 2199, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 2202, + "name": "new RadioExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 2203, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 2204, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 2205, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], + "type": { + "type": "reference", + "name": "RadioExampleComponent", + "id": 2183 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 47, + "character": 51 + } + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 2198, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 47, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/form-controls/radiobutton/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 2197, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { @@ -204959,1663 +108940,2187 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 251, - "character": 12 + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 45, + "character": 9 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 3896, - "name": "queryParams", + "id": 2207, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 252, - "character": 13 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 3893, - "name": "url", + "id": 2206, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 249, - "character": 5 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 3894, - "name": "urlmock", + "id": 2201, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, - "isOptional": true + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 250, - "character": 9 + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 52, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 3895, - 3896, - 3893, - 3894 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 248, - "character": 28 - } - ] - }, - { - "id": 3897, - "name": "NameEntryType", - "kind": 256, - "kindString": "Interface", - "flags": { - "isExported": true - }, - "children": [ + }, { - "id": 3898, - "name": "firstName", + "id": 2184, + "name": "radioModel", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the first name field" - }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 259, + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 30, "character": 11 } ], "type": { "type": "instrinct", - "name": "string" - } + "name": "any" + }, + "defaultValue": "\"ma\"" }, { - "id": 3900, - "name": "lastName", + "id": 2208, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the last name field" + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 267, - "character": 10 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 3899, - "name": "middleName", + "id": 2200, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true - }, - "comment": { - "shortText": "Sets the middle name field" + "isConstructorProperty": true, + "isExported": true, + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 263, - "character": 12 + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 51, + "character": 18 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 } }, { - "id": 3901, - "name": "suffix", + "id": 2196, + "name": "typedoc_content", "kind": 1024, "kindString": "Property", "flags": { "isExported": true }, - "comment": { - "shortText": "Sets the suffix field" - }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 271, - "character": 8 + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 43, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } - } - ], - "groups": [ - { - "title": "Properties", - "kind": 1024, - "children": [ - 3898, - 3900, - 3899, - 3901 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 255, - "character": 30 - } - ] - }, - { - "id": 3829, - "name": "OptionsType", - "kind": 256, - "kindString": "Interface", - "flags": { - "isExported": true - }, - "children": [ + }, { - "id": 3833, - "name": "disabled", + "id": 2195, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "if true, the option is greyed out and not clickable" + "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 20, - "character": 10 + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 42, + "character": 16 } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "string" + }, + "defaultValue": "\"SamRadioButtonComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 3831, - "name": "label", - "kind": 1024, - "kindString": "Property", + "id": 2214, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true - }, - "comment": { - "shortText": "The visible text for the input or option" + "isExported": true, + "isPublic": true }, + "signatures": [ + { + "id": 2215, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2216, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 12, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } }, { - "id": 3832, - "name": "name", - "kind": 1024, - "kindString": "Property", + "id": 2209, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true - }, - "comment": { - "shortText": "The machine readable description of the input" + "isExported": true, + "isPublic": true }, + "signatures": [ + { + "id": 2210, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 16, - "character": 6 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 3830, - "name": "value", - "kind": 1024, - "kindString": "Property", + "id": 2211, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", "flags": { - "isExported": true - }, - "comment": { - "shortText": "The model value" + "isExported": true, + "isPublic": true }, + "signatures": [ + { + "id": 2212, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2213, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 8, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "union", - "types": [ - { + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + }, + { + "id": 2185, + "name": "radioConfig", + "kind": 2097152, + "kindString": "Object literal", + "flags": { + "isExported": true + }, + "children": [ + { + "id": 2193, + "name": "errorMessage", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 39, + "character": 16 + } + ], + "type": { "type": "instrinct", "name": "string" }, - { + "defaultValue": "\"\"" + }, + { + "id": 2194, + "name": "hint", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 40, + "character": 8 + } + ], + "type": { "type": "instrinct", - "name": "number" - } - ] + "name": "string" + }, + "defaultValue": "\"\"" + }, + { + "id": 2192, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 38, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Select a region\"" + }, + { + "id": 2191, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 37, + "character": 8 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"radio-component\"" + }, + { + "id": 2186, + "name": "options", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 32, + "character": 11 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 2187, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2189, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 33, + "character": 25 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"DC\"" + }, + { + "id": 2190, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 33, + "character": 37 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"radio-dc\"" + }, + { + "id": 2188, + "name": "value", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 33, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"dc\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 2189, + 2190, + 2188 + ] + } + ] + } + } + ] + }, + "defaultValue": " [\n {value: 'dc', label: 'DC', name: 'radio-dc'},\n {value: 'ma', label: 'Maryland', name: 'radio-maryland'},\n {value: 'va', label: 'Virginia', name: 'radio-virginia'},\n ]" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 2193, + 2194, + 2192, + 2191, + 2186 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 31, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "object" } } ], "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2199 + ] + }, { "title": "Properties", "kind": 1024, "children": [ - 3833, - 3831, - 3832, - 3830 + 2198, + 2197, + 2207, + 2206, + 2201, + 2184, + 2208, + 2200, + 2196, + 2195 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2214, + 2209, + 2211 + ] + }, + { + "title": "Object literals", + "kind": 2097152, + "children": [ + 2185 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 4, - "character": 28 + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 29, + "character": 34 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" } ] }, { - "id": 3879, - "name": "PointOfContactType", - "kind": 256, - "kindString": "Interface", + "id": 2217, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2183 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 2217 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/radiobutton/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 2218, + "name": "\"src/_docs/form-controls/select/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-controls/select/component-example.ts", + "children": [ + { + "id": 2219, + "name": "SelectExampleComponent", + "kind": 128, + "kindString": "Class", "flags": { "isExported": true }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-select',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], "children": [ { - "id": 3882, - "name": "address", + "id": 2234, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 2237, + "name": "new SelectExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 2238, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 2239, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 2240, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], + "type": { + "type": "reference", + "name": "SelectExampleComponent", + "id": 2219 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 45, + "character": 46 + } + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 2233, + "name": "base", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Sets the primary address property" + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 209, - "character": 9 + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 45, + "character": 13 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"_docs/form-controls/select/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 3883, - "name": "address2", + "id": 2232, + "name": "example", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Sets the secondary address property" + "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 213, - "character": 10 + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 43, + "character": 9 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 3884, - "name": "city", + "id": 2242, + "name": "guidance", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Sets the city name property" + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 217, - "character": 6 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 3887, - "name": "email", + "id": 2241, + "name": "markdown", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Sets the email property" + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 229, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 3890, - "name": "fax", + "id": 2236, + "name": "mdService", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Sets the fax number property" + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 241, - "character": 5 + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 50, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 3880, - "name": "fullName", + "id": 2243, + "name": "sections", "kind": 1024, "kindString": "Property", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Sets the full name property" + "isPublic": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 201, - "character": 10 + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 } }, { - "id": 3888, - "name": "phone", + "id": 2220, + "name": "selectModel", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Sets the primary phone property" + "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 233, - "character": 7 + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 28, + "character": 12 } ], "type": { "type": "instrinct", "name": "string" - } + }, + "defaultValue": "\"\"" }, { - "id": 3889, - "name": "phone2", + "id": 2235, + "name": "service", "kind": 1024, "kindString": "Property", "flags": { + "isConstructorProperty": true, "isExported": true, - "isOptional": true + "isPublic": true }, - "comment": { - "shortText": "Sets the secondary phone property" + "sources": [ + { + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 49, + "character": 18 + } + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 2231, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 237, - "character": 8 + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 41, + "character": 17 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 3885, - "name": "state", + "id": 2230, + "name": "typedoc_target", "kind": 1024, "kindString": "Property", "flags": { - "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Sets the state property" + "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 221, - "character": 7 + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 40, + "character": 16 } ], "type": { "type": "instrinct", "name": "string" + }, + "defaultValue": "\"SamSelectComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 3881, - "name": "title", - "kind": 1024, - "kindString": "Property", + "id": 2249, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, - "isOptional": true + "isPublic": true }, - "comment": { - "shortText": "Sets the title property" + "signatures": [ + { + "id": 2250, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2251, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 2244, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true }, + "signatures": [ + { + "id": 2245, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 205, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 3891, - "name": "website", - "kind": 1024, - "kindString": "Property", + "id": 2246, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", "flags": { "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Sets the website url" + "isPublic": true }, + "signatures": [ + { + "id": 2247, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 2248, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } + } + ], + "type": { + "type": "instrinct", + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 245, - "character": 9 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "string" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } }, { - "id": 3886, - "name": "zip", - "kind": 1024, - "kindString": "Property", + "id": 2221, + "name": "selectConfig", + "kind": 2097152, + "kindString": "Object literal", "flags": { - "isExported": true, - "isOptional": true - }, - "comment": { - "shortText": "Sets the zip code property" + "isExported": true }, + "children": [ + { + "id": 2227, + "name": "disabled", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 36, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "false" + }, + { + "id": 2228, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 37, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Region\"" + }, + { + "id": 2229, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 38, + "character": 8 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"region\"" + }, + { + "id": 2222, + "name": "options", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 30, + "character": 11 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 2223, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 2225, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 32, + "character": 25 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Washington DC\"" + }, + { + "id": 2226, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 32, + "character": 48 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"dc\"" + }, + { + "id": 2224, + "name": "value", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 32, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"dc\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 2225, + 2226, + 2224 + ] + } + ] + } + } + ] + }, + "defaultValue": " [\n {value:'', label: 'Default option', name: 'empty', disabled: true},\n {value: 'dc', label: 'Washington DC', name: 'dc'},\n {value: 'ma', label: 'Maryland', name: 'maryland'},\n {value: 'va', label: 'Virginia', name: 'virginia'},\n ]" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 2227, + 2228, + 2229, + 2222 + ] + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 225, - "character": 5 + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 29, + "character": 14 } ], "type": { "type": "instrinct", - "name": "string" + "name": "object" } } ], "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2234 + ] + }, { "title": "Properties", "kind": 1024, "children": [ - 3882, - 3883, - 3884, - 3887, - 3890, - 3880, - 3888, - 3889, - 3885, - 3881, - 3891, - 3886 + 2233, + 2232, + 2242, + 2241, + 2236, + 2243, + 2220, + 2235, + 2231, + 2230 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2249, + 2244, + 2246 + ] + }, + { + "title": "Object literals", + "kind": 2097152, + "children": [ + 2221 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 197, + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 27, "character": 35 } - ] - }, - { - "id": 3908, - "name": "AccessType", - "kind": 4194304, - "kindString": "Type alias", - "flags": { - "isExported": true - }, - "sources": [ + ], + "extendedTypes": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 124, - "character": 22 + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 } ], - "type": { - "type": "union", - "types": [ - { - "type": "stringLiteral", - "value": "Public" - }, - { - "type": "stringLiteral", - "value": "Private" - } - ] - } + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] }, { - "id": 3909, - "name": "ExpansionType", - "kind": 4194304, - "kindString": "Type alias", - "flags": { - "isExported": true - }, + "id": 2252, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", - "line": 125, - "character": 25 + "fileName": "src/_docs/form-controls/select/component-example.ts", + "line": 12, + "character": 16 } ], "type": { - "type": "union", - "types": [ - { - "type": "stringLiteral", - "value": "collapsed" - }, - { - "type": "stringLiteral", - "value": "expanded" - } - ] - } + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n`" } ], "groups": [ { - "title": "Interfaces", - "kind": 256, + "title": "Classes", + "kind": 128, "children": [ - 3902, - 3849, - 3834, - 3838, - 3857, - 3860, - 3869, - 3876, - 3841, - 3892, - 3897, - 3829, - 3879 + 2219 ] }, { - "title": "Type aliases", - "kind": 4194304, + "title": "Variables", + "kind": 32, "children": [ - 3908, - 3909 + 2252 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/types.ts", + "fileName": "src/_docs/form-controls/select/component-example.ts", "line": 1, "character": 0 } ] }, { - "id": 6522, - "name": "\"src/sam-ui-elements/src/ui-kit/utilities/are-equal/are-equal\"", + "id": 2253, + "name": "\"src/_docs/form-controls/text/component-example\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/utilities/are-equal/are-equal.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-controls/text/component-example.ts", "children": [ { - "id": 6523, - "name": "areEqual", - "kind": 64, - "kindString": "Function", + "id": 2254, + "name": "TextExampleComponent", + "kind": 128, + "kindString": "Class", "flags": { "isExported": true }, - "signatures": [ + "decorators": [ { - "id": 6524, - "name": "areEqual", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "comment": { - "shortText": "Checks if two items are equal by value rather than reference", - "returns": "\n" - }, - "parameters": [ - { - "id": 6525, - "name": "item1", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "The item in question" - }, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 6526, - "name": "item2", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "comment": { - "text": "An item to compare against" - }, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], + "name": "Component", "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-text',\n template: `\n\n`+code_example+`\n\n`\n}" } } ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/are-equal/are-equal.ts", - "line": 9, - "character": 24 - } - ] - } - ], - "groups": [ - { - "title": "Functions", - "kind": 64, - "children": [ - 6523 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/are-equal/are-equal.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 6486, - "name": "\"src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", - "children": [ - { - "id": 6487, - "name": "KeyHelper", - "kind": 128, - "kindString": "Class", - "flags": { - "isExported": true - }, "children": [ { - "id": 6498, - "name": "_isArrowDown", - "kind": 2048, - "kindString": "Method", + "id": 2266, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { - "isStatic": true, - "isPrivate": true, "isExported": true }, "signatures": [ { - "id": 6499, - "name": "_isArrowDown", - "kind": 4096, - "kindString": "Call signature", + "id": 2269, + "name": "new TextExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 6500, - "name": "e", + "id": 2270, + "name": "_http", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "KeyboardEvent" - }, - { - "type": "instrinct", - "name": "any" - } - ] + "type": "reference", + "name": "Http" } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", - "line": 57, - "character": 29 - } - ] - }, - { - "id": 6501, - "name": "_isArrowLeft", - "kind": 2048, - "kindString": "Method", - "flags": { - "isStatic": true, - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 6502, - "name": "_isArrowLeft", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ + }, { - "id": 6503, - "name": "e", + "id": 2271, + "name": "service", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "KeyboardEvent" - }, - { - "type": "instrinct", - "name": "any" - } - ] + "type": "reference", + "name": "DocumentationService", + "id": 148 } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", - "line": 70, - "character": 29 - } - ] - }, - { - "id": 6504, - "name": "_isArrowRight", - "kind": 2048, - "kindString": "Method", - "flags": { - "isStatic": true, - "isPrivate": true, - "isExported": true - }, - "signatures": [ - { - "id": 6505, - "name": "_isArrowRight", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ + }, { - "id": 6506, - "name": "e", + "id": 2272, + "name": "mdService", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "KeyboardEvent" - }, - { - "type": "instrinct", - "name": "any" - } - ] + "type": "reference", + "name": "MarkdownService", + "id": 238 } } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "TextExampleComponent", + "id": 2254 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", - "line": 83, - "character": 30 + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 43, + "character": 44 } - ] + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } }, { - "id": 6495, - "name": "_isArrowUp", - "kind": 2048, - "kindString": "Method", + "id": 2265, + "name": "base", + "kind": 1024, + "kindString": "Property", "flags": { - "isStatic": true, - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ - { - "id": 6496, - "name": "_isArrowUp", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6497, - "name": "e", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "KeyboardEvent" - }, - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", - "line": 44, - "character": 27 + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 43, + "character": 13 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/form-controls/text/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } }, { - "id": 6519, - "name": "_isBackspace", - "kind": 2048, - "kindString": "Method", + "id": 2264, + "name": "example", + "kind": 1024, + "kindString": "Property", "flags": { - "isStatic": true, - "isPrivate": true, "isExported": true }, - "signatures": [ + "sources": [ { - "id": 6520, - "name": "_isBackspace", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6521, - "name": "e", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "KeyboardEvent" - }, - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 41, + "character": 9 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 2274, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", - "line": 147, - "character": 29 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } }, { - "id": 6492, - "name": "_isEnter", - "kind": 2048, - "kindString": "Method", + "id": 2273, + "name": "markdown", + "kind": 1024, + "kindString": "Property", "flags": { - "isStatic": true, - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 6493, - "name": "_isEnter", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6494, - "name": "e", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "KeyboardEvent" - }, - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 2268, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", - "line": 31, - "character": 25 + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 48, + "character": 20 } - ] + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } }, { - "id": 6510, - "name": "_isEscape", - "kind": 2048, - "kindString": "Method", + "id": 2275, + "name": "sections", + "kind": 1024, + "kindString": "Property", "flags": { - "isStatic": true, - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, - "signatures": [ + "sources": [ { - "id": 6511, - "name": "_isEscape", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6512, - "name": "e", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "KeyboardEvent" - }, - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", - "name": "boolean" + "name": "string" } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 2267, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 47, + "character": 18 } ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 2255, + "name": "textModel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", - "line": 108, - "character": 26 + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 30, + "character": 10 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Some Text\"" }, { - "id": 6516, - "name": "_isShift", - "kind": 2048, - "kindString": "Method", + "id": 2263, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", "flags": { - "isStatic": true, - "isPrivate": true, "isExported": true }, - "signatures": [ + "sources": [ { - "id": 6517, - "name": "_isShift", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 6518, - "name": "e", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "KeyboardEvent" - }, - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - } + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 39, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 2262, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", - "line": 134, - "character": 25 + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 38, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamTextComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } }, { - "id": 6513, - "name": "_isSpace", + "id": 2281, + "name": "fetchSection", "kind": 2048, "kindString": "Method", "flags": { - "isStatic": true, - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 6514, - "name": "_isSpace", + "id": 2282, + "name": "fetchSection", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 6515, - "name": "e", + "id": 2283, + "name": "section", "kind": 32768, "kindString": "Parameter", "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "KeyboardEvent" - }, - { - "type": "instrinct", - "name": "any" - } - ] + "type": { + "type": "instrinct", + "name": "string" } } ], "type": { - "type": "instrinct", - "name": "boolean" + "type": "reference", + "name": "Subscription" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", - "line": 121, - "character": 25 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } }, { - "id": 6507, - "name": "_isTab", + "id": 2276, + "name": "ngOnInit", "kind": 2048, "kindString": "Method", "flags": { - "isStatic": true, - "isPrivate": true, - "isExported": true + "isExported": true, + "isPublic": true }, "signatures": [ { - "id": 6508, - "name": "_isTab", + "id": 2277, + "name": "ngOnInit", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 6509, - "name": "e", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "KeyboardEvent" - }, - { - "type": "instrinct", - "name": "any" - } - ] - } - } - ], "type": { "type": "instrinct", - "name": "boolean" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", - "line": 96, - "character": 23 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } - ] + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } }, { - "id": 6488, - "name": "is", + "id": 2278, + "name": "setupTypedocContent", "kind": 2048, "kindString": "Method", "flags": { - "isStatic": true, "isExported": true, "isPublic": true }, "signatures": [ { - "id": 6489, - "name": "is", + "id": 2279, + "name": "setupTypedocContent", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 6490, - "name": "validKeyParam", + "id": 2280, + "name": "obj", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "instrinct", - "name": "string" - } - }, - { - "id": 6491, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "union", - "types": [ - { - "type": "reference", - "name": "KeyboardEvent" - }, - { - "type": "instrinct", - "name": "any" - } - ] + "name": "any" } } ], "type": { "type": "instrinct", - "name": "boolean" + "name": "void" + }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", - "line": 3, - "character": 18 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } - ] - } - ], - "groups": [ - { - "title": "Methods", - "kind": 2048, - "children": [ - 6498, - 6501, - 6504, - 6495, - 6519, - 6492, - 6510, - 6516, - 6513, - 6507, - 6488 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", - "line": 1, - "character": 22 - } - ] - } - ], - "groups": [ - { - "title": "Classes", - "kind": 128, - "children": [ - 6487 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-helper.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 9545, - "name": "\"src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "children": [ - { - "id": 9546, - "name": "ChromeFirefoxMocks", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + }, { - "id": 9610, - "name": "backspace", + "id": 2256, + "name": "textConfig", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExported": true + }, "children": [ { - "id": 9611, - "name": "charCode", + "id": 2261, + "name": "disabled", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 75, + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 36, "character": 12 } ], "type": { "type": "instrinct", - "name": "number" + "name": "boolean" }, - "defaultValue": "0" + "defaultValue": "false" }, { - "id": 9612, - "name": "code", + "id": 2259, + "name": "errorMessage", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 76, - "character": 8 + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 34, + "character": 16 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"Backspace\"" + "defaultValue": "\"Uh-oh, something went wrong\"" }, { - "id": 9613, - "name": "key", + "id": 2258, + "name": "hint", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 77, - "character": 7 + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 33, + "character": 8 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"Backspace\"" + "defaultValue": "\"Zipcode can be short or long version\"" }, { - "id": 9614, - "name": "keyCode", + "id": 2257, + "name": "label", "kind": 32, "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 78, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" + "flags": { + "isExported": true }, - "defaultValue": "8" - }, - { - "id": 9615, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 79, - "character": 17 + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 32, + "character": 9 } ], "type": { "type": "instrinct", - "name": "undefined" + "name": "string" }, - "defaultValue": " undefined" + "defaultValue": "\"Enter zipcode\"" }, { - "id": 9616, - "name": "which", + "id": 2260, + "name": "name", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 80, - "character": 9 + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 35, + "character": 8 } ], "type": { "type": "instrinct", - "name": "number" + "name": "string" }, - "defaultValue": "8" + "defaultValue": "\"aria-friendly-name\"" } ], "groups": [ @@ -206623,739 +111128,773 @@ "title": "Variables", "kind": 32, "children": [ - 9611, - 9612, - 9613, - 9614, - 9615, - 9616 + 2261, + 2259, + 2258, + 2257, + 2260 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 74, - "character": 11 + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 31, + "character": 12 } ], "type": { "type": "instrinct", "name": "object" } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2266 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 2265, + 2264, + 2274, + 2273, + 2268, + 2275, + 2267, + 2255, + 2263, + 2262 + ] }, { - "id": 9561, - "name": "down", + "title": "Methods", + "kind": 2048, + "children": [ + 2281, + 2276, + 2278 + ] + }, + { + "title": "Object literals", "kind": 2097152, - "kindString": "Object literal", - "flags": {}, "children": [ + 2256 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 29, + "character": 33 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 2284, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2254 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 2284 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/text/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 2285, + "name": "\"src/_docs/form-controls/textarea/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-controls/textarea/component-example.ts", + "children": [ + { + "id": 2286, + "name": "TextareaExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-textarea',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], + "children": [ + { + "id": 2298, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 9562, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 19, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9563, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 20, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, - { - "id": 9564, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 21, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, - { - "id": 9565, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2301, + "name": "new TextareaExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 22, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 9566, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2302, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 23, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9567, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2303, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 24, - "character": 9 + "id": 2304, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "TextareaExampleComponent", + "id": 2286 }, - "defaultValue": "40" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9562, - 9563, - 9564, - 9565, - 9566, - 9567 - ] + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 50, + "character": 48 } ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 2297, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 18, - "character": 6 + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 50, + "character": 13 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"_docs/form-controls/textarea/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 9547, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9548, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 3, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 9549, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 4, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 9550, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 5, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 9551, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 6, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 9552, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 7, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "id": 2296, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 9553, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 8, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 41, + "character": 8 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n`", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 2306, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9548, - 9549, - 9550, - 9551, - 9552, - 9553 - ] + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 2305, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 2, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 9589, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9590, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 51, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 2300, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9591, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 52, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Escape\"" - }, + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 55, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 2307, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9592, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 53, - "character": 7 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"Escape\"" - }, - { - "id": 9593, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 54, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - }, - { - "id": 9594, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 55, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 2299, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9595, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 56, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 54, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 2287, + "name": "textareaModel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9590, - 9591, - 9592, - 9593, - 9594, - 9595 - ] + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 30, + "character": 14 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Some Text\"" + }, + { + "id": 2295, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 50, - "character": 5 + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 39, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 } }, { - "id": 9568, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9569, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 27, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 2294, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 9570, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 28, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowLeft\"" - }, + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 38, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamTextareaComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } + }, + { + "id": 2313, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9571, - "name": "key", - "kind": 32, - "kindString": "Variable", + "id": 2314, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 29, - "character": 7 + "id": 2315, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Subscription" }, - "defaultValue": "\"ArrowLeft\"" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ { - "id": 9572, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 30, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 2308, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9573, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", + "id": 2309, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 31, - "character": 17 - } - ], "type": { "type": "instrinct", - "name": "undefined" + "name": "void" }, - "defaultValue": " undefined" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ { - "id": 9574, - "name": "which", - "kind": 32, - "kindString": "Variable", + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 2310, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 2311, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 32, - "character": 9 + "id": 2312, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "37" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9569, - 9570, - 9571, - 9572, - 9573, - 9574 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 26, - "character": 6 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } }, { - "id": 9575, - "name": "right", + "id": 2288, + "name": "textareaConfig", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExported": true + }, "children": [ { - "id": 9576, - "name": "charCode", + "id": 2293, + "name": "disabled", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 35, + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 36, "character": 12 } ], "type": { "type": "instrinct", - "name": "number" + "name": "boolean" }, - "defaultValue": "0" + "defaultValue": "false" }, { - "id": 9577, - "name": "code", + "id": 2291, + "name": "errorMessage", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 36, - "character": 8 + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 34, + "character": 16 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"ArrowRight\"" + "defaultValue": "\"Uh-oh, something went wrong\"" }, { - "id": 9578, - "name": "key", + "id": 2290, + "name": "hint", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 37, - "character": 7 + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 33, + "character": 8 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"ArrowRight\"" + "defaultValue": "\"Zipcode can be short or long version\"" }, { - "id": 9579, - "name": "keyCode", + "id": 2289, + "name": "label", "kind": 32, "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 38, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" + "flags": { + "isExported": true }, - "defaultValue": "39" - }, - { - "id": 9580, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 39, - "character": 17 + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 32, + "character": 9 } ], "type": { "type": "instrinct", - "name": "undefined" + "name": "string" }, - "defaultValue": " undefined" + "defaultValue": "\"Enter zipcode\"" }, { - "id": 9581, - "name": "which", + "id": 2292, + "name": "name", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 40, - "character": 9 + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 35, + "character": 8 } ], "type": { "type": "instrinct", - "name": "number" + "name": "string" }, - "defaultValue": "39" + "defaultValue": "\"aria-friendly-name\"" } ], "groups": [ @@ -207363,1221 +111902,1984 @@ "title": "Variables", "kind": 32, "children": [ - 9576, - 9577, - 9578, - 9579, - 9580, - 9581 + 2293, + 2291, + 2290, + 2289, + 2292 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 34, - "character": 7 + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 31, + "character": 16 } ], "type": { "type": "instrinct", "name": "object" } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2298 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 2297, + 2296, + 2306, + 2305, + 2300, + 2307, + 2299, + 2287, + 2295, + 2294 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2313, + 2308, + 2310 + ] }, { - "id": 9603, - "name": "shift", + "title": "Object literals", "kind": 2097152, - "kindString": "Object literal", - "flags": {}, "children": [ + 2288 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 29, + "character": 37 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 2316, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2286 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 2316 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/textarea/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 2317, + "name": "\"src/_docs/form-controls/time/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-controls/time/component-example.ts", + "children": [ + { + "id": 2318, + "name": "TimeExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-time',\n template: `\n\n`+code_example+`\n
    \n
    \n`\n}" + } + } + ], + "children": [ + { + "id": 2324, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 9604, - "name": "charCode", - "kind": 32, - "kindString": "Variable", + "id": 2327, + "name": "new TimeExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 67, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9605, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2328, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 68, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ShiftLeft\"" - }, - { - "id": 9606, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2329, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 69, - "character": 7 + "id": 2330, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "TimeExampleComponent", + "id": 2318 }, - "defaultValue": "\"Shift\"" - }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], + "sources": [ { - "id": 9607, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 70, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, + "fileName": "src/_docs/form-controls/time/component-example.ts", + "line": 30, + "character": 44 + } + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 2323, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9608, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 71, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/form-controls/time/component-example.ts", + "line": 30, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/form-controls/time/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 2322, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 9609, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 72, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" + "fileName": "src/_docs/form-controls/time/component-example.ts", + "line": 28, + "character": 9 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 2332, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9604, - 9605, - 9606, - 9607, - 9608, - 9609 - ] + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 2331, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 66, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 9596, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 2326, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9597, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 59, - "character": 12 - } - ], - "type": { + "fileName": "src/_docs/form-controls/time/component-example.ts", + "line": 35, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 2333, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "name": "string" + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 2325, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9598, - "name": "code", - "kind": 32, - "kindString": "Variable", + "fileName": "src/_docs/form-controls/time/component-example.ts", + "line": 34, + "character": 18 + } + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 2319, + "name": "time", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/time/component-example.ts", + "line": 24, + "character": 5 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"13:01\"" + }, + { + "id": 2321, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/time/component-example.ts", + "line": 26, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 2320, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-controls/time/component-example.ts", + "line": 25, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SamTimeComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 + } + }, + { + "id": 2339, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 2340, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 60, - "character": 8 + "id": 2341, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Subscription" }, - "defaultValue": "\"Space\"" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ { - "id": 9599, - "name": "key", - "kind": 32, - "kindString": "Variable", + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 2334, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 2335, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 61, - "character": 7 - } - ], "type": { "type": "instrinct", - "name": "string" + "name": "void" }, - "defaultValue": "\" \"" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ { - "id": 9600, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 2336, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 2337, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 62, - "character": 11 + "id": 2338, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "32" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "sources": [ { - "id": 9601, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2324 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 2323, + 2322, + 2332, + 2331, + 2326, + 2333, + 2325, + 2319, + 2321, + 2320 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2339, + 2334, + 2336 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/time/component-example.ts", + "line": 23, + "character": 33 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 2342, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/time/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2318 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 2342 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/time/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 2343, + "name": "\"src/_docs/form-controls/toggle-switch/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-controls/toggle-switch/component-example.ts", + "children": [ + { + "id": 2344, + "name": "ToggleSwitchExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-toggle-switch',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], + "children": [ + { + "id": 2349, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 2352, + "name": "new ToggleSwitchExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 63, - "character": 17 + "id": 2353, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 2354, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 2355, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "undefined" + "type": "reference", + "name": "ToggleSwitchExampleComponent", + "id": 2344 }, - "defaultValue": " undefined" - }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", + "line": 33, + "character": 53 + } + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 2348, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9602, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 64, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" + "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", + "line": 33, + "character": 13 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/form-controls/toggle-switch/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 2347, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9597, - 9598, - 9599, - 9600, - 9601, - 9602 - ] + "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", + "line": 31, + "character": 9 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 2357, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 58, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 9582, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 2356, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9583, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 43, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 2351, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9584, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 44, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, + "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", + "line": 38, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 2358, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9585, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 45, - "character": 7 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 9586, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 46, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - }, - { - "id": 9587, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 47, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 2350, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9588, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 48, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" + "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", + "line": 37, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 2346, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9583, - 9584, - 9585, - 9586, - 9587, - 9588 - ] + "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", + "line": 29, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 2345, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 42, - "character": 5 + "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", + "line": 28, + "character": 15 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"SamToggleSwitchComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 9554, - "name": "up", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9555, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 11, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 2364, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9556, - "name": "code", - "kind": 32, - "kindString": "Variable", + "id": 2365, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 12, - "character": 8 + "id": 2366, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Subscription" }, - "defaultValue": "\"ArrowUp\"" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ { - "id": 9557, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 13, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowUp\"" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 2359, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9558, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2360, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 14, - "character": 11 - } - ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "38" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ { - "id": 9559, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 15, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 2361, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9560, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 2362, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 16, - "character": 9 + "id": 2363, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "38" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9555, - 9556, - 9557, - 9558, - 9559, - 9560 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 10, - "character": 4 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "groups": [ { - "title": "Object literals", - "kind": 2097152, + "title": "Constructors", + "kind": 512, + "children": [ + 2349 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 2348, + 2347, + 2357, + 2356, + 2351, + 2358, + 2350, + 2346, + 2345 + ] + }, + { + "title": "Methods", + "kind": 2048, "children": [ - 9610, - 9561, - 9547, - 9589, - 9568, - 9575, - 9603, - 9596, - 9582, - 9554 + 2364, + 2359, + 2361 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 1, - "character": 24 + "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", + "line": 26, + "character": 41 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 2367, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", + "line": 12, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": " `
    \n
    \n \n
    \n
    `" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2344 + ] }, { - "id": 9688, - "name": "EdgeMocks", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, + "title": "Variables", + "kind": 32, + "children": [ + 2367 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-controls/toggle-switch/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 2368, + "name": "\"src/_docs/form-templates/name-entry/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-templates/name-entry/component-example.ts", + "children": [ + { + "id": 2369, + "name": "NameEntryExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-name-entry',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], "children": [ { - "id": 9752, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9753, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 241, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 2380, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 9754, - "name": "code", - "kind": 32, - "kindString": "Variable", + "id": 2383, + "name": "new NameEntryExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 242, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9755, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2384, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 243, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 9756, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2385, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 244, - "character": 11 + "id": 2386, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "NameEntryExampleComponent", + "id": 2369 }, - "defaultValue": "8" - }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + } + ], + "sources": [ { - "id": 9757, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 245, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 35, + "character": 51 + } + ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 2379, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9758, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 246, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 35, + "character": 13 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/form-templates/name-entry/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 + } + }, + { + "id": 2378, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9753, - 9754, - 9755, - 9756, - 9757, - 9758 - ] + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 33, + "character": 9 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 2388, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 240, - "character": 11 + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 } }, { - "id": 9703, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 2387, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9704, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 185, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 2382, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9705, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 186, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 40, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 2389, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9706, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 187, - "character": 7 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"Down\"" - }, - { - "id": 9707, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 188, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 9708, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 189, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 2381, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9709, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 190, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 39, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 2377, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9704, - 9705, - 9706, - 9707, - 9708, - 9709 - ] + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 31, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 2376, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 184, - "character": 6 + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 30, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"SamNameEntryComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 9689, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9690, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 169, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 2395, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9691, - "name": "code", - "kind": 32, - "kindString": "Variable", + "id": 2396, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 170, - "character": 8 + "id": 2397, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "undefined" + "type": "reference", + "name": "Subscription" }, - "defaultValue": " undefined" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ { - "id": 9692, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 171, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 2390, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9693, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2391, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 172, - "character": 11 - } - ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "13" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ { - "id": 9694, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 173, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 2392, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9695, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 2393, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 174, - "character": 9 + "id": 2394, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "13" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9690, - 9691, - 9692, - 9693, - 9694, - 9695 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 168, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } }, { - "id": 9731, - "name": "esc", + "id": 2370, + "name": "nameModel", "kind": 2097152, "kindString": "Object literal", - "flags": {}, + "flags": { + "isExported": true + }, "children": [ { - "id": 9732, - "name": "charCode", + "id": 2372, + "name": "firstName", "kind": 32, "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 217, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" + "flags": { + "isExported": true }, - "defaultValue": "0" - }, - { - "id": 9733, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 218, - "character": 8 + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 25, + "character": 13 } ], "type": { "type": "instrinct", - "name": "undefined" + "name": "string" }, - "defaultValue": " undefined" + "defaultValue": "\"John\"" }, { - "id": 9734, - "name": "key", + "id": 2374, + "name": "lastName", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 219, - "character": 7 + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 27, + "character": 12 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"Esc\"" + "defaultValue": "\"Doe\"" }, { - "id": 9735, - "name": "keyCode", + "id": 2373, + "name": "middleName", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 220, - "character": 11 + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 26, + "character": 14 } ], "type": { "type": "instrinct", - "name": "number" + "name": "string" }, - "defaultValue": "27" + "defaultValue": "\"\"" }, { - "id": 9736, - "name": "keyIdentifier", + "id": 2375, + "name": "suffix", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 221, - "character": 17 + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 28, + "character": 10 } ], "type": { "type": "instrinct", - "name": "undefined" + "name": "string" }, - "defaultValue": " undefined" + "defaultValue": "\"Sr.\"" }, { - "id": 9737, - "name": "which", + "id": 2371, + "name": "title", "kind": 32, "kindString": "Variable", - "flags": {}, + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 222, + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 24, "character": 9 } ], "type": { "type": "instrinct", - "name": "number" + "name": "string" }, - "defaultValue": "27" + "defaultValue": "\"Mr.\"" } ], "groups": [ @@ -208585,8521 +113887,7292 @@ "title": "Variables", "kind": 32, "children": [ - 9732, - 9733, - 9734, - 9735, - 9736, - 9737 + 2372, + 2374, + 2373, + 2375, + 2371 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 216, - "character": 5 + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 23, + "character": 10 } ], "type": { "type": "instrinct", "name": "object" } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2380 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 2379, + 2378, + 2388, + 2387, + 2382, + 2389, + 2381, + 2377, + 2376 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2395, + 2390, + 2392 + ] }, { - "id": 9710, - "name": "left", + "title": "Object literals", "kind": 2097152, - "kindString": "Object literal", - "flags": {}, "children": [ + 2370 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 22, + "character": 38 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 2398, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 12, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " ``" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2369 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 2398 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-templates/name-entry/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 2399, + "name": "\"src/_docs/form-templates/phone-entry/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/form-templates/phone-entry/component-example.ts", + "children": [ + { + "id": 2400, + "name": "PhoneEntryExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n\tselector: 'doc-phone-entry',\n template: `\n\n`+code_example+`\n\n`\n}" + } + } + ], + "children": [ + { + "id": 2407, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 9711, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 193, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9712, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 194, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9713, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 195, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Left\"" - }, - { - "id": 9714, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2410, + "name": "new PhoneEntryExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 196, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, - { - "id": 9715, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2411, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 197, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9716, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2412, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 198, - "character": 9 + "id": 2413, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "PhoneEntryExampleComponent", + "id": 2400 }, - "defaultValue": "37" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9711, - 9712, - 9713, - 9714, - 9715, - 9716 - ] + "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", + "line": 31, + "character": 52 } ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 2406, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 192, - "character": 6 + "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", + "line": 31, + "character": 13 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"_docs/form-templates/phone-entry/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 9717, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9718, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 201, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9719, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 202, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9720, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 203, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Right\"" - }, - { - "id": 9721, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 204, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - }, - { - "id": 9722, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 205, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "id": 2405, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 9723, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 206, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" + "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", + "line": 29, + "character": 9 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 2421, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9718, - 9719, - 9720, - 9721, - 9722, - 9723 - ] + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 2420, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 200, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 9745, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9746, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 233, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9747, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 234, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9748, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 235, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 9749, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 236, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, - { - "id": 9750, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 237, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "id": 2409, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9751, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 238, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" + "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", + "line": 36, + "character": 20 } ], - "groups": [ + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 2401, + "name": "phoneModel", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9746, - 9747, - 9748, - 9749, - 9750, - 9751 - ] + "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", + "line": 24, + "character": 12 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"123-456-3366\"" + }, + { + "id": 2402, + "name": "phoneModel2", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 232, - "character": 7 + "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", + "line": 25, + "character": 13 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": "\"1+(123)456-3366\"" }, { - "id": 9738, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9739, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 225, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9740, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 226, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "id": 2422, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9741, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 227, - "character": 7 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" - }, - "defaultValue": "\" \"" - }, - { - "id": 9742, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 228, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - }, - { - "id": 9743, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 229, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 2408, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9744, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 230, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" + "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", + "line": 35, + "character": 18 } ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9739, - 9740, - 9741, - 9742, - 9743, - 9744 - ] + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 2404, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", + "line": 27, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 2403, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 224, - "character": 7 + "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", + "line": 26, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"SamPhoneEntryComponent\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 9724, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9725, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 209, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9726, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 210, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9727, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 211, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, + "id": 2428, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9728, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2429, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 212, - "character": 11 + "id": 2430, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "Subscription" }, - "defaultValue": "9" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ { - "id": 9729, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 213, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 2423, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9730, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 2424, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 214, - "character": 9 - } - ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "9" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9725, - 9726, - 9727, - 9728, - 9729, - 9730 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 208, - "character": 5 + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 } }, { - "id": 9696, - "name": "up", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9697, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 177, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 2417, + "name": "phoneModel2Change", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9698, - "name": "code", - "kind": 32, - "kindString": "Variable", + "id": 2418, + "name": "phoneModel2Change", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 178, - "character": 8 + "id": 2419, + "name": "phoneNum", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 9699, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 179, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Up\"" - }, + "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", + "line": 47, + "character": 26 + } + ] + }, + { + "id": 2414, + "name": "phoneModelChange", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9700, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2415, + "name": "phoneModelChange", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 180, - "character": 11 + "id": 2416, + "name": "phoneNum", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 9701, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 181, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", + "line": 43, + "character": 25 + } + ] + }, + { + "id": 2425, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9702, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 2426, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 182, - "character": 9 + "id": 2427, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "38" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9697, - 9698, - 9699, - 9700, - 9701, - 9702 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 176, - "character": 4 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "groups": [ { - "title": "Object literals", - "kind": 2097152, + "title": "Constructors", + "kind": 512, + "children": [ + 2407 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 2406, + 2405, + 2421, + 2420, + 2409, + 2401, + 2402, + 2422, + 2408, + 2404, + 2403 + ] + }, + { + "title": "Methods", + "kind": 2048, "children": [ - 9752, - 9703, - 9689, - 9731, - 9710, - 9717, - 9745, - 9738, - 9724, - 9696 + 2428, + 2423, + 2417, + 2414, + 2425 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 167, - "character": 15 + "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", + "line": 23, + "character": 39 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 2431, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", + "line": 12, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": " `\n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2400 + ] }, { - "id": 9759, - "name": "IEMocks", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, + "title": "Variables", + "kind": 32, "children": [ + 2431 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/form-templates/phone-entry/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 2432, + "name": "\"src/_docs/service-directives/autocomplete/country/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/service-directives/autocomplete/country/component-example.ts", + "children": [ + { + "id": 2433, + "name": "CountryServiceDirectiveExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ { - "id": 9823, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9824, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 324, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9825, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 325, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9826, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 326, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-sam-autocomplete',\n template: ' + code_example + '\n}" + } + } + ], + "children": [ + { + "id": 2438, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 9827, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2441, + "name": "new CountryServiceDirectiveExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 327, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - }, - { - "id": 9828, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2442, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 328, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9829, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2443, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 329, - "character": 9 + "id": 2444, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "CountryServiceDirectiveExampleComponent", + "id": 2433 }, - "defaultValue": "8" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9824, - 9825, - 9826, - 9827, - 9828, - 9829 - ] + "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", + "line": 32, + "character": 65 } ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 2437, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 323, - "character": 11 + "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", + "line": 32, + "character": 13 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"_docs/service-directives/autocomplete/country/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 9774, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9775, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 268, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9776, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 269, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9777, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 270, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Down\"" - }, - { - "id": 9778, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 271, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 9779, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 272, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9780, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 273, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9775, - 9776, - 9777, - 9778, - 9779, - 9780 - ] - } - ], + "id": 2436, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 267, - "character": 6 + "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", + "line": 30, + "character": 9 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 } }, { - "id": 9760, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9761, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 252, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9762, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 253, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9763, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 254, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 9764, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 255, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 9765, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 256, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "id": 2446, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9766, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 257, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 2445, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9761, - 9762, - 9763, - 9764, - 9765, - 9766 - ] + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 2440, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 251, - "character": 7 + "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", + "line": 37, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 9802, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9803, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 300, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9804, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 301, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "id": 2447, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9805, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 302, - "character": 7 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"Esc\"" - }, - { - "id": 9806, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 303, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - }, - { - "id": 9807, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 304, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 2439, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9808, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 305, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" + "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", + "line": 36, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 2435, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9803, - 9804, - 9805, - 9806, - 9807, - 9808 - ] + "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", + "line": 28, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 2434, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 299, - "character": 5 + "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", + "line": 27, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"CountryServiceDirective\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 9781, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9782, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 276, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9783, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 277, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9784, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 278, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Left\"" - }, - { - "id": 9785, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 279, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, - { - "id": 9786, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 280, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "id": 2453, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9787, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 2454, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 281, - "character": 9 + "id": 2455, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "Subscription" }, - "defaultValue": "37" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9782, - 9783, - 9784, - 9785, - 9786, - 9787 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 275, - "character": 6 + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 } }, { - "id": 9788, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9789, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 284, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9790, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 285, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9791, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 286, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Right\"" - }, + "id": 2448, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9792, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2449, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 287, - "character": 11 - } - ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "39" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ { - "id": 9793, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 288, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 2450, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9794, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 2451, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 289, - "character": 9 + "id": 2452, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "39" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9789, - 9790, - 9791, - 9792, - 9793, - 9794 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 283, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2438 + ] }, { - "id": 9816, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, + "title": "Properties", + "kind": 1024, "children": [ + 2437, + 2436, + 2446, + 2445, + 2440, + 2447, + 2439, + 2435, + 2434 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2453, + 2448, + 2450 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", + "line": 26, + "character": 52 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 2456, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", + "line": 20, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"TODO\"" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2433 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 2456 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/service-directives/autocomplete/country/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 2457, + "name": "\"src/_docs/service-directives/autocomplete/state/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/service-directives/autocomplete/state/component-example.ts", + "children": [ + { + "id": 2458, + "name": "StateServiceDirectiveExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-sam-autocomplete',\n template: ' + code_example + '\n}" + } + } + ], + "children": [ + { + "id": 2463, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 9817, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 316, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9818, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 317, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9819, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 318, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 9820, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2466, + "name": "new StateServiceDirectiveExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 319, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, - { - "id": 9821, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2467, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 320, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9822, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2468, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 321, - "character": 9 + "id": 2469, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "StateServiceDirectiveExampleComponent", + "id": 2458 }, - "defaultValue": "16" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9817, - 9818, - 9819, - 9820, - 9821, - 9822 - ] + "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", + "line": 32, + "character": 63 } ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 2462, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 315, - "character": 7 + "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", + "line": 32, + "character": 13 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"_docs/service-directives/autocomplete/state/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 9809, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9810, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 308, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9811, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 309, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9812, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 310, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Spacebar\"" - }, - { - "id": 9813, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 311, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - }, - { - "id": 9814, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 312, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "id": 2461, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 9815, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 313, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" + "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", + "line": 30, + "character": 9 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 2471, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9810, - 9811, - 9812, - 9813, - 9814, - 9815 - ] + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 2470, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 307, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 9795, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9796, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 292, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 2465, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9797, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 293, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", + "line": 37, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 2472, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9798, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 294, - "character": 7 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 9799, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 295, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - }, - { - "id": 9800, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 296, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 2464, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9801, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 297, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" + "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", + "line": 36, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 2460, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9796, - 9797, - 9798, - 9799, - 9800, - 9801 - ] + "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", + "line": 28, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 2459, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 291, - "character": 5 + "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", + "line": 27, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"StateServiceDirective\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 9767, - "name": "up", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9768, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 260, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 2478, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9769, - "name": "code", - "kind": 32, - "kindString": "Variable", + "id": 2479, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 261, - "character": 8 + "id": 2480, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "undefined" + "type": "reference", + "name": "Subscription" }, - "defaultValue": " undefined" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ { - "id": 9770, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 262, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Up\"" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 2473, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9771, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2474, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 263, - "character": 11 - } - ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "38" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ { - "id": 9772, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 264, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 2475, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9773, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 2476, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 265, - "character": 9 + "id": 2477, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "38" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9768, - 9769, - 9770, - 9771, - 9772, - 9773 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 259, - "character": 4 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "groups": [ { - "title": "Object literals", - "kind": 2097152, + "title": "Constructors", + "kind": 512, "children": [ - 9823, - 9774, - 9760, - 9802, - 9781, - 9788, - 9816, - 9809, - 9795, - 9767 + 2463 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 2462, + 2461, + 2471, + 2470, + 2465, + 2472, + 2464, + 2460, + 2459 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2478, + 2473, + 2475 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 250, - "character": 13 + "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", + "line": 26, + "character": 50 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 2481, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", + "line": 20, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": "\"TODO\"" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2458 + ] }, { - "id": 9617, - "name": "SafariMocks", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, + "title": "Variables", + "kind": 32, "children": [ + 2481 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/service-directives/autocomplete/state/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 2556, + "name": "\"src/_docs/static.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/static.component.ts", + "children": [ + { + "id": 2557, + "name": "StaticPageComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ { - "id": 9681, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9682, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 158, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9683, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 159, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 9684, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 160, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-placeholder-example',\n template: `\n \n `\n}" + } + } + ], + "children": [ + { + "id": 2561, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 9685, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2565, + "name": "new StaticPageComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 161, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - }, - { - "id": 9686, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2566, + "name": "route", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "ActivatedRoute" + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 162, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"U+0008\"" - }, - { - "id": 9687, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2567, + "name": "router", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Router" + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 163, - "character": 9 + "id": 2568, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" + "type": "reference", + "name": "StaticPageComponent", + "id": 2557 + } } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9682, - 9683, - 9684, - 9685, - 9686, - 9687 - ] + "fileName": "src/_docs/static.component.ts", + "line": 29, + "character": 44 + } + ] + }, + { + "id": 2560, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/_docs/static.component.ts", + "line": 29, + "character": 13 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"_docs/components/spinner/\"" + }, + { + "id": 2558, + "name": "content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 157, - "character": 11 + "fileName": "src/_docs/static.component.ts", + "line": 27, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" + "name": "any" } }, { - "id": 9632, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9633, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 102, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9634, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 103, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, - { - "id": 9635, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 104, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, - { - "id": 9636, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 105, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 9637, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 106, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Down\"" - }, + "id": 2559, + "name": "defaultContent", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9638, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 107, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" + "fileName": "src/_docs/static.component.ts", + "line": 28, + "character": 23 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `

    No Documentation Yet

    Coming soon

    `" + }, + { + "id": 2564, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9633, - 9634, - 9635, - 9636, - 9637, - 9638 - ] + "fileName": "src/_docs/static.component.ts", + "line": 34, + "character": 20 } ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + }, + { + "id": 2562, + "name": "route", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 101, - "character": 6 + "fileName": "src/_docs/static.component.ts", + "line": 32, + "character": 17 } ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "ActivatedRoute" } }, { - "id": 9618, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ + "id": 2563, + "name": "router", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true + }, + "sources": [ { - "id": 9619, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 86, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "fileName": "src/_docs/static.component.ts", + "line": 33, + "character": 18 + } + ], + "type": { + "type": "reference", + "name": "Router" + } + }, + { + "id": 2569, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9620, - "name": "code", - "kind": 32, - "kindString": "Variable", + "id": 2570, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 87, - "character": 8 - } - ], "type": { "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, + "name": "void" + } + } + ], + "sources": [ { - "id": 9621, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 88, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, + "fileName": "src/_docs/static.component.ts", + "line": 37, + "character": 17 + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2561 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 2560, + 2558, + 2559, + 2564, + 2562, + 2563 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2569 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/static.component.ts", + "line": 26, + "character": 32 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2557 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/static.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 2482, + "name": "\"src/_docs/wrappers/fieldset-wrapper/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/wrappers/fieldset-wrapper/component-example.ts", + "children": [ + { + "id": 2483, + "name": "FieldsetWrapperExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-sam-fieldset-wrapper',\n template: `` + code_example + ``\n}" + } + } + ], + "children": [ + { + "id": 2488, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 9622, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2491, + "name": "new FieldsetWrapperExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 89, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 9623, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2492, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 90, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 9624, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2493, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 91, - "character": 9 + "id": 2494, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "FieldsetWrapperExampleComponent", + "id": 2483 }, - "defaultValue": "13" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9619, - 9620, - 9621, - 9622, - 9623, - 9624 - ] + "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", + "line": 35, + "character": 51 } ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 2487, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 85, - "character": 7 + "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", + "line": 35, + "character": 13 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"_docs/wrappers/fieldset-wrapper/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 9660, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9661, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 134, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9662, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 135, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Escape\"" - }, - { - "id": 9663, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 136, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Escape\"" - }, - { - "id": 9664, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 137, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - }, + "id": 2486, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 9665, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 138, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"U+001B\"" - }, + "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", + "line": 33, + "character": 9 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 2496, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9666, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 139, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 2495, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9661, - 9662, - 9663, - 9664, - 9665, - 9666 - ] + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 + } + }, + { + "id": 2490, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 133, - "character": 5 + "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", + "line": 40, + "character": 20 } ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 } }, { - "id": 9639, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9640, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 110, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9641, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 111, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowLeft\"" - }, - { - "id": 9642, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 112, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowLeft\"" - }, - { - "id": 9643, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 113, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, + "id": 2497, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9644, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 114, - "character": 17 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"Left\"" - }, + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 2489, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9645, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 115, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" + "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", + "line": 39, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 2485, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9640, - 9641, - 9642, - 9643, - 9644, - 9645 - ] + "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", + "line": 31, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 2484, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 109, - "character": 6 + "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", + "line": 30, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"FieldsetWrapper\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 9646, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9647, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 118, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 2503, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9648, - "name": "code", - "kind": 32, - "kindString": "Variable", + "id": 2504, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 119, - "character": 8 + "id": 2505, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Subscription" }, - "defaultValue": "\"ArrowRight\"" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ { - "id": 9649, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 120, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowRight\"" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 2498, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9650, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2499, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 121, - "character": 11 - } - ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "39" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ { - "id": 9651, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 122, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Right\"" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 2500, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9652, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 2501, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 123, - "character": 9 + "id": 2502, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "39" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9647, - 9648, - 9649, - 9650, - 9651, - 9652 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 117, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 2488 + ] }, { - "id": 9674, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, + "title": "Properties", + "kind": 1024, "children": [ + 2487, + 2486, + 2496, + 2495, + 2490, + 2497, + 2489, + 2485, + 2484 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 2503, + 2498, + 2500 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", + "line": 29, + "character": 44 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 2506, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", + "line": 20, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n \n \n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2483 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 2506 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/wrappers/fieldset-wrapper/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 2507, + "name": "\"src/_docs/wrappers/label-wrapper/component-example\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/_docs/wrappers/label-wrapper/component-example.ts", + "children": [ + { + "id": 2508, + "name": "LabelWrapperExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-sam-label-wrapper',\n template: '' + code_example + ''\n}" + } + } + ], + "children": [ + { + "id": 2513, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ { - "id": 9675, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 150, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9676, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 151, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ShiftLeft\"" - }, - { - "id": 9677, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 152, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 9678, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2516, + "name": "new LabelWrapperExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 153, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, - { - "id": 9679, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2517, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Http" + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 154, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 9680, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 2518, + "name": "service", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 155, - "character": 9 + "id": 2519, + "name": "mdService", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } } ], "type": { - "type": "instrinct", - "name": "number" + "type": "reference", + "name": "LabelWrapperExampleComponent", + "id": 2508 }, - "defaultValue": "16" + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9675, - 9676, - 9677, - 9678, - 9679, - 9680 - ] + "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", + "line": 35, + "character": 48 } ], + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.__constructor", + "id": 287 + } + }, + { + "id": 2512, + "name": "base", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 149, - "character": 7 + "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", + "line": 35, + "character": 13 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"_docs/wrappers/label-wrapper/\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.base", + "id": 286 } }, { - "id": 9667, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9668, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 142, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9669, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 143, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Space\"" - }, - { - "id": 9670, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 144, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\" \"" - }, - { - "id": 9671, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 145, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - }, - { - "id": 9672, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 146, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"U+0020\"" - }, + "id": 2511, + "name": "example", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 9673, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 147, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" + "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", + "line": 33, + "character": 9 } ], - "groups": [ + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.example", + "id": 284 + } + }, + { + "id": 2521, + "name": "guidance", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9668, - 9669, - 9670, - 9671, - 9672, - 9673 - ] + "fileName": "src/_docs/baseexample.component.ts", + "line": 26, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.guidance", + "id": 283 + } + }, + { + "id": 2520, + "name": "markdown", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 141, - "character": 7 + "fileName": "src/_docs/baseexample.component.ts", + "line": 25, + "character": 17 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"\"", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.markdown", + "id": 282 } }, { - "id": 9653, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9654, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 126, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9655, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 127, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 9656, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 128, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, + "id": 2515, + "name": "mdService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9657, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 129, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - }, + "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", + "line": 40, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.mdService", + "id": 290 + } + }, + { + "id": 2522, + "name": "sections", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9658, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 130, - "character": 17 - } - ], - "type": { + "fileName": "src/_docs/baseexample.component.ts", + "line": 29, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"U+0009\"" - }, + } + ] + }, + "defaultValue": " [\n 'markdown',\n 'design',\n 'guidance',\n 'implementation'\n ]", + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.sections", + "id": 285 + } + }, + { + "id": 2514, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ { - "id": 9659, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 131, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" + "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", + "line": 39, + "character": 18 } ], - "groups": [ + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + }, + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.service", + "id": 289 + } + }, + { + "id": 2510, + "name": "typedoc_content", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9654, - 9655, - 9656, - 9657, - 9658, - 9659 - ] + "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", + "line": 31, + "character": 17 } ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_content", + "id": 281 + } + }, + { + "id": 2509, + "name": "typedoc_target", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 125, - "character": 5 + "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", + "line": 30, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" + }, + "defaultValue": "\"LabelWrapper\"", + "overwrites": { + "type": "reference", + "name": "BaseExampleComponent.typedoc_target", + "id": 280 } }, { - "id": 9625, - "name": "up", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9626, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 94, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, + "id": 2528, + "name": "fetchSection", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9627, - "name": "code", - "kind": 32, - "kindString": "Variable", + "id": 2529, + "name": "fetchSection", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 95, - "character": 8 + "id": 2530, + "name": "section", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } } ], "type": { - "type": "instrinct", - "name": "string" + "type": "reference", + "name": "Subscription" }, - "defaultValue": "\"ArrowUp\"" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + } + ], + "sources": [ { - "id": 9628, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 96, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowUp\"" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 88, + "character": 21 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.fetchSection", + "id": 300 + } + }, + { + "id": 2523, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9629, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "id": 2524, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 97, - "character": 11 - } - ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "38" - }, + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + } + ], + "sources": [ { - "id": 9630, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 98, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Up\"" - }, + "fileName": "src/_docs/baseexample.component.ts", + "line": 43, + "character": 17 + } + ], + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.ngOnInit", + "id": 295 + } + }, + { + "id": 2525, + "name": "setupTypedocContent", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ { - "id": 9631, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 2526, + "name": "setupTypedocContent", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "sources": [ + "parameters": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 99, - "character": 9 + "id": 2527, + "name": "obj", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "any" + } } ], "type": { "type": "instrinct", - "name": "number" + "name": "void" }, - "defaultValue": "38" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9626, - 9627, - 9628, - 9629, - 9630, - 9631 - ] + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 93, - "character": 4 + "fileName": "src/_docs/baseexample.component.ts", + "line": 51, + "character": 28 } ], - "type": { - "type": "instrinct", - "name": "object" + "inheritedFrom": { + "type": "reference", + "name": "BaseExampleComponent.setupTypedocContent", + "id": 297 } } ], "groups": [ { - "title": "Object literals", - "kind": 2097152, + "title": "Constructors", + "kind": 512, + "children": [ + 2513 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 2512, + 2511, + 2521, + 2520, + 2515, + 2522, + 2514, + 2510, + 2509 + ] + }, + { + "title": "Methods", + "kind": 2048, "children": [ - 9681, - 9632, - 9618, - 9660, - 9639, - 9646, - 9674, - 9667, - 9653, - 9625 + 2528, + 2523, + 2525 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 84, - "character": 17 + "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", + "line": 29, + "character": 41 + } + ], + "extendedTypes": [ + { + "type": "reference", + "name": "BaseExampleComponent", + "id": 279 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + }, + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 2531, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", + "line": 20, + "character": 16 } ], "type": { "type": "instrinct", - "name": "object" - } + "name": "string" + }, + "defaultValue": " `\n \n`" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 2508 + ] }, { - "id": 9830, - "name": "mocks", - "kind": 2097152, - "kindString": "Object literal", + "title": "Variables", + "kind": 32, + "children": [ + 2531 + ] + } + ], + "sources": [ + { + "fileName": "src/_docs/wrappers/label-wrapper/component-example.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 247, + "name": "\"src/app/app.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/app.component.ts", + "children": [ + { + "id": 248, + "name": "AppComponent", + "kind": 128, + "kindString": "Class", "flags": { "isExported": true }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'app',\n animations: [ routerTransition ],\n encapsulation: ViewEncapsulation.None,\n template: `\n
    \n \n
    \n \n `,\n providers: [DocumentationService]\n}" + } + } + ], "children": [ { - "id": 9975, - "name": "default", - "kind": 32, - "kindString": "Variable", + "id": 260, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { "isExported": true }, - "sources": [ + "signatures": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 336, - "character": 9 - } - ], - "type": { - "type": "reflection", - "declaration": { - "id": 9976, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", + "id": 264, + "name": "new AppComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, - "children": [ - { - "id": 10040, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 10041, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 75, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10042, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 76, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 10043, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 77, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 10044, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 78, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - }, - { - "id": 10045, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 79, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 10046, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 80, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 10041, - 10042, - 10043, - 10044, - 10045, - 10046 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 74, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, + "parameters": [ { - "id": 9991, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", + "id": 265, + "name": "route", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9992, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 19, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9993, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 20, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, - { - "id": 9994, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 21, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, - { - "id": 9995, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 22, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 9996, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 23, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9997, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 24, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9992, - 9993, - 9994, - 9995, - 9996, - 9997 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 18, - "character": 6 - } - ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "ActivatedRoute" } }, { - "id": 9977, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", + "id": 266, + "name": "router", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9978, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 3, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 9979, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 4, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 9980, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 5, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 9981, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 6, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 9982, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 7, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9983, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 8, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9978, - 9979, - 9980, - 9981, - 9982, - 9983 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 2, - "character": 7 - } - ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "Router" } }, { - "id": 10019, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", + "id": 267, + "name": "service", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 10020, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 51, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10021, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 52, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Escape\"" - }, - { - "id": 10022, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 53, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Escape\"" - }, - { - "id": 10023, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 54, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - }, - { - "id": 10024, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 55, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 10025, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 56, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 10020, - 10021, - 10022, - 10023, - 10024, - 10025 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 50, - "character": 5 - } - ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "DocumentationService", + "id": 148 } - }, - { - "id": 9998, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9999, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 27, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10000, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 28, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowLeft\"" - }, - { - "id": 10001, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 29, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowLeft\"" - }, - { - "id": 10002, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 30, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, - { - "id": 10003, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 31, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 10004, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 32, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9999, - 10000, - 10001, - 10002, - 10003, - 10004 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 26, - "character": 6 - } - ], + } + ], + "type": { + "type": "reference", + "name": "AppComponent", + "id": 248 + } + } + ], + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 50, + "character": 39 + } + ] + }, + { + "id": 261, + "name": "route", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 53, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "ActivatedRoute" + } + }, + { + "id": 262, + "name": "router", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 54, + "character": 18 + } + ], + "type": { + "type": "reference", + "name": "Router" + } + }, + { + "id": 263, + "name": "service", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 55, + "character": 19 + } + ], + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } + }, + { + "id": 256, + "name": "showBanner", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 47, + "character": 19 + } + ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "false" + }, + { + "id": 257, + "name": "showHeader", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 48, + "character": 19 + } + ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "true" + }, + { + "id": 258, + "name": "showUIKitHeader", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 49, + "character": 24 + } + ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "false" + }, + { + "id": 259, + "name": "showUIKitSearchHeader", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 50, + "character": 30 + } + ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "false" + }, + { + "id": 254, + "name": "staticpagelist", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 45, + "character": 23 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 255, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {} + } + } + }, + { + "id": 252, + "name": "uikitList", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 44, + "character": 18 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 253, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {} + } + } + }, + { + "id": 268, + "name": "getState", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 269, + "name": "getState", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 270, + "name": "outlet", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, "type": { "type": "instrinct", - "name": "object" + "name": "any" } - }, + } + ], + "type": { + "type": "instrinct", + "name": "any" + } + } + ], + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 57, + "character": 17 + } + ] + }, + { + "id": 274, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 275, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + } + } + ], + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 66, + "character": 17 + } + ] + }, + { + "id": 271, + "name": "resolveRoute", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 272, + "name": "resolveRoute", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ { - "id": 10005, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", + "id": 273, + "name": "path", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 10006, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 35, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10007, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 36, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowRight\"" - }, - { - "id": 10008, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 37, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowRight\"" - }, - { - "id": 10009, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 38, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - }, - { - "id": 10010, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 39, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 10011, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 40, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 10006, - 10007, - 10008, - 10009, - 10010, - 10011 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 34, - "character": 7 - } - ], "type": { "type": "instrinct", - "name": "object" + "name": "any" } - }, + } + ], + "type": { + "type": "instrinct", + "name": "void" + } + } + ], + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 61, + "character": 21 + } + ] + }, + { + "id": 249, + "name": "sidenavConfig", + "kind": 2097152, + "kindString": "Object literal", + "flags": { + "isExported": true, + "isPublic": true + }, + "children": [ + { + "id": 251, + "name": "children", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 10033, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 10034, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 67, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10035, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 68, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ShiftLeft\"" - }, - { - "id": 10036, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 69, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 10037, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 70, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, - { - "id": 10038, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 71, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 10039, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 72, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 10034, - 10035, - 10036, - 10037, - 10038, - 10039 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 66, - "character": 7 - } - ], - "type": { + "fileName": "src/app/app.component.ts", + "line": 41, + "character": 14 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { "type": "instrinct", - "name": "object" + "name": "undefined" } - }, + ] + }, + "defaultValue": " []" + }, + { + "id": 250, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 40, + "character": 11 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"test\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 251, + 250 + ] + } + ], + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 39, + "character": 22 + } + ], + "type": { + "type": "instrinct", + "name": "object" + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 260 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 261, + 262, + 263, + 256, + 257, + 258, + 259, + 254, + 252 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 268, + 274, + 271 + ] + }, + { + "title": "Object literals", + "kind": 2097152, + "children": [ + 249 + ] + } + ], + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 37, + "character": 25 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + } + ] + }, + { + "id": 276, + "name": "DOCS", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 17, + "character": 10 + } + ], + "type": { + "type": "instrinct", + "name": "any" + }, + "defaultValue": " environment.DOCS" + }, + { + "id": 277, + "name": "STATICPAGES", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 18, + "character": 17 + } + ], + "type": { + "type": "instrinct", + "name": "any" + }, + "defaultValue": " environment.STATICPAGES" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 248 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 276, + 277 + ] + } + ], + "sources": [ + { + "fileName": "src/app/app.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5345, + "name": "\"src/app/app.module\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/app.module.ts", + "children": [ + { + "id": 5346, + "name": "AppModule", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "comment": { + "shortText": "`AppModule` is the main entry point into Angular2's bootstraping process" + }, + "decorators": [ + { + "name": "NgModule", + "type": { + "type": "reference", + "name": "NgModule" + }, + "arguments": { + "obj": "{\n bootstrap: [ AppComponent ],\n declarations: [\n AppComponent,\n HomeComponent\n ],\n imports: [ // import Angular's modules\n DocModule,\n BrowserModule,\n BrowserAnimationsModule,\n FormsModule,\n HttpModule,\n SamUIKitModule,\n SiteComponentsModule,\n RouterModule.forRoot(ROUTES)\n ],\n providers: [ // expose our Services and Providers into Angular's dependency injection\n ENV_PROVIDERS,\n APP_PROVIDERS,\n SamAlertFooterService,\n MarkdownService\n ]\n}" + } + } + ], + "children": [ + { + "id": 5347, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 5350, + "name": "new AppModule", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ { - "id": 10026, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", + "id": 5351, + "name": "appRef", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 10027, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 59, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10028, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 60, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Space\"" - }, - { - "id": 10029, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 61, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\" \"" - }, - { - "id": 10030, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 62, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - }, - { - "id": 10031, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 63, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 10032, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 64, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 10027, - 10028, - 10029, - 10030, - 10031, - 10032 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 58, - "character": 7 - } - ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "ApplicationRef" } }, { - "id": 10012, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", + "id": 5352, + "name": "samAlertFooterService", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 10013, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 43, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10014, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 44, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 10015, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 45, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 10016, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 46, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - }, - { - "id": 10017, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 47, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 10018, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 48, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 10013, - 10014, - 10015, - 10016, - 10017, - 10018 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 42, - "character": 5 - } - ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "SamAlertFooterService", + "id": 108 } - }, + } + ], + "type": { + "type": "reference", + "name": "AppModule", + "id": 5346 + } + } + ], + "sources": [ + { + "fileName": "src/app/app.module.ts", + "line": 55, + "character": 24 + } + ] + }, + { + "id": 5348, + "name": "appRef", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/app/app.module.ts", + "line": 58, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "ApplicationRef" + } + }, + { + "id": 5349, + "name": "samAlertFooterService", + "kind": 1024, + "kindString": "Property", + "flags": { + "isConstructorProperty": true, + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/app/app.module.ts", + "line": 59, + "character": 32 + } + ], + "type": { + "type": "reference", + "name": "SamAlertFooterService", + "id": 108 + } + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 5347 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 5348, + 5349 + ] + } + ], + "sources": [ + { + "fileName": "src/app/app.module.ts", + "line": 55, + "character": 22 + } + ] + }, + { + "id": 5353, + "name": "APP_PROVIDERS", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/app/app.module.ts", + "line": 25, + "character": 19 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "any" + } + ] + }, + "defaultValue": " [\n]" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5346 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 5353 + ] + } + ], + "sources": [ + { + "fileName": "src/app/app.module.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 145, + "name": "\"src/app/app.routes\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/app.routes.ts", + "children": [ + { + "id": 146, + "name": "ROUTES", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/app.routes.ts", + "line": 4, + "character": 19 + } + ], + "type": { + "type": "reference", + "name": "Routes" + }, + "defaultValue": " [\n { \n path: '', \n component: HomeComponent\n },\n { \n path: 'patterns', \n loadChildren: \"../patterns/patterns.module#ExamplesModule\"\n },\n { \n path: 'prototypes', \n loadChildren: \"../prototypes/prototypes.module#PrototypesModule\"\n }\n]" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 146 + ] + } + ], + "sources": [ + { + "fileName": "src/app/app.routes.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 133, + "name": "\"src/app/environment\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/environment.ts", + "children": [ + { + "id": 140, + "name": "ENV_PROVIDERS", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/environment.ts", + "line": 59, + "character": 26 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "any" + } + ] + }, + "defaultValue": " [\n ...PROVIDERS\n]" + }, + { + "id": 134, + "name": "PROVIDERS", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/app/environment.ts", + "line": 12, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "isArray": true, + "name": "any" + }, + "defaultValue": " [\n // common env directives\n]" + }, + { + "id": 139, + "name": "decorateModuleRef", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/environment.ts", + "line": 57, + "character": 30 + } + ], + "type": { + "type": "reference", + "name": "(Anonymous function)", + "id": 136 + }, + "defaultValue": " _decorateModuleRef" + }, + { + "id": 135, + "name": "_decorateModuleRef", + "kind": 64, + "kindString": "Function", + "flags": {}, + "signatures": [ + { + "id": 136, + "name": "_decorateModuleRef", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "typeParameter": [ + { + "id": 137, + "name": "T", + "kind": 131072, + "kindString": "Type parameter", + "flags": {} + } + ], + "parameters": [ + { + "id": 138, + "name": "value", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "typeParameter", + "name": "T" + } + } + ], + "type": { + "type": "typeParameter", + "name": "T" + } + } + ], + "sources": [ + { + "fileName": "src/app/environment.ts", + "line": 19, + "character": 22 + } + ] + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 140, + 134, + 139 + ] + }, + { + "title": "Functions", + "kind": 64, + "children": [ + 135 + ] + } + ], + "sources": [ + { + "fileName": "src/app/environment.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 141, + "name": "\"src/app/home.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/home.component.ts", + "children": [ + { + "id": 142, + "name": "HomeComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'home.template.html',\n}" + } + } + ], + "children": [ + { + "id": 143, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 144, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + } + } + ], + "sources": [ + { + "fileName": "src/app/home.component.ts", + "line": 8, + "character": 10 + } + ] + } + ], + "groups": [ + { + "title": "Methods", + "kind": 2048, + "children": [ + 143 + ] + } + ], + "sources": [ + { + "fileName": "src/app/home.component.ts", + "line": 6, + "character": 26 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 142 + ] + } + ], + "sources": [ + { + "fileName": "src/app/home.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5376, + "name": "\"src/app/index\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/index.ts", + "sources": [ + { + "fileName": "src/app/index.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 184, + "name": "\"src/app/router.animations\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/router.animations.ts", + "children": [ + { + "id": 185, + "name": "routerTransition", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/router.animations.ts", + "line": 3, + "character": 29 + } + ], + "type": { + "type": "reference", + "name": "AnimationTriggerMetadata" + }, + "defaultValue": " trigger('routerTransition', [\n\t// this will skip on load\n\ttransition(':enter, initial => *', []),\n\t\n\ttransition('home => examples', [\n\t\tgroup([\n\t\t\tquery(':enter, :leave', style({ position: 'fixed', width:'100%' })\n\t\t\t, { optional: true }),\n\t\t\tquery(':enter', [\n\t\t\t\tstyle({ transform: 'translateX(100%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(0%)' }))\n\t\t\t], { optional: true }),\n\t\t\tquery(':leave', [\n\t\t\t\tstyle({ transform: 'translateX(0%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(-100%)' }))\n\t\t\t], { optional: true }),\n\t\t])\n\t]),\n\n\ttransition('examples => home', [\n\t\tquery(':enter, :leave', style({ position: 'fixed', width:'100%' })\n\t\t, { optional: true }),\n\t\tgroup([\n\t\t\tquery(':enter', [\n\t\t\t\tstyle({ transform: 'translateX(-100%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(0%)' }))\n\t\t\t], { optional: true }),\n\t\t\tquery(':leave', [\n\t\t\t\tstyle({ transform: 'translateX(0%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(100%)' }))\n\t\t\t], { optional: true }),\n\t\t])\n\t]),\n\n\ttransition('* => home', [\n\t\tquery(':enter, :leave', style({ position: 'fixed', width:'100%' })\n\t\t, { optional: true }),\n\t\tgroup([\n\t\t\tquery(':enter', [\n\t\t\t\tstyle({ transform: 'translateX(-100%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(0%)' }))\n\t\t\t], { optional: true }),\n\t\t\tquery(':leave', [\n\t\t\t\tstyle({ transform: 'translateX(0%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(100%)' }))\n\t\t\t], { optional: true }),\n\t\t])\n\t]),\n\n\ttransition('* => examples', [\n\t\tquery(':enter, :leave', style({ position: 'fixed', width:'100%' })\n\t\t, { optional: true }),\n\t\tgroup([\n\t\t\tquery(':enter', [\n\t\t\t\tstyle({ transform: 'translateX(-100%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(0%)' }))\n\t\t\t], { optional: true }),\n\t\t\tquery(':leave', [\n\t\t\t\tstyle({ transform: 'translateX(0%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(100%)' }))\n\t\t\t], { optional: true }),\n\t\t])\n\t]),\n\t\n\ttransition('* <=> *', [\n\t\tquery(':enter, :leave', style({ position: 'fixed', width:'100%' })\n\t\t, { optional: true }),\n\t\tgroup([\n\t\t\tquery(':enter', [\n\t\t\t\tstyle({ transform: 'translateX(100%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(0%)' }))\n\t\t\t], { optional: true }),\n\t\t\tquery(':leave', [\n\t\t\t\tstyle({ transform: 'translateX(0%)' }),\n\t\t\t\tanimate('0.5s ease-in-out', style({ transform: 'translateX(-100%)' }))\n\t\t\t], { optional: true }),\n\t\t])\n\t]),\n])" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 185 + ] + } + ], + "sources": [ + { + "fileName": "src/app/router.animations.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 147, + "name": "\"src/app/services/documentation.service\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/services/documentation.service.ts", + "children": [ + { + "id": 148, + "name": "DocumentationService", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Injectable", + "type": { + "type": "reference", + "name": "Injectable" + }, + "arguments": {} + } + ], + "children": [ + { + "id": 149, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 151, + "name": "new DocumentationService", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ { - "id": 9984, - "name": "up", - "kind": 2097152, - "kindString": "Object literal", + "id": 152, + "name": "_http", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9985, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 11, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9986, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 12, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowUp\"" - }, - { - "id": 9987, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 13, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowUp\"" - }, - { - "id": 9988, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 14, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - }, - { - "id": 9989, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 15, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9990, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 16, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9985, - 9986, - 9987, - 9988, - 9989, - 9990 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 10, - "character": 4 - } - ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "Http" } } ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 10040, - 9991, - 9977, - 10019, - 9998, - 10005, - 10033, - 10026, - 10012, - 9984 - ] - } - ] + "type": { + "type": "reference", + "name": "DocumentationService", + "id": 148 + } } - }, - "defaultValue": " ChromeFirefoxMocks" + ], + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 13, + "character": 35 + } + ] }, { - "id": 9903, - "name": "edge", - "kind": 32, - "kindString": "Variable", + "id": 150, + "name": "_http", + "kind": 1024, + "kindString": "Property", "flags": { + "isPrivate": true, + "isConstructorProperty": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 335, - "character": 6 + "fileName": "src/app/services/documentation.service.ts", + "line": 15, + "character": 27 } ], "type": { - "type": "reflection", - "declaration": { - "id": 9904, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", + "type": "reference", + "name": "Http" + } + }, + { + "id": 157, + "name": "generateJSONReport", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 158, + "name": "generateJSONReport", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "children": [ + "type": { + "type": "reference", + "name": "Subscription" + } + } + ], + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 48, + "character": 27 + } + ] + }, + { + "id": 159, + "name": "getComponentById", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 160, + "name": "getComponentById", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Gets first component from docs.json that matches the provided id.\nIt is expected each id should be unique." + }, + "parameters": [ { - "id": 9968, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", + "id": 161, + "name": "id", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9969, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 241, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9970, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 242, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9971, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 243, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 9972, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 244, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - }, - { - "id": 9973, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 245, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9974, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 246, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9969, - 9970, - 9971, - 9972, - 9973, - 9974 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 240, - "character": 11 - } - ], "type": { "type": "instrinct", - "name": "object" + "name": "number" } - }, - { - "id": 9919, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9920, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 185, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9921, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 186, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9922, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 187, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Down\"" - }, - { - "id": 9923, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 188, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 9924, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 189, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9925, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 190, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9920, - 9921, - 9922, - 9923, - 9924, - 9925 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 184, - "character": 6 - } - ], - "type": { + } + ], + "type": { + "type": "reference", + "name": "ReplaySubject", + "typeArguments": [ + { "type": "instrinct", - "name": "object" + "name": "any" } - }, + ] + } + } + ], + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 142, + "character": 25 + } + ] + }, + { + "id": 162, + "name": "getComponentByName", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 163, + "name": "getComponentByName", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Gets first component from docs.json that matches the provideded name.\nIt is expected that each name is unique." + }, + "parameters": [ { - "id": 9905, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", + "id": 164, + "name": "name", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9906, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 169, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9907, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 170, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9908, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 171, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 9909, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 172, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 9910, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 173, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9911, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 174, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9906, - 9907, - 9908, - 9909, - 9910, - 9911 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 168, - "character": 7 - } - ], "type": { "type": "instrinct", - "name": "object" + "name": "string" } - }, - { - "id": 9947, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9948, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 217, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9949, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 218, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9950, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 219, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Esc\"" - }, - { - "id": 9951, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 220, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - }, - { - "id": 9952, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 221, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9953, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 222, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9948, - 9949, - 9950, - 9951, - 9952, - 9953 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 216, - "character": 5 - } - ], - "type": { + } + ], + "type": { + "type": "reference", + "name": "ReplaySubject", + "typeArguments": [ + { "type": "instrinct", - "name": "object" + "name": "any" } - }, - { - "id": 9926, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9927, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 193, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9928, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 194, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9929, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 195, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Left\"" - }, - { - "id": 9930, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 196, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, - { - "id": 9931, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 197, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9932, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 198, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9927, - 9928, - 9929, - 9930, - 9931, - 9932 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 192, - "character": 6 - } - ], + ] + } + } + ], + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 162, + "character": 27 + } + ] + }, + { + "id": 165, + "name": "getComponentProperties", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 166, + "name": "getComponentProperties", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Gets array of properties for a component given the component's name." + }, + "parameters": [ + { + "id": 167, + "name": "name", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, "type": { "type": "instrinct", - "name": "object" + "name": "string" } - }, + } + ], + "type": { + "type": "reference", + "name": "ReplaySubject", + "typeArguments": [ + { + "type": "instrinct", + "isArray": true, + "name": "any" + } + ] + } + } + ], + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 181, + "character": 31 + } + ] + }, + { + "id": 168, + "name": "getComponentPropertiesById", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 169, + "name": "getComponentPropertiesById", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Gets a property of a component by its id." + }, + "parameters": [ { - "id": 9933, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", + "id": 170, + "name": "componentName", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9934, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 201, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9935, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 202, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9936, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 203, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Right\"" - }, - { - "id": 9937, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 204, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - }, - { - "id": 9938, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 205, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9939, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 206, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9934, - 9935, - 9936, - 9937, - 9938, - 9939 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 200, - "character": 7 - } - ], "type": { "type": "instrinct", - "name": "object" + "name": "string" } }, { - "id": 9961, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", + "id": 171, + "name": "propertyId", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9962, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 233, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9963, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 234, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9964, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 235, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 9965, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 236, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, - { - "id": 9966, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 237, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9967, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 238, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9962, - 9963, - 9964, - 9965, - 9966, - 9967 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 232, - "character": 7 - } - ], "type": { "type": "instrinct", - "name": "object" + "name": "number" } - }, + } + ], + "type": { + "type": "reference", + "name": "ReplaySubject", + "typeArguments": [ + { + "type": "instrinct", + "name": "any" + } + ] + } + } + ], + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 212, + "character": 35 + } + ] + }, + { + "id": 172, + "name": "getComponentPropertiesByName", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 173, + "name": "getComponentPropertiesByName", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Gets a property of a component by its name." + }, + "parameters": [ { - "id": 9954, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", + "id": 174, + "name": "componentName", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9955, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 225, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9956, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 226, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9957, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 227, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\" \"" - }, - { - "id": 9958, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 228, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - }, - { - "id": 9959, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 229, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9960, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 230, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9955, - 9956, - 9957, - 9958, - 9959, - 9960 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 224, - "character": 7 - } - ], "type": { "type": "instrinct", - "name": "object" + "name": "string" } }, { - "id": 9940, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", + "id": 175, + "name": "name", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "name": "ReplaySubject", + "typeArguments": [ + { + "type": "instrinct", + "isArray": true, + "name": "any" + } + ] + } + } + ], + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 233, + "character": 37 + } + ] + }, + { + "id": 155, + "name": "getComponents", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 156, + "name": "getComponents", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Gets all components from docs.json" + }, + "type": { + "type": "reference", + "name": "ReplaySubject", + "typeArguments": [ + { + "type": "instrinct", + "name": "any" + } + ] + } + } + ], + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 25, + "character": 22 + } + ] + }, + { + "id": 176, + "name": "getInterfaces", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 177, + "name": "getInterfaces", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Gets array of interfaces from docs.jsons" + }, + "type": { + "type": "reference", + "name": "ReplaySubject", + "typeArguments": [ + { + "type": "instrinct", + "isArray": true, + "name": "any" + } + ] + } + } + ], + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 254, + "character": 22 + } + ] + }, + { + "id": 178, + "name": "getTypes", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 179, + "name": "getTypes", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "comment": { + "shortText": "Gets array of types form docs.json" + }, + "type": { + "type": "reference", + "name": "ReplaySubject", + "typeArguments": [ + { + "type": "instrinct", + "isArray": true, + "name": "any" + } + ] + } + } + ], + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 280, + "character": 17 + } + ] + }, + { + "id": 153, + "name": "loadData", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 154, + "name": "loadData", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "reference", + "name": "Observable", + "typeArguments": [ + { + "type": "instrinct", + "name": "any" + } + ] + } + } + ], + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 17, + "character": 17 + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 149 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 150 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 157, + 159, + 162, + 165, + 168, + 172, + 155, + 176, + 178, + 153 + ] + } + ], + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 13, + "character": 33 + } + ] + }, + { + "id": 180, + "name": "regexComponent", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 6, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "RegExp" + }, + "defaultValue": " new RegExp('([^/]*(\\.component|\\.directive))')" + }, + { + "id": 183, + "name": "regexInterfaces", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 9, + "character": 21 + } + ], + "type": { + "type": "reference", + "name": "RegExp" + }, + "defaultValue": " new RegExp('interfaces.ts')" + }, + { + "id": 181, + "name": "regexNotComponent", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 7, + "character": 23 + } + ], + "type": { + "type": "reference", + "name": "RegExp" + }, + "defaultValue": " new RegExp('([^.component])')" + }, + { + "id": 182, + "name": "regexTypes", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 8, + "character": 16 + } + ], + "type": { + "type": "reference", + "name": "RegExp" + }, + "defaultValue": " new RegExp('types.ts')" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 148 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 180, + 183, + 181, + 182 + ] + } + ], + "sources": [ + { + "fileName": "src/app/services/documentation.service.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 186, + "name": "\"src/app/services/markdown/markdown-processor\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/services/markdown/markdown-processor.ts", + "children": [ + { + "id": 187, + "name": "MarkdownProcessor", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "children": [ + { + "id": 200, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 203, + "name": "new MarkdownProcessor", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 204, + "name": "assetsDir", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9941, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 209, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9942, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 210, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9943, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 211, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 9944, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 212, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - }, - { - "id": 9945, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 213, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9946, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 214, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9941, - 9942, - 9943, - 9944, - 9945, - 9946 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 208, - "character": 5 - } - ], "type": { "type": "instrinct", - "name": "object" + "name": "string" } }, { - "id": 9912, - "name": "up", - "kind": 2097152, - "kindString": "Object literal", + "id": 205, + "name": "ext", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9913, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 177, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9914, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 178, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9915, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 179, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Up\"" - }, - { - "id": 9916, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 180, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - }, - { - "id": 9917, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 181, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"txt\"" + } + ], + "type": { + "type": "reference", + "name": "MarkdownProcessor", + "id": 187 + } + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 5, + "character": 54 + } + ] + }, + { + "id": 201, + "name": "assetsDir", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 8, + "character": 21 + } + ], + "type": { + "type": "instrinct", + "name": "string" + } + }, + { + "id": 192, + "name": "changeFileExt", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 4, + "character": 23 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 193, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ + { + "id": 194, + "name": "__call", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ { - "id": 9918, - "name": "which", - "kind": 32, - "kindString": "Variable", + "id": 195, + "name": "a", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 182, - "character": 9 - } - ], "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9913, - 9914, - 9915, - 9916, - 9917, - 9918 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 176, - "character": 4 + "type": "instrinct", + "isArray": true, + "name": "string" + } } ], "type": { "type": "instrinct", - "name": "object" + "isArray": true, + "name": "string" } } ], - "groups": [ + "sources": [ { - "title": "Object literals", - "kind": 2097152, - "children": [ - 9968, - 9919, - 9905, - 9947, - 9926, - 9933, - 9961, - 9954, - 9940, - 9912 - ] + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 4, + "character": 24 } ] } + } + }, + { + "id": 202, + "name": "ext", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true }, - "defaultValue": " EdgeMocks" + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 9, + "character": 15 + } + ], + "type": { + "type": "instrinct", + "name": "string" + } }, { - "id": 9831, - "name": "ie", - "kind": 32, - "kindString": "Variable", + "id": 196, + "name": "prependAssetsDir", + "kind": 1024, + "kindString": "Property", "flags": { + "isPrivate": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 334, - "character": 4 + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 5, + "character": 26 } ], "type": { "type": "reflection", "declaration": { - "id": 9832, + "id": 197, "name": "__type", "kind": 65536, "kindString": "Type literal", "flags": {}, - "children": [ + "signatures": [ { - "id": 9896, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", + "id": 198, + "name": "__call", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "children": [ - { - "id": 9897, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 324, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9898, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 325, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "parameters": [ { - "id": 9899, - "name": "key", - "kind": 32, - "kindString": "Variable", + "id": 199, + "name": "a", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 326, - "character": 7 - } - ], "type": { "type": "instrinct", + "isArray": true, "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 9900, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 327, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - }, - { - "id": 9901, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 328, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9902, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 329, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9897, - 9898, - 9899, - 9900, - 9901, - 9902 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 323, - "character": 11 + } } ], "type": { "type": "instrinct", - "name": "object" + "isArray": true, + "name": "string" } - }, + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 5, + "character": 27 + } + ] + } + } + }, + { + "id": 188, + "name": "processString", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 3, + "character": 22 + } + ], + "type": { + "type": "reflection", + "declaration": { + "id": 189, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "signatures": [ { - "id": 9847, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", + "id": 190, + "name": "__call", + "kind": 4096, + "kindString": "Call signature", "flags": {}, - "children": [ - { - "id": 9848, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 268, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9849, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 269, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, + "parameters": [ { - "id": 9850, - "name": "key", - "kind": 32, - "kindString": "Variable", + "id": 191, + "name": "a", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 270, - "character": 7 - } - ], "type": { "type": "instrinct", "name": "string" - }, - "defaultValue": "\"Down\"" - }, - { - "id": 9851, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 271, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 9852, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 272, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9853, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 273, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9848, - 9849, - 9850, - 9851, - 9852, - 9853 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 267, - "character": 6 + } } ], "type": { "type": "instrinct", - "name": "object" + "name": "string" } - }, + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 3, + "character": 23 + } + ] + } + } + }, + { + "id": 224, + "name": "joinBase", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPrivate": true, + "isExported": true + }, + "signatures": [ + { + "id": 225, + "name": "joinBase", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ { - "id": 9833, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", + "id": 226, + "name": "arr", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9834, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 252, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9835, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 253, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9836, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 254, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 9837, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 255, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 9838, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 256, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9839, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 257, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9834, - 9835, - 9836, - 9837, - 9838, - 9839 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 251, - "character": 7 - } - ], "type": { "type": "instrinct", - "name": "object" + "isArray": true, + "name": "string" } - }, + } + ], + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 114, + "character": 18 + } + ] + }, + { + "id": 215, + "name": "joinString", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPrivate": true, + "isExported": true + }, + "signatures": [ + { + "id": 216, + "name": "joinString", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ { - "id": 9875, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", + "id": 217, + "name": "arr", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9876, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 300, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9877, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 301, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9878, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 302, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Esc\"" - }, - { - "id": 9879, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 303, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - }, - { - "id": 9880, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 304, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9881, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 305, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9876, - 9877, - 9878, - 9879, - 9880, - 9881 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 299, - "character": 5 - } - ], "type": { "type": "instrinct", - "name": "object" + "isArray": true, + "name": "string" + } + } + ], + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 79, + "character": 20 + } + ] + }, + { + "id": 233, + "name": "pipe", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPrivate": true, + "isExported": true + }, + "signatures": [ + { + "id": 234, + "name": "pipe", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 235, + "name": "fn", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Function" } }, { - "id": 9854, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", + "id": 236, + "name": "fns", + "kind": 32768, + "kindString": "Parameter", + "flags": { + "isRest": true + }, + "type": { + "type": "reference", + "isArray": true, + "name": "Function" + } + } + ], + "type": { + "type": "reference", + "name": "(Anonymous function)" + } + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 160, + "character": 14 + } + ] + }, + { + "id": 230, + "name": "setAssetsDir", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPrivate": true, + "isExported": true + }, + "signatures": [ + { + "id": 231, + "name": "setAssetsDir", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 232, + "name": "root", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "name": "prependAssetsDir" + } + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 150, + "character": 22 + } + ] + }, + { + "id": 212, + "name": "setFileExt", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPrivate": true, + "isExported": true + }, + "signatures": [ + { + "id": 213, + "name": "setFileExt", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 214, + "name": "ext", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "name": "(Anonymous function)" + } + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 50, + "character": 20 + } + ] + }, + { + "id": 218, + "name": "splitBase", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPrivate": true, + "isExported": true + }, + "signatures": [ + { + "id": 219, + "name": "splitBase", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 220, + "name": "str", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "type": { + "type": "instrinct", + "isArray": true, + "name": "string" + } + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 91, + "character": 19 + } + ] + }, + { + "id": 209, + "name": "splitString", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPrivate": true, + "isExported": true + }, + "signatures": [ + { + "id": 210, + "name": "splitString", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 211, + "name": "str", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "type": { + "type": "instrinct", + "isArray": true, + "name": "string" + } + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 39, + "character": 21 + } + ] + }, + { + "id": 206, + "name": "stripLeadingSlash", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPrivate": true, + "isExported": true + }, + "signatures": [ + { + "id": 207, + "name": "stripLeadingSlash", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 208, + "name": "str", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 25, + "character": 27 + } + ] + }, + { + "id": 221, + "name": "swapFileExt", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPrivate": true, + "isExported": true + }, + "signatures": [ + { + "id": 222, + "name": "swapFileExt", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 223, + "name": "ext", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "name": "string" + } + } + ], + "type": { + "type": "reference", + "name": "(Anonymous function)" + } + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 97, + "character": 21 + } + ] + }, + { + "id": 227, + "name": "validateFileArray", + "kind": 2048, + "kindString": "Method", + "flags": { + "isPrivate": true, + "isExported": true + }, + "signatures": [ + { + "id": 228, + "name": "validateFileArray", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ + { + "id": 229, + "name": "arr", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "instrinct", + "isArray": true, + "name": "string" + } + } + ], + "type": { + "type": "instrinct", + "name": "void" + } + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 126, + "character": 27 + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 200 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 201, + 192, + 202, + 196, + 188 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 224, + 215, + 233, + 230, + 212, + 218, + 209, + 206, + 221, + 227 + ] + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 1, + "character": 30 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 187 + ] + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown-processor.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 237, + "name": "\"src/app/services/markdown/markdown.service\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/services/markdown/markdown.service.ts", + "children": [ + { + "id": 238, + "name": "MarkdownService", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Injectable", + "type": { + "type": "reference", + "name": "Injectable" + }, + "arguments": {} + } + ], + "children": [ + { + "id": 240, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 242, + "name": "new MarkdownService", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 243, + "name": "http", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9855, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 276, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9856, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 277, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9857, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 278, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Left\"" - }, - { - "id": 9858, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 279, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, - { - "id": 9859, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 280, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9860, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 281, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9855, - 9856, - 9857, - 9858, - 9859, - 9860 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 275, - "character": 6 - } - ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "Http" } - }, + } + ], + "type": { + "type": "reference", + "name": "MarkdownService", + "id": 238 + } + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown.service.ts", + "line": 8, + "character": 24 + } + ] + }, + { + "id": 241, + "name": "http", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/services/markdown/markdown.service.ts", + "line": 10, + "character": 26 + } + ], + "type": { + "type": "reference", + "name": "Http" + } + }, + { + "id": 239, + "name": "processString", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/services/markdown/markdown.service.ts", + "line": 8, + "character": 23 + } + ], + "type": { + "type": "instrinct", + "name": "any" + } + }, + { + "id": 244, + "name": "get", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 245, + "name": "get", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "parameters": [ { - "id": 9861, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", + "id": 246, + "name": "file", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9862, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 284, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9863, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 285, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9864, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 286, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Right\"" - }, - { - "id": 9865, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 287, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - }, - { - "id": 9866, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 288, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9867, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 289, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9862, - 9863, - 9864, - 9865, - 9866, - 9867 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 283, - "character": 7 - } - ], "type": { "type": "instrinct", - "name": "object" + "name": "string" } - }, + } + ], + "type": { + "type": "reference", + "name": "Observable", + "typeArguments": [ + { + "type": "reference", + "name": "Response" + } + ] + } + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown.service.ts", + "line": 18, + "character": 12 + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 240 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 241, + 239 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 244 + ] + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown.service.ts", + "line": 6, + "character": 28 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 238 + ] + } + ], + "sources": [ + { + "fileName": "src/app/services/markdown/markdown.service.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5322, + "name": "\"src/app/site-components/example/code.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/site-components/example/code.component.ts", + "children": [ + { + "id": 5323, + "name": "CodeExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'code-example',\n template: ``,\n}" + } + } + ], + "children": [ + { + "id": 5329, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 5332, + "name": "new CodeExampleComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ { - "id": 9889, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", + "id": 5333, + "name": "_renderer", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9890, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 316, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9891, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 317, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9892, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 318, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 9893, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 319, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, - { - "id": 9894, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 320, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9895, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 321, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9890, - 9891, - 9892, - 9893, - 9894, - 9895 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 315, - "character": 7 - } - ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "Renderer2" } }, { - "id": 9882, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", + "id": 5334, + "name": "_el", + "kind": 32768, + "kindString": "Parameter", "flags": {}, - "children": [ - { - "id": 9883, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 308, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9884, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 309, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9885, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 310, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Spacebar\"" - }, - { - "id": 9886, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 311, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - }, - { - "id": 9887, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 312, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9888, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 313, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "32" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9883, - 9884, - 9885, - 9886, - 9887, - 9888 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 307, - "character": 7 - } - ], "type": { - "type": "instrinct", - "name": "object" + "type": "reference", + "name": "ElementRef" } - }, - { - "id": 9868, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", + } + ], + "type": { + "type": "reference", + "name": "CodeExampleComponent", + "id": 5323 + } + } + ], + "sources": [ + { + "fileName": "src/app/site-components/example/code.component.ts", + "line": 14, + "character": 30 + } + ] + }, + { + "id": 5331, + "name": "_el", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/site-components/example/code.component.ts", + "line": 18, + "character": 15 + } + ], + "type": { + "type": "reference", + "name": "ElementRef" + } + }, + { + "id": 5330, + "name": "_renderer", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/site-components/example/code.component.ts", + "line": 17, + "character": 21 + } + ], + "type": { + "type": "reference", + "name": "Renderer2" + } + }, + { + "id": 5324, + "name": "code", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "decorators": [ + { + "name": "Input", + "type": { + "type": "reference", + "name": "Input" + }, + "arguments": {} + } + ], + "sources": [ + { + "fileName": "src/app/site-components/example/code.component.ts", + "line": 9, + "character": 22 + } + ], + "type": { + "type": "instrinct", + "name": "string" + } + }, + { + "id": 5327, + "name": "codeNode", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/site-components/example/code.component.ts", + "line": 13, + "character": 18 + } + ], + "type": { + "type": "reference", + "name": "Node" + } + }, + { + "id": 5325, + "name": "language", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true, + "isPublic": true + }, + "decorators": [ + { + "name": "Input", + "type": { + "type": "reference", + "name": "Input" + }, + "arguments": {} + } + ], + "sources": [ + { + "fileName": "src/app/site-components/example/code.component.ts", + "line": 10, + "character": 26 + } + ], + "type": { + "type": "instrinct", + "name": "string" + } + }, + { + "id": 5328, + "name": "nativeElement", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/site-components/example/code.component.ts", + "line": 14, + "character": 23 + } + ], + "type": { + "type": "reference", + "name": "Node" + } + }, + { + "id": 5326, + "name": "preNode", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/app/site-components/example/code.component.ts", + "line": 12, + "character": 17 + } + ], + "type": { + "type": "reference", + "name": "Node" + } + }, + { + "id": 5335, + "name": "ngAfterViewInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true, + "isPublic": true + }, + "signatures": [ + { + "id": 5336, + "name": "ngAfterViewInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + } + } + ], + "sources": [ + { + "fileName": "src/app/site-components/example/code.component.ts", + "line": 22, + "character": 24 + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 5329 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 5331, + 5330, + 5324, + 5327, + 5325, + 5328, + 5326 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 5335 + ] + } + ], + "sources": [ + { + "fileName": "src/app/site-components/example/code.component.ts", + "line": 8, + "character": 33 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "AfterViewInit" + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5323 + ] + } + ], + "sources": [ + { + "fileName": "src/app/site-components/example/code.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5318, + "name": "\"src/app/site-components/example/example.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/site-components/example/example.component.ts", + "children": [ + { + "id": 5319, + "name": "ExampleComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'doc-example',\n templateUrl: 'example.template.html',\n}" + } + } + ], + "children": [ + { + "id": 5320, + "name": "ngOnInit", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 5321, + "name": "ngOnInit", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + } + } + ], + "sources": [ + { + "fileName": "src/app/site-components/example/example.component.ts", + "line": 9, + "character": 10 + } + ] + } + ], + "groups": [ + { + "title": "Methods", + "kind": 2048, + "children": [ + 5320 + ] + } + ], + "sources": [ + { + "fileName": "src/app/site-components/example/example.component.ts", + "line": 7, + "character": 29 + } + ], + "implementedTypes": [ + { + "type": "reference", + "name": "OnInit" + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5319 + ] + } + ], + "sources": [ + { + "fileName": "src/app/site-components/example/example.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5339, + "name": "\"src/app/site-components/footer/footer.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/site-components/footer/footer.component.ts", + "children": [ + { + "id": 5340, + "name": "SiteFooterComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'site-footer',\n templateUrl: 'footer.template.html',\n}" + } + } + ], + "sources": [ + { + "fileName": "src/app/site-components/footer/footer.component.ts", + "line": 7, + "character": 32 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5340 + ] + } + ], + "sources": [ + { + "fileName": "src/app/site-components/footer/footer.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5337, + "name": "\"src/app/site-components/header/header.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/site-components/header/header.component.ts", + "children": [ + { + "id": 5338, + "name": "SiteHeaderComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'site-header',\n templateUrl: 'header.template.html',\n}" + } + } + ], + "sources": [ + { + "fileName": "src/app/site-components/header/header.component.ts", + "line": 7, + "character": 32 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5338 + ] + } + ], + "sources": [ + { + "fileName": "src/app/site-components/header/header.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5341, + "name": "\"src/app/site-components/sitecomponents.module\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/app/site-components/sitecomponents.module.ts", + "children": [ + { + "id": 5342, + "name": "SiteComponentsModule", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "NgModule", + "type": { + "type": "reference", + "name": "NgModule" + }, + "arguments": { + "obj": "{\n declarations: [\n ExampleComponent,\n CodeExampleComponent,\n SiteHeaderComponent,\n SiteFooterComponent\n ],\n imports: [\n RouterModule\n ],\n exports: [\n ExampleComponent,\n CodeExampleComponent,\n SiteHeaderComponent,\n SiteFooterComponent\n ],\n}" + } + } + ], + "sources": [ + { + "fileName": "src/app/site-components/sitecomponents.module.ts", + "line": 25, + "character": 33 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5342 + ] + } + ], + "sources": [ + { + "fileName": "src/app/site-components/sitecomponents.module.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5354, + "name": "\"src/environments/environment\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/environments/environment.ts", + "children": [ + { + "id": 5355, + "name": "environment", + "kind": 2097152, + "kindString": "Object literal", + "flags": { + "isExported": true + }, + "children": [ + { + "id": 5362, + "name": "DOCS", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/environments/environment.ts", + "line": 7, + "character": 6 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 5363, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", "flags": {}, "children": [ { - "id": 9869, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 292, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9870, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 293, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9871, - "name": "key", + "id": 5367, + "name": "component", "kind": 32, "kindString": "Variable", "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 294, - "character": 7 + "fileName": "src/environments/environment.ts", + "line": 7, + "character": 93 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"Tab\"" - }, - { - "id": 9872, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 295, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - }, - { - "id": 9873, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 296, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" - }, - { - "id": 9874, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 297, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 9869, - 9870, - 9871, - 9872, - 9873, - 9874 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 291, - "character": 5 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 9840, - "name": "up", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 9841, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 260, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 9842, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 261, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "undefined" - }, - "defaultValue": " undefined" + "defaultValue": "\"AccordionExampleComponent\"" }, { - "id": 9843, - "name": "key", + "id": 5366, + "name": "item", "kind": 32, "kindString": "Variable", "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 262, - "character": 7 + "fileName": "src/environments/environment.ts", + "line": 7, + "character": 69 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"Up\"" - }, - { - "id": 9844, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 263, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" + "defaultValue": "\"Accordion\"" }, { - "id": 9845, - "name": "keyIdentifier", + "id": 5364, + "name": "link", "kind": 32, "kindString": "Variable", "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 264, - "character": 17 + "fileName": "src/environments/environment.ts", + "line": 7, + "character": 16 } ], "type": { "type": "instrinct", - "name": "undefined" + "name": "string" }, - "defaultValue": " undefined" + "defaultValue": "\"components/accordion\"" }, { - "id": 9846, - "name": "which", + "id": 5365, + "name": "section", "kind": 32, "kindString": "Variable", "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 265, - "character": 9 + "fileName": "src/environments/environment.ts", + "line": 7, + "character": 49 } ], "type": { "type": "instrinct", - "name": "number" + "name": "string" }, - "defaultValue": "38" + "defaultValue": "\"Components\"" } ], "groups": [ @@ -217107,53 +121180,43 @@ "title": "Variables", "kind": 32, "children": [ - 9841, - 9842, - 9843, - 9844, - 9845, - 9846 + 5367, + 5366, + 5364, + 5365 ] } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 259, - "character": 4 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - } - ], - "groups": [ - { - "title": "Object literals", - "kind": 2097152, - "children": [ - 9896, - 9847, - 9833, - 9875, - 9854, - 9861, - 9889, - 9882, - 9868, - 9840 ] } - ] + } + ] + }, + "defaultValue": " [{\"link\":\"components/accordion\",\"section\":\"Components\",\"item\":\"Accordion\",\"component\":\"AccordionExampleComponent\"},{\"link\":\"components/actions/action-button\",\"section\":\"Components\",\"item\":\"Action Button\",\"component\":\"SamActionButtonExampleComponent\",\"subsection\":\"Actions\"},{\"link\":\"components/actions/actions-dropdown\",\"section\":\"Components\",\"item\":\"Actions Dropdown\",\"component\":\"SamActionsDropdownComponentExampleComponent\",\"subsection\":\"Actions\"},{\"link\":\"components/alert\",\"section\":\"Components\",\"item\":\"Alert\",\"component\":\"AlertExampleComponent\"},{\"link\":\"components/alert-footer\",\"section\":\"Components\",\"item\":\"Alert Footer\",\"component\":\"SamAlertFooterComponentExampleComponent\"},{\"link\":\"components/badge\",\"section\":\"Components\",\"item\":\"Badge\",\"component\":\"SamBadgeComponentExampleComponent\"},{\"link\":\"components/banner\",\"section\":\"Components\",\"item\":\"Banner\",\"component\":\"BannerExampleComponent\"},{\"link\":\"components/breadcrumbs\",\"section\":\"Components\",\"item\":\"Breadcrumbs\",\"component\":\"SamBreadcrumbsComponentExampleComponent\"},{\"link\":\"components/collapsible\",\"section\":\"Components\",\"item\":\"Collapsible\",\"component\":\"CollapsibleExampleComponent\"},{\"link\":\"components/comments\",\"section\":\"Components\",\"item\":\"Comments\",\"component\":\"SamCommentsComponentExampleComponent\"},{\"link\":\"components/download\",\"section\":\"Components\",\"item\":\"Download\",\"component\":\"DownloadExampleComponent\"},{\"link\":\"components/files\",\"section\":\"Components\",\"item\":\"Files\",\"component\":\"SamFilesComponentExampleComponent\"},{\"link\":\"components/filters-container\",\"section\":\"Components\",\"item\":\"Filters Container\",\"component\":\"FiltersContainerExampleComponent\"},{\"link\":\"components/header\",\"section\":\"Components\",\"item\":\"Header\",\"component\":\"SamHeaderComponentExampleComponent\"},{\"link\":\"components/history\",\"section\":\"Components\",\"item\":\"History\",\"component\":\"HistoryExampleComponent\"},{\"link\":\"components/image\",\"section\":\"Components\",\"item\":\"Image\",\"component\":\"SamImageComponentExampleComponent\"},{\"link\":\"components/info-accordion\",\"section\":\"Components\",\"item\":\"Info Accordion\",\"component\":\"InfoAccordionExampleComponent\"},{\"link\":\"components/label\",\"section\":\"Components\",\"item\":\"Label\",\"component\":\"LabelExampleComponent\"},{\"link\":\"components/modal\",\"section\":\"Components\",\"item\":\"Modal\",\"component\":\"ModalExampleComponent\"},{\"link\":\"components/multiselect-dropdown\",\"section\":\"Components\",\"item\":\"Multiselect Dropdown\",\"component\":\"MultiselectDropdownExampleComponent\"},{\"link\":\"components/pagination\",\"section\":\"Components\",\"item\":\"Pagination\",\"component\":\"PaginationExampleComponent\"},{\"link\":\"components/point-of-contact\",\"section\":\"Components\",\"item\":\"Point Of Contact\",\"component\":\"POCExampleComponent\"},{\"link\":\"components/progress-bar\",\"section\":\"Components\",\"item\":\"Progress Bar\",\"component\":\"SamProgressExampleComponent\"},{\"link\":\"components/sidenav\",\"section\":\"Components\",\"item\":\"Sidenav\",\"component\":\"SidenavExampleComponent\"},{\"link\":\"components/spinner\",\"section\":\"Components\",\"item\":\"Spinner\",\"component\":\"SpinnerExampleComponent\"},{\"link\":\"components/tabs\",\"section\":\"Components\",\"item\":\"Tabs\",\"component\":\"TabsExampleComponent\"},{\"link\":\"components/upload\",\"section\":\"Components\",\"item\":\"Upload\",\"component\":\"SamUploadComponentExampleComponent\"},{\"link\":\"directives/click-outside\",\"section\":\"Directives\",\"item\":\"Click Outside\",\"component\":\"ClickOutsideExampleComponent\"},{\"link\":\"directives/drag-drop\",\"section\":\"Directives\",\"item\":\"Drag Drop\",\"component\":\"SamDragDropDirectiveExampleComponent\"},{\"link\":\"directives/focus\",\"section\":\"Directives\",\"item\":\"Focus\",\"component\":\"SamFocusDirectiveExampleComponent\"},{\"link\":\"directives/sticky\",\"section\":\"Directives\",\"item\":\"Sticky\",\"component\":\"StickyExampleComponent\"},{\"link\":\"directives/tab-outside\",\"section\":\"Directives\",\"item\":\"Tab Outside\",\"component\":\"TabOutsideExampleComponent\"},{\"link\":\"elements/button\",\"section\":\"Elements\",\"item\":\"Button\",\"component\":\"ButtonExampleComponent\"},{\"link\":\"experimental/box\",\"section\":\"Experimental\",\"item\":\"Box\",\"component\":\"SamBoxComponentExampleComponent\"},{\"link\":\"experimental/container\",\"section\":\"Experimental\",\"item\":\"Container\",\"component\":\"SamContainerComponentExampleComponent\"},{\"link\":\"experimental/heading\",\"section\":\"Experimental\",\"item\":\"Heading\",\"component\":\"SamHeadingComponentExampleComponent\"},{\"link\":\"experimental/icon\",\"section\":\"Experimental\",\"item\":\"Icon\",\"component\":\"SamIconComponentExampleComponent\"},{\"link\":\"experimental/list\",\"section\":\"Experimental\",\"item\":\"List\",\"component\":\"SamListComponentExampleComponent\"},{\"link\":\"experimental/master-page\",\"section\":\"Experimental\",\"item\":\"Master Page\",\"component\":\"SamMasterPageComponentExampleComponent\"},{\"link\":\"experimental/page\",\"section\":\"Experimental\",\"item\":\"Page\",\"component\":\"SamPageComponentExampleComponent\"},{\"link\":\"experimental/sidebar\",\"section\":\"Experimental\",\"item\":\"Sidebar\",\"component\":\"SamSidebarComponentExampleComponent\"},{\"link\":\"experimental/youtube\",\"section\":\"Experimental\",\"item\":\"Youtube\",\"component\":\"SamYoutubeComponentExampleComponent\"},{\"link\":\"form-controls/autocomplete\",\"section\":\"Form Controls\",\"item\":\"Autocomplete\",\"component\":\"AutocompleteExampleComponent\"},{\"link\":\"form-controls/autocomplete-multiselect\",\"section\":\"Form Controls\",\"item\":\"Autocomplete Multiselect\",\"component\":\"AutocompleteMultiselectExampleComponent\"},{\"link\":\"form-controls/checkbox\",\"section\":\"Form Controls\",\"item\":\"Checkbox\",\"component\":\"CheckboxExampleComponent\"},{\"link\":\"form-controls/date\",\"section\":\"Form Controls\",\"item\":\"Date\",\"component\":\"DateExampleComponent\"},{\"link\":\"form-controls/date-range\",\"section\":\"Form Controls\",\"item\":\"Date Range\",\"component\":\"SamDateRangeComponentExampleComponent\"},{\"link\":\"form-controls/date-time\",\"section\":\"Form Controls\",\"item\":\"Date Time\",\"component\":\"DateTimeExampleComponent\"},{\"link\":\"form-controls/number\",\"section\":\"Form Controls\",\"item\":\"Number\",\"component\":\"NumberExampleComponent\"},{\"link\":\"form-controls/radiobutton\",\"section\":\"Form Controls\",\"item\":\"Radiobutton\",\"component\":\"RadioExampleComponent\"},{\"link\":\"form-controls/select\",\"section\":\"Form Controls\",\"item\":\"Select\",\"component\":\"SelectExampleComponent\"},{\"link\":\"form-controls/text\",\"section\":\"Form Controls\",\"item\":\"Text\",\"component\":\"TextExampleComponent\"},{\"link\":\"form-controls/textarea\",\"section\":\"Form Controls\",\"item\":\"Textarea\",\"component\":\"TextareaExampleComponent\"},{\"link\":\"form-controls/time\",\"section\":\"Form Controls\",\"item\":\"Time\",\"component\":\"TimeExampleComponent\"},{\"link\":\"form-controls/toggle-switch\",\"section\":\"Form Controls\",\"item\":\"Toggle Switch\",\"component\":\"ToggleSwitchExampleComponent\"},{\"link\":\"form-templates/name-entry\",\"section\":\"Form Templates\",\"item\":\"Name Entry\",\"component\":\"NameEntryExampleComponent\"},{\"link\":\"form-templates/phone-entry\",\"section\":\"Form Templates\",\"item\":\"Phone Entry\",\"component\":\"PhoneEntryExampleComponent\"},{\"link\":\"service-directives/autocomplete/country\",\"section\":\"Service Directives\",\"item\":\"Country\",\"component\":\"CountryServiceDirectiveExampleComponent\",\"subsection\":\"Autocomplete\"},{\"link\":\"service-directives/autocomplete/state\",\"section\":\"Service Directives\",\"item\":\"State\",\"component\":\"StateServiceDirectiveExampleComponent\",\"subsection\":\"Autocomplete\"},{\"link\":\"wrappers/fieldset-wrapper\",\"section\":\"Wrappers\",\"item\":\"Fieldset Wrapper\",\"component\":\"FieldsetWrapperExampleComponent\"},{\"link\":\"wrappers/label-wrapper\",\"section\":\"Wrappers\",\"item\":\"Label Wrapper\",\"component\":\"LabelWrapperExampleComponent\"}]" + }, + { + "id": 5368, + "name": "ENV", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/environments/environment.ts", + "line": 8, + "character": 5 } + ], + "type": { + "type": "instrinct", + "name": "string" }, - "defaultValue": " IEMocks" + "defaultValue": "\"undefined\"" }, { - "id": 10047, - "name": "safari", + "id": 5356, + "name": "STATICPAGES", "kind": 32, "kindString": "Variable", "flags": { @@ -217161,1176 +121224,587 @@ }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 337, - "character": 8 + "fileName": "src/environments/environment.ts", + "line": 6, + "character": 13 } ], "type": { - "type": "reflection", - "declaration": { - "id": 10048, - "name": "__type", - "kind": 65536, - "kindString": "Type literal", - "flags": {}, - "children": [ - { - "id": 10112, - "name": "backspace", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 10113, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 158, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10114, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 159, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 10115, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 160, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Backspace\"" - }, - { - "id": 10116, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 161, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - }, - { - "id": 10117, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 162, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"U+0008\"" - }, - { - "id": 10118, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 163, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "8" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 10113, - 10114, - 10115, - 10116, - 10117, - 10118 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 157, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 10063, - "name": "down", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 10064, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 102, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10065, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 103, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, - { - "id": 10066, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 104, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowDown\"" - }, - { - "id": 10067, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 105, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - }, - { - "id": 10068, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 106, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Down\"" - }, - { - "id": 10069, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 107, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "40" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 10064, - 10065, - 10066, - 10067, - 10068, - 10069 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 101, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 10049, - "name": "enter", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 10050, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 86, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10051, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 87, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 10052, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 88, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 10053, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 89, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - }, - { - "id": 10054, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 90, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Enter\"" - }, - { - "id": 10055, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 91, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "13" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 10050, - 10051, - 10052, - 10053, - 10054, - 10055 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 85, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 10091, - "name": "esc", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 10092, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 134, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10093, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 135, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Escape\"" - }, - { - "id": 10094, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 136, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Escape\"" - }, - { - "id": 10095, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 137, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - }, - { - "id": 10096, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 138, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"U+001B\"" - }, - { - "id": 10097, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 139, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "27" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 10092, - 10093, - 10094, - 10095, - 10096, - 10097 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 133, - "character": 5 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 10070, - "name": "left", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 10071, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 110, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10072, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 111, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowLeft\"" - }, - { - "id": 10073, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 112, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowLeft\"" - }, - { - "id": 10074, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 113, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - }, - { - "id": 10075, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 114, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Left\"" - }, - { - "id": 10076, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 115, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "37" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 10071, - 10072, - 10073, - 10074, - 10075, - 10076 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 109, - "character": 6 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 10077, - "name": "right", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 10078, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 118, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10079, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 119, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowRight\"" - }, - { - "id": 10080, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 120, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowRight\"" - }, - { - "id": 10081, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 121, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - }, - { - "id": 10082, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 122, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Right\"" - }, - { - "id": 10083, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 123, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "39" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 10078, - 10079, - 10080, - 10081, - 10082, - 10083 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 117, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 10105, - "name": "shift", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 10106, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 150, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10107, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 151, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ShiftLeft\"" - }, - { - "id": 10108, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 152, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 10109, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 153, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - }, - { - "id": 10110, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 154, - "character": 17 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Shift\"" - }, - { - "id": 10111, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 155, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "16" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 10106, - 10107, - 10108, - 10109, - 10110, - 10111 - ] - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 149, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 10098, - "name": "space", - "kind": 2097152, - "kindString": "Object literal", + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 5357, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", "flags": {}, "children": [ { - "id": 10099, - "name": "charCode", + "id": 5358, + "name": "file", "kind": 32, "kindString": "Variable", "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 142, - "character": 12 + "fileName": "src/environments/environment.ts", + "line": 6, + "character": 23 } ], "type": { "type": "instrinct", - "name": "number" + "name": "string" }, - "defaultValue": "0" + "defaultValue": "\"/Users/carlos.valle/Code/sam-design-system/src/_static/architecture/Form-Service.md\"" }, { - "id": 10100, - "name": "code", + "id": 5361, + "name": "item", "kind": 32, "kindString": "Variable", "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 143, - "character": 8 + "fileName": "src/environments/environment.ts", + "line": 6, + "character": 176 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"Space\"" + "defaultValue": "\"Form Service\"" }, { - "id": 10101, - "name": "key", + "id": 5359, + "name": "link", "kind": 32, "kindString": "Variable", "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 144, - "character": 7 + "fileName": "src/environments/environment.ts", + "line": 6, + "character": 116 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\" \"" + "defaultValue": "\"architecture/form-service\"" }, { - "id": 10102, - "name": "keyCode", + "id": 5360, + "name": "section", "kind": 32, "kindString": "Variable", "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 145, - "character": 11 + "fileName": "src/environments/environment.ts", + "line": 6, + "character": 154 } ], "type": { "type": "instrinct", - "name": "number" + "name": "string" }, - "defaultValue": "32" - }, + "defaultValue": "\"Architecture\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 5358, + 5361, + 5359, + 5360 + ] + } + ] + } + } + ] + }, + "defaultValue": " [{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/architecture/Form-Service.md\",\"link\":\"architecture/form-service\",\"section\":\"Architecture\",\"item\":\"Form Service\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/architecture/Modules-And-Lazy-Loading.md\",\"link\":\"architecture/modules-and-lazy-loading\",\"section\":\"Architecture\",\"item\":\"Modules And Lazy Loading\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/architecture/Title-Service.md\",\"link\":\"architecture/title-service\",\"section\":\"Architecture\",\"item\":\"Title Service\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/overview/Contribute.md\",\"link\":\"overview/contribute\",\"section\":\"Overview\",\"item\":\"Contribute\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/overview/Getting-Started.md\",\"link\":\"overview/getting-started\",\"section\":\"Overview\",\"item\":\"Getting Started\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/overview/Giving-Back.md\",\"link\":\"overview/giving-back\",\"section\":\"Overview\",\"item\":\"Giving Back\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/overview/How-to-use-this-site.md\",\"link\":\"overview/how-to-use-this-site\",\"section\":\"Overview\",\"item\":\"How To Use This Site\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Basic-Page.md\",\"link\":\"pages/basic-page\",\"section\":\"Pages\",\"item\":\"Basic Page\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Buttons-and-Links.md\",\"link\":\"pages/buttons-and-links\",\"section\":\"Pages\",\"item\":\"Buttons And Links\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Colors.md\",\"link\":\"pages/colors\",\"section\":\"Pages\",\"item\":\"Colors\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Complex-Data-Entry.md\",\"link\":\"pages/complex-data-entry\",\"section\":\"Pages\",\"item\":\"Complex Data Entry\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Global-Elements.md\",\"link\":\"pages/global-elements\",\"section\":\"Pages\",\"item\":\"Global Elements\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Graphics-and-Images.md\",\"link\":\"pages/graphics-and-images\",\"section\":\"Pages\",\"item\":\"Graphics And Images\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/List-Page.md\",\"link\":\"pages/list-page\",\"section\":\"Pages\",\"item\":\"List Page\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Page-Templates.md\",\"link\":\"pages/page-templates\",\"section\":\"Pages\",\"item\":\"Page Templates\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Simple-Data-Entry.md\",\"link\":\"pages/simple-data-entry\",\"section\":\"Pages\",\"item\":\"Simple Data Entry\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Typography.md\",\"link\":\"pages/typography\",\"section\":\"Pages\",\"item\":\"Typography\"},{\"file\":\"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Workspace-Page.md\",\"link\":\"pages/workspace-page\",\"section\":\"Pages\",\"item\":\"Workspace Page\"}]" + }, + { + "id": 5369, + "name": "production", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/environments/environment.ts", + "line": 9, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "false" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 5362, + 5368, + 5356, + 5369 + ] + } + ], + "sources": [ + { + "fileName": "src/environments/environment.ts", + "line": 5, + "character": 24 + } + ], + "type": { + "type": "instrinct", + "name": "object" + } + } + ], + "groups": [ + { + "title": "Object literals", + "kind": 2097152, + "children": [ + 5355 + ] + } + ], + "sources": [ + { + "fileName": "src/environments/environment.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5377, + "name": "\"src/environments/environment.prod\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/environments/environment.prod.ts", + "children": [ + { + "id": 5378, + "name": "environment", + "kind": 2097152, + "kindString": "Object literal", + "flags": { + "isExported": true + }, + "children": [ + { + "id": 5379, + "name": "production", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/environments/environment.prod.ts", + "line": 2, + "character": 12 + } + ], + "type": { + "type": "instrinct", + "name": "boolean" + }, + "defaultValue": "true" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 5379 + ] + } + ], + "sources": [ + { + "fileName": "src/environments/environment.prod.ts", + "line": 1, + "character": 24 + } + ], + "type": { + "type": "instrinct", + "name": "object" + } + } + ], + "groups": [ + { + "title": "Object literals", + "kind": 2097152, + "children": [ + 5378 + ] + } + ], + "sources": [ + { + "fileName": "src/environments/environment.prod.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5370, + "name": "\"src/main\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/main.ts", + "sources": [ + { + "fileName": "src/main.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5382, + "name": "\"src/patterns/home/patterns-home.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/patterns/home/patterns-home.component.ts", + "children": [ + { + "id": 5383, + "name": "PatternsHomeComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'patterns-home.template.html'\n}" + } + } + ], + "sources": [ + { + "fileName": "src/patterns/home/patterns-home.component.ts", + "line": 6, + "character": 34 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5383 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/home/patterns-home.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5439, + "name": "\"src/patterns/pages/page-a/page.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/patterns/pages/page-a/page.component.ts", + "children": [ + { + "id": 5440, + "name": "PageAComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'page.template.html'\n}" + } + } + ], + "sources": [ + { + "fileName": "src/patterns/pages/page-a/page.component.ts", + "line": 6, + "character": 27 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5440 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/pages/page-a/page.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5441, + "name": "\"src/patterns/pages/page-b/page.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/patterns/pages/page-b/page.component.ts", + "children": [ + { + "id": 5442, + "name": "PageBComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'page.template.html'\n}" + } + } + ], + "sources": [ + { + "fileName": "src/patterns/pages/page-b/page.component.ts", + "line": 6, + "character": 27 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5442 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/pages/page-b/page.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5426, + "name": "\"src/patterns/pages/pages.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/patterns/pages/pages.component.ts", + "children": [ + { + "id": 5427, + "name": "PagesComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n template: `\n \n \n \n
    \n
    \n Patterns Home\n \n Page\n \n \n Implementation\n
    \n `\n}" + } + } + ], + "children": [ + { + "id": 5428, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 5430, + "name": "new PagesComponent", + "kind": 16384, + "kindString": "Constructor signature", + "flags": {}, + "parameters": [ + { + "id": 5431, + "name": "router", + "kind": 32768, + "kindString": "Parameter", + "flags": {}, + "type": { + "type": "reference", + "name": "Router" + } + } + ], + "type": { + "type": "reference", + "name": "PagesComponent", + "id": 5427 + } + } + ], + "sources": [ + { + "fileName": "src/patterns/pages/pages.component.ts", + "line": 22, + "character": 29 + } + ] + }, + { + "id": 5432, + "name": "pages", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/patterns/pages/pages.component.ts", + "line": 26, + "character": 7 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 5433, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ { - "id": 10103, - "name": "keyIdentifier", + "id": 5434, + "name": "name", "kind": 32, "kindString": "Variable", "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 146, - "character": 17 + "fileName": "src/patterns/pages/pages.component.ts", + "line": 27, + "character": 10 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"U+0020\"" + "defaultValue": "\"A\"" }, { - "id": 10104, - "name": "which", + "id": 5435, + "name": "value", "kind": 32, "kindString": "Variable", "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 147, - "character": 9 + "fileName": "src/patterns/pages/pages.component.ts", + "line": 27, + "character": 22 } ], "type": { "type": "instrinct", - "name": "number" + "name": "string" }, - "defaultValue": "32" + "defaultValue": "\"a\"" } ], "groups": [ @@ -218338,147 +121812,687 @@ "title": "Variables", "kind": 32, "children": [ - 10099, - 10100, - 10101, - 10102, - 10103, - 10104 + 5434, + 5435 ] } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 141, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, - { - "id": 10084, - "name": "tab", - "kind": 2097152, - "kindString": "Object literal", + ] + } + } + ] + }, + "defaultValue": " [\n { name: \"A\", value: \"a\" },\n { name: \"B\", value: \"b\" }\n ]" + }, + { + "id": 5429, + "name": "router", + "kind": 1024, + "kindString": "Property", + "flags": { + "isPrivate": true, + "isConstructorProperty": true, + "isExported": true + }, + "sources": [ + { + "fileName": "src/patterns/pages/pages.component.ts", + "line": 24, + "character": 29 + } + ], + "type": { + "type": "reference", + "name": "Router" + } + }, + { + "id": 5436, + "name": "selectedValue", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/patterns/pages/pages.component.ts", + "line": 31, + "character": 15 + } + ], + "type": { + "type": "instrinct", + "name": "any" + } + }, + { + "id": 5437, + "name": "navigateTo", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 5438, + "name": "navigateTo", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + } + } + ], + "sources": [ + { + "fileName": "src/patterns/pages/pages.component.ts", + "line": 33, + "character": 12 + } + ] + } + ], + "groups": [ + { + "title": "Constructors", + "kind": 512, + "children": [ + 5428 + ] + }, + { + "title": "Properties", + "kind": 1024, + "children": [ + 5432, + 5429, + 5436 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 5437 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/pages/pages.component.ts", + "line": 22, + "character": 27 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5427 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/pages/pages.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5446, + "name": "\"src/patterns/pages/pages.module\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/patterns/pages/pages.module.ts", + "children": [ + { + "id": 5447, + "name": "PagesModule", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "NgModule", + "type": { + "type": "reference", + "name": "NgModule" + }, + "arguments": { + "obj": "{\n imports: [\n CommonModule,\n FormsModule,\n PagesRoutingModule,\n SamUIKitModule\n ],\n declarations: [\n PagesComponent,\n PageAComponent,\n PageBComponent\n ]\n}" + } + } + ], + "sources": [ + { + "fileName": "src/patterns/pages/pages.module.ts", + "line": 25, + "character": 24 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5447 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/pages/pages.module.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5443, + "name": "\"src/patterns/pages/pages.routes\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/patterns/pages/pages.routes.ts", + "children": [ + { + "id": 5444, + "name": "PagesRoutingModule", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "NgModule", + "type": { + "type": "reference", + "name": "NgModule" + }, + "arguments": { + "obj": "{\n imports: [\n RouterModule.forChild(PageRoutes)\n ],\n exports: [\n RouterModule\n ]\n}" + } + } + ], + "sources": [ + { + "fileName": "src/patterns/pages/pages.routes.ts", + "line": 33, + "character": 31 + } + ] + }, + { + "id": 5445, + "name": "PageRoutes", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/patterns/pages/pages.routes.ts", + "line": 8, + "character": 16 + } + ], + "type": { + "type": "reference", + "name": "Routes" + }, + "defaultValue": " [\n {\n path: '',\n component: PagesComponent,\n children: [\n {\n path: 'a',\n component: PageAComponent\n },\n {\n path: 'b',\n component: PageBComponent\n }\n ]\n }\n]" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5444 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 5445 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/pages/pages.routes.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5380, + "name": "\"src/patterns/patterns.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/patterns/patterns.component.ts", + "children": [ + { + "id": 5381, + "name": "PatternsComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n template: `\n \n \n `\n}" + } + } + ], + "sources": [ + { + "fileName": "src/patterns/patterns.component.ts", + "line": 9, + "character": 30 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5381 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/patterns.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5424, + "name": "\"src/patterns/patterns.module\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/patterns/patterns.module.ts", + "children": [ + { + "id": 5425, + "name": "ExamplesModule", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "NgModule", + "type": { + "type": "reference", + "name": "NgModule" + }, + "arguments": { + "obj": "{\n declarations: [\n HomeComponent,\n StarterPageComponent,\n BasicPageCodeComponent,\n SidebarBreadcrumbsPageComponent,\n SidebarBreadcrumbsPageCodeComponent,\n TitleOptionsPageComponent,\n TitleOptionsPageCodeComponent,\n PatternsComponent,\n PatternsHomeComponent\n ],\n imports: [\n CommonModule,\n PatternsRoutingModule,\n SamUIKitModule,\n SiteComponentsModule\n ],\n exports: [\n ],\n}" + } + } + ], + "sources": [ + { + "fileName": "src/patterns/patterns.module.ts", + "line": 43, + "character": 27 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5425 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/patterns.module.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5421, + "name": "\"src/patterns/patterns.routes\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/patterns/patterns.routes.ts", + "children": [ + { + "id": 5422, + "name": "PatternsRoutingModule", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "NgModule", + "type": { + "type": "reference", + "name": "NgModule" + }, + "arguments": { + "obj": "{\n imports: [\n RouterModule.forChild(patternsRoutes)\n ],\n exports: [\n RouterModule\n ]\n}" + } + } + ], + "sources": [ + { + "fileName": "src/patterns/patterns.routes.ts", + "line": 79, + "character": 34 + } + ] + }, + { + "id": 5423, + "name": "patternsRoutes", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/patterns/patterns.routes.ts", + "line": 16, + "character": 20 + } + ], + "type": { + "type": "reference", + "name": "Routes" + }, + "defaultValue": " [\n {\n path: 'page',\n loadChildren: './pages/pages.module#PagesModule'\n },\n {\n path: 'v1',\n component: PatternsComponent,\n children:[\n {\n path: 'home',\n component: HomeComponent\n },\n { \n path: 'basic-page-code', \n outlet:'codesection',\n component: BasicPageCodeComponent\n },\n { \n path: 'sidebar-breadcrumbs-code', \n component: SidebarBreadcrumbsPageCodeComponent, \n outlet:'codesection'\n },\n { \n path: 'title-options-code', \n component: TitleOptionsPageCodeComponent, \n outlet:'codesection'\n },\n { \n path: 'starter-page', \n component: StarterPageComponent \n },\n { \n path: 'sidebar-breadcrumbs', \n component: SidebarBreadcrumbsPageComponent \n },\n { \n path: 'title-options', \n component: TitleOptionsPageComponent \n }\n ]\n },\n {\n path: 'latest',\n component: PatternsComponent,\n children: [\n {\n path: 'home',\n component: PatternsHomeComponent\n }\n ]\n },\n]" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5422 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 5423 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/patterns.routes.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5384, + "name": "\"src/patterns/version-1/patterns-home.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/patterns/version-1/patterns-home.component.ts", + "children": [ + { + "id": 5385, + "name": "HomeComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'patterns-home.template.html'\n}" + } + } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/patterns-home.component.ts", + "line": 6, + "character": 26 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5385 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/patterns-home.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5394, + "name": "\"src/patterns/version-1/sidebar-breadcrumbs.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "children": [ + { + "id": 5408, + "name": "SidebarBreadcrumbsPageCodeComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n template: `\n
    \n
    \n

    Page with side navigation and breadcrumbs

    \n \n \n \n \n \n \n \n \n \n
    \n
    \n `,\n}" + } + } + ], + "children": [ + { + "id": 5410, + "name": "code_component", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 122, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_component" + }, + { + "id": 5409, + "name": "code_template", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 121, + "character": 15 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example_template" + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 5410, + 5409 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 120, + "character": 48 + } + ] + }, + { + "id": 5395, + "name": "SidebarBreadcrumbsPageComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'sidebar-breadcrumbs.template.html',\n}" + } + } + ], + "children": [ + { + "id": 5405, + "name": "breadcrumbs", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 45, + "character": 13 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 5406, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", "flags": {}, "children": [ { - "id": 10085, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 126, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10086, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 127, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 10087, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 128, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Tab\"" - }, - { - "id": 10088, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 129, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" - }, - { - "id": 10089, - "name": "keyIdentifier", + "id": 5407, + "name": "breadcrumb", "kind": 32, "kindString": "Variable", "flags": {}, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 130, - "character": 17 + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 47, + "character": 16 } ], "type": { "type": "instrinct", "name": "string" }, - "defaultValue": "\"U+0009\"" - }, - { - "id": 10090, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 131, - "character": 9 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "9" + "defaultValue": "\"Lorem ipsum dolor\"" } ], "groups": [ @@ -218486,258 +122500,1031 @@ "title": "Variables", "kind": 32, "children": [ - 10085, - 10086, - 10087, - 10088, - 10089, - 10090 + 5407 ] } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 125, - "character": 5 - } - ], - "type": { - "type": "instrinct", - "name": "object" - } - }, + ] + } + } + ] + }, + "defaultValue": " [\n { breadcrumb: 'Consectetur adipiscing', url: '/' },\n { breadcrumb: 'Lorem ipsum dolor'}\n ]" + }, + { + "id": 5396, + "name": "showSection", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 10, + "character": 13 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " ['sidebar-breadcrumbs-code']" + }, + { + "id": 5397, + "name": "toggleCode", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 5398, + "name": "toggleCode", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + } + } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 11, + "character": 12 + } + ] + }, + { + "id": 5399, + "name": "sidenavModel", + "kind": 2097152, + "kindString": "Object literal", + "flags": { + "isExported": true + }, + "children": [ + { + "id": 5401, + "name": "children", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "id": 10056, - "name": "up", - "kind": 2097152, - "kindString": "Object literal", - "flags": {}, - "children": [ - { - "id": 10057, - "name": "charCode", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 94, - "character": 12 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "0" - }, - { - "id": 10058, - "name": "code", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 95, - "character": 8 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowUp\"" - }, - { - "id": 10059, - "name": "key", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 96, - "character": 7 - } - ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"ArrowUp\"" - }, - { - "id": 10060, - "name": "keyCode", - "kind": 32, - "kindString": "Variable", + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 21, + "character": 12 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 5402, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", "flags": {}, - "sources": [ + "children": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 97, - "character": 11 - } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - }, - { - "id": 10061, - "name": "keyIdentifier", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "id": 5403, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 23, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Lorem ipsum dolor\"" + }, { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 98, - "character": 17 + "id": 5404, + "name": "route", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 24, + "character": 13 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"#\"" } ], - "type": { - "type": "instrinct", - "name": "string" - }, - "defaultValue": "\"Up\"" - }, - { - "id": 10062, - "name": "which", - "kind": 32, - "kindString": "Variable", - "flags": {}, - "sources": [ + "groups": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 99, - "character": 9 + "title": "Variables", + "kind": 32, + "children": [ + 5403, + 5404 + ] } - ], - "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "38" - } - ], - "groups": [ - { - "title": "Variables", - "kind": 32, - "children": [ - 10057, - 10058, - 10059, - 10060, - 10061, - 10062 ] } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 93, - "character": 4 - } - ], - "type": { - "type": "instrinct", - "name": "object" } - } - ], - "groups": [ + ] + }, + "defaultValue": " [\n {\n label: \"Lorem ipsum dolor\",\n route: \"#\"\n },\n {\n label: \"Nullam at mauris\",\n route: \"#\"\n },\n {\n label: \"Maecenas feugiat\",\n route: \"#\"\n },\n {\n label: \"Nunc non tellus\",\n route: \"#\"\n },\n {\n label: \"Aenean in felis congue\",\n route: \"#\"\n }\n ]" + }, + { + "id": 5400, + "name": "label", + "kind": 32, + "kindString": "Variable", + "flags": { + "isExported": true + }, + "sources": [ { - "title": "Object literals", - "kind": 2097152, - "children": [ - 10112, - 10063, - 10049, - 10091, - 10070, - 10077, - 10105, - 10098, - 10084, - 10056 - ] + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 20, + "character": 9 } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"SideNavigation\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 5401, + 5400 ] } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 19, + "character": 14 + } + ], + "type": { + "type": "instrinct", + "name": "object" + } + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 5405, + 5396 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 5397 + ] + }, + { + "title": "Object literals", + "kind": 2097152, + "children": [ + 5399 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 8, + "character": 44 + } + ] + }, + { + "id": 5412, + "name": "code_example_component", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 70, + "character": 26 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\nimport { Component} from '@angular/core';\n\n// Relative path: adjust to match your folder structure\nimport { MenuItem } from 'sam-ui-elements/src/ui-kit/components/sidenav';\n\n@Component({\n template: 'your template html',\n})\nexport class SidebarBreadcrumbsPageComponent{\n\n sidenavModel: MenuItem = {\n label: \"SideNavigation\",\n children: [\n {\n label: \"Lorem ipsum dolor\",\n route: \"#\"\n },\n {\n label: \"Nullam at mauris\",\n route: \"#\"\n }\n ]\n };\n \n breadcrumbs = [\n { breadcrumb: 'Consectetur adipiscing', url: '/' },\n { breadcrumb: 'Lorem ipsum dolor'}\n ];\n \n}`" + }, + { + "id": 5411, + "name": "code_example_template", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 53, + "character": 25 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n\n \n \n \n\n

    \n Quisque lacinia commodo neque et suscipit. Integer rutrum mauris ex, non \n ornare leo interdum nec. Suspendisse vitae tortor aliquam, tincidunt metus \n ut, cursus est. Maecenas luctus maximus se...\n

    \n
    `" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5408, + 5395 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 5412, + 5411 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/sidebar-breadcrumbs.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5386, + "name": "\"src/patterns/version-1/starter-page.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/patterns/version-1/starter-page.component.ts", + "children": [ + { + "id": 5391, + "name": "BasicPageCodeComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n template: `\n
    \n
    \n

    Basic Page Code

    \n \n
    \n
    \n `,\n}" + } + } + ], + "children": [ + { + "id": 5392, + "name": "code", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/patterns/version-1/starter-page.component.ts", + "line": 36, + "character": 6 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example" + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 5392 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/starter-page.component.ts", + "line": 35, + "character": 35 + } + ] + }, + { + "id": 5387, + "name": "StarterPageComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'starter-page.template.html',\n}" + } + } + ], + "children": [ + { + "id": 5388, + "name": "showSection", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/patterns/version-1/starter-page.component.ts", + "line": 7, + "character": 13 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " ['basic-page-code']" + }, + { + "id": 5389, + "name": "toggleCode", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 5390, + "name": "toggleCode", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + } + } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/starter-page.component.ts", + "line": 8, + "character": 12 + } + ] + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 5388 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 5389 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/starter-page.component.ts", + "line": 6, + "character": 33 + } + ] + }, + { + "id": 5393, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/patterns/version-1/starter-page.component.ts", + "line": 17, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n

    \n Quisque lacinia commodo neque et suscipit. Integer rutrum mauris ex, non \n ornare leo interdum nec. Suspendisse vitae tor...\n

    \n
    `" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5391, + 5387 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 5393 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/starter-page.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5413, + "name": "\"src/patterns/version-1/title-options.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/patterns/version-1/title-options.component.ts", + "children": [ + { + "id": 5418, + "name": "TitleOptionsPageCodeComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n template: `\n
    \n
    \n

    Page with all available title options

    \n \n
    \n
    \n `,\n}" + } + } + ], + "children": [ + { + "id": 5419, + "name": "code", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/patterns/version-1/title-options.component.ts", + "line": 47, + "character": 6 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " code_example" + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 5419 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/title-options.component.ts", + "line": 46, + "character": 42 + } + ] + }, + { + "id": 5414, + "name": "TitleOptionsPageComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'title-options.template.html',\n}" + } + } + ], + "children": [ + { + "id": 5415, + "name": "showSection", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, + "sources": [ + { + "fileName": "src/patterns/version-1/title-options.component.ts", + "line": 9, + "character": 13 + } + ], + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "instrinct", + "name": "string" + } + ] + }, + "defaultValue": " ['title-options-code']" + }, + { + "id": 5416, + "name": "toggleCode", + "kind": 2048, + "kindString": "Method", + "flags": { + "isExported": true + }, + "signatures": [ + { + "id": 5417, + "name": "toggleCode", + "kind": 4096, + "kindString": "Call signature", + "flags": {}, + "type": { + "type": "instrinct", + "name": "void" + } + } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/title-options.component.ts", + "line": 10, + "character": 12 + } + ] + } + ], + "groups": [ + { + "title": "Properties", + "kind": 1024, + "children": [ + 5415 + ] + }, + { + "title": "Methods", + "kind": 2048, + "children": [ + 5416 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/title-options.component.ts", + "line": 8, + "character": 38 + } + ] + }, + { + "id": 5420, + "name": "code_example", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/patterns/version-1/title-options.component.ts", + "line": 21, + "character": 16 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": " `\n\n\n

    \n Quisque lacinia commodo neque et suscipit. Integer rutrum mauris ex, non \n ornare leo interdum nec. Suspendisse vitae tor...\n

    \n \n
    `" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5418, + 5414 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 5420 + ] + } + ], + "sources": [ + { + "fileName": "src/patterns/version-1/title-options.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5371, + "name": "\"src/polyfills\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/polyfills.ts", + "comment": { + "shortText": "This file includes polyfills needed by Angular and is loaded before the app.\nYou can add your own extra polyfills to this file.", + "text": "This file is divided into 2 sections:\n 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.\n 2. Application imports. Files imported after ZoneJS that should be loaded before your main\n file.\n\nThe current setup is for so-called \"evergreen\" browsers; the last versions of browsers that\nautomatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),\nEdge >= 13 on the desktop, and iOS 10 and Chrome on mobile.\n\nLearn more in https://angular.io/docs/ts/latest/guide/browser-support.html\n\n\n" + }, + "sources": [ + { + "fileName": "src/polyfills.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5481, + "name": "\"src/prototypes/components/main-nav/component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/prototypes/components/main-nav/component.ts", + "children": [ + { + "id": 5482, + "name": "MainNavComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n selector: 'prototype-nav',\n templateUrl: 'template.html'\n}" + } + } + ], + "sources": [ + { + "fileName": "src/prototypes/components/main-nav/component.ts", + "line": 7, + "character": 29 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5482 + ] + } + ], + "sources": [ + { + "fileName": "src/prototypes/components/main-nav/component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5474, + "name": "\"src/prototypes/components/picker/component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/prototypes/components/picker/component.ts", + "children": [ + { + "id": 5475, + "name": "PickerComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'template.html'\n}" + } + } + ], + "sources": [ + { + "fileName": "src/prototypes/components/picker/component.ts", + "line": 6, + "character": 28 + } + ] + }, + { + "id": 5476, + "name": "PickerLevel2Component", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'template-2.html'\n}" + } + } + ], + "sources": [ + { + "fileName": "src/prototypes/components/picker/component.ts", + "line": 12, + "character": 34 + } + ] + }, + { + "id": 5477, + "name": "PickerLevel3Component", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'template-3.html'\n}" + } + } + ], + "sources": [ + { + "fileName": "src/prototypes/components/picker/component.ts", + "line": 17, + "character": 34 + } + ] + }, + { + "id": 5478, + "name": "PickerLevel4Component", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" }, - "defaultValue": " SafariMocks" + "arguments": { + "obj": "{\n templateUrl: 'template-4.html'\n}" + } } ], - "groups": [ + "sources": [ { - "title": "Variables", - "kind": 32, - "children": [ - 9975, - 9903, - 9831, - 10047 - ] + "fileName": "src/prototypes/components/picker/component.ts", + "line": 22, + "character": 34 + } + ] + }, + { + "id": 5479, + "name": "PickerLevel5Component", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'template-5.html'\n}" + } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", - "line": 333, - "character": 18 + "fileName": "src/prototypes/components/picker/component.ts", + "line": 27, + "character": 34 + } + ] + }, + { + "id": 5480, + "name": "PickerLevel6Component", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'template-6.html'\n}" + } } ], - "type": { - "type": "instrinct", - "name": "object" - } + "sources": [ + { + "fileName": "src/prototypes/components/picker/component.ts", + "line": 32, + "character": 34 + } + ] } ], "groups": [ { - "title": "Object literals", - "kind": 2097152, + "title": "Classes", + "kind": 128, "children": [ - 9546, - 9688, - 9759, - 9617, - 9830 + 5475, + 5476, + 5477, + 5478, + 5479, + 5480 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/utilities/key-helper/key-mocks.ts", + "fileName": "src/prototypes/components/picker/component.ts", "line": 1, "character": 0 } ] }, { - "id": 4631, - "name": "\"src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component\"", + "id": 5455, + "name": "\"src/prototypes/components/prototypes-components.component\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/prototypes/components/prototypes-components.component.ts", "children": [ { - "id": 4632, - "name": "FieldsetWrapper", + "id": 5456, + "name": "ComponentsComponent", "kind": 128, "kindString": "Class", "flags": { @@ -218751,13 +123538,13 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-fieldset-wrapper',\n templateUrl: 'fieldset-wrapper.template.html',\n}" + "obj": "{\n template: `\n
    \n \n
    \n
    \n Prototypes Home\n \n Component\n \n
    \n `\n}" } } ], "children": [ { - "id": 4643, + "id": 5463, "name": "constructor", "kind": 512, "kindString": "Constructor", @@ -218766,426 +123553,196 @@ }, "signatures": [ { - "id": 4645, - "name": "new FieldsetWrapper", + "id": 5465, + "name": "new ComponentsComponent", "kind": 16384, "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 4646, - "name": "cdr", + "id": 5466, + "name": "router", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { "type": "reference", - "name": "ChangeDetectorRef" + "name": "Router" } } ], "type": { "type": "reference", - "name": "FieldsetWrapper", - "id": 4632 + "name": "ComponentsComponent", + "id": 5456 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 36, - "character": 28 + "fileName": "src/prototypes/components/prototypes-components.component.ts", + "line": 37, + "character": 26 } ] }, { - "id": 4644, - "name": "cdr", + "id": 5458, + "name": "options", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, - "isConstructorProperty": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 38, - "character": 25 + "fileName": "src/prototypes/components/prototypes-components.component.ts", + "line": 32, + "character": 9 } ], "type": { "type": "reference", - "name": "ChangeDetectorRef" - } - }, - { - "id": 4642, - "name": "checkMore", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 36, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4635, - "name": "errorMessage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "set the error message" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 26, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 4634, - "name": "hint", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "sets the hint text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 22, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 4637, - "name": "hintContainer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'hintContainer'" + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 5459, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", + "flags": {}, + "children": [ + { + "id": 5460, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/prototypes/components/prototypes-components.component.ts", + "line": 33, + "character": 10 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Picker\"" + }, + { + "id": 5461, + "name": "value", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/prototypes/components/prototypes-components.component.ts", + "line": 33, + "character": 27 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"picker\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 5460, + 5461 + ] + } + ] + } } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 31, - "character": 50 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 4633, - "name": "label", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "sets the label text" + ] }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 18, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } + "defaultValue": " [\n { name: \"Picker\", value: \"picker\" },\n { name: \"Main Nav\", value: \"main-nav\" },\n ]" }, { - "id": 4641, - "name": "lineLimit", + "id": 5464, + "name": "router", "kind": 1024, "kindString": "Property", "flags": { "isPrivate": true, + "isConstructorProperty": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 35, - "character": 19 + "fileName": "src/prototypes/components/prototypes-components.component.ts", + "line": 39, + "character": 28 } ], "type": { - "type": "instrinct", - "name": "number" - }, - "defaultValue": "2" + "type": "reference", + "name": "Router" + } }, { - "id": 4640, - "name": "lineSize", + "id": 5462, + "name": "routerSubscription", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 34, - "character": 18 + "fileName": "src/prototypes/components/prototypes-components.component.ts", + "line": 37, + "character": 20 } ], "type": { "type": "instrinct", - "name": "number" + "name": "any" } }, { - "id": 4636, - "name": "required", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "toggles the required text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 30, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4638, - "name": "showToggle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 32, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4639, - "name": "toggleOpen", + "id": 5457, + "name": "selectedOption", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 33, - "character": 20 + "fileName": "src/prototypes/components/prototypes-components.component.ts", + "line": 30, + "character": 16 } ], "type": { "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4654, - "name": "calcToggle", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4655, - "name": "calcToggle", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 64, - "character": 19 - } - ] - }, - { - "id": 4662, - "name": "calculateNumberOfLines", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4663, - "name": "calculateNumberOfLines", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4664, - "name": "obj", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 87, - "character": 31 - } - ] + "name": "any" + } }, { - "id": 4665, - "name": "clearError", + "id": 5470, + "name": "navigateTo", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "signatures": [ { - "id": 4666, - "name": "clearError", + "id": 5471, + "name": "navigateTo", "kind": 4096, "kindString": "Call signature", "flags": {}, @@ -219197,41 +123754,27 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 101, - "character": 19 + "fileName": "src/prototypes/components/prototypes-components.component.ts", + "line": 58, + "character": 12 } ] }, { - "id": 4667, - "name": "formatErrors", + "id": 5472, + "name": "ngOnDestroy", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "signatures": [ { - "id": 4668, - "name": "formatErrors", + "id": 5473, + "name": "ngOnDestroy", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 4669, - "name": "control", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "AbstractControl" - } - } - ], "type": { "type": "instrinct", "name": "void" @@ -219240,32 +123783,31 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 105, - "character": 21 + "fileName": "src/prototypes/components/prototypes-components.component.ts", + "line": 64, + "character": 13 } ] }, { - "id": 4670, - "name": "formatInvalidErrors", + "id": 5467, + "name": "selectOption", "kind": 2048, "kindString": "Method", "flags": { - "isPrivate": true, "isExported": true }, "signatures": [ { - "id": 4671, - "name": "formatInvalidErrors", + "id": 5468, + "name": "selectOption", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 4672, - "name": "control", + "id": 5469, + "name": "value", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -219283,254 +123825,531 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 121, - "character": 29 + "fileName": "src/prototypes/components/prototypes-components.component.ts", + "line": 50, + "character": 14 } ] - }, + } + ], + "groups": [ { - "id": 4652, - "name": "ngAfterViewChecked", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4653, - "name": "ngAfterViewChecked", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 56, - "character": 27 - } + "title": "Constructors", + "kind": 512, + "children": [ + 5463 ] }, { - "id": 4650, - "name": "ngAfterViewInit", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4651, - "name": "ngAfterViewInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 52, - "character": 24 - } + "title": "Properties", + "kind": 1024, + "children": [ + 5458, + 5464, + 5462, + 5457 ] }, { - "id": 4647, - "name": "ngOnChanges", + "title": "Methods", "kind": 2048, - "kindString": "Method", + "children": [ + 5470, + 5472, + 5467 + ] + } + ], + "sources": [ + { + "fileName": "src/prototypes/components/prototypes-components.component.ts", + "line": 28, + "character": 32 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5456 + ] + } + ], + "sources": [ + { + "fileName": "src/prototypes/components/prototypes-components.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5486, + "name": "\"src/prototypes/components/prototypes-components.module\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/prototypes/components/prototypes-components.module.ts", + "children": [ + { + "id": 5487, + "name": "PrototypesComponentsModule", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "NgModule", + "type": { + "type": "reference", + "name": "NgModule" + }, + "arguments": { + "obj": "{\n imports: [\n CommonModule,\n FormsModule,\n ComponentsRoutingModule,\n SamUIKitModule\n ],\n declarations: [\n ComponentsComponent,\n PickerComponent,\n PickerLevel2Component,\n PickerLevel3Component,\n PickerLevel4Component,\n PickerLevel5Component,\n PickerLevel6Component,\n MainNavComponent\n ],\n exports: [\n MainNavComponent\n ]\n}" + } + } + ], + "sources": [ + { + "fileName": "src/prototypes/components/prototypes-components.module.ts", + "line": 38, + "character": 39 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5487 + ] + } + ], + "sources": [ + { + "fileName": "src/prototypes/components/prototypes-components.module.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5483, + "name": "\"src/prototypes/components/prototypes-components.routes\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/prototypes/components/prototypes-components.routes.ts", + "children": [ + { + "id": 5484, + "name": "ComponentsRoutingModule", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "NgModule", + "type": { + "type": "reference", + "name": "NgModule" + }, + "arguments": { + "obj": "{\n imports: [\n RouterModule.forChild(PageRoutes)\n ],\n exports: [\n RouterModule\n ]\n}" + } + } + ], + "sources": [ + { + "fileName": "src/prototypes/components/prototypes-components.routes.ts", + "line": 60, + "character": 36 + } + ] + }, + { + "id": 5485, + "name": "PageRoutes", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/prototypes/components/prototypes-components.routes.ts", + "line": 15, + "character": 16 + } + ], + "type": { + "type": "reference", + "name": "Routes" + }, + "defaultValue": " [\n {\n path: '',\n component: ComponentsComponent,\n children: [\n {\n path: 'picker',\n component: PickerComponent\n },\n {\n path: 'picker-2',\n component: PickerLevel2Component\n },\n {\n path: 'picker-3',\n component: PickerLevel3Component\n },\n {\n path: 'picker-4',\n component: PickerLevel4Component\n },\n {\n path: 'picker-5',\n component: PickerLevel5Component\n },\n {\n path: 'picker-6',\n component: PickerLevel6Component\n },\n {\n path: 'main-nav',\n component: MainNavComponent\n }\n ]\n }\n]" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5484 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 5485 + ] + } + ], + "sources": [ + { + "fileName": "src/prototypes/components/prototypes-components.routes.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5448, + "name": "\"src/prototypes/home/prototypes-home.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/prototypes/home/prototypes-home.component.ts", + "children": [ + { + "id": 5449, + "name": "PrototypesHomeComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'prototypes-home.template.html'\n}" + } + } + ], + "sources": [ + { + "fileName": "src/prototypes/home/prototypes-home.component.ts", + "line": 6, + "character": 36 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5449 + ] + } + ], + "sources": [ + { + "fileName": "src/prototypes/home/prototypes-home.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5513, + "name": "\"src/prototypes/pages/homepage/home.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/prototypes/pages/homepage/home.component.ts", + "children": [ + { + "id": 5514, + "name": "HomePageComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'home.template.html'\n}" + } + } + ], + "sources": [ + { + "fileName": "src/prototypes/pages/homepage/home.component.ts", + "line": 6, + "character": 30 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5514 + ] + } + ], + "sources": [ + { + "fileName": "src/prototypes/pages/homepage/home.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5488, + "name": "\"src/prototypes/pages/prototypes-pages.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/prototypes/pages/prototypes-pages.component.ts", + "children": [ + { + "id": 5489, + "name": "PagesComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n template: `\n \n \n\n
    \n \n
    \n Prototypes Home\n \n Page\n \n
    \n `\n}" + } + } + ], + "children": [ + { + "id": 5490, + "name": "constructor", + "kind": 512, + "kindString": "Constructor", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "signatures": [ { - "id": 4648, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", + "id": 5492, + "name": "new PagesComponent", + "kind": 16384, + "kindString": "Constructor signature", "flags": {}, "parameters": [ { - "id": 4649, - "name": "c", + "id": 5493, + "name": "router", "kind": 32768, "kindString": "Parameter", "flags": {}, "type": { - "type": "instrinct", - "name": "any" + "type": "reference", + "name": "Router" } } ], "type": { - "type": "instrinct", - "name": "void" + "type": "reference", + "name": "PagesComponent", + "id": 5489 } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 40, - "character": 20 + "fileName": "src/prototypes/pages/prototypes-pages.component.ts", + "line": 21, + "character": 29 } ] }, { - "id": 4656, - "name": "onResize", - "kind": 2048, - "kindString": "Method", + "id": 5494, + "name": "options", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "decorators": [ + "sources": [ { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'window:resize'", - "args": "['$event']" - } + "fileName": "src/prototypes/pages/prototypes-pages.component.ts", + "line": 24, + "character": 9 } ], - "signatures": [ - { - "id": 4657, - "name": "onResize", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4658, - "name": "event", - "kind": 32768, - "kindString": "Parameter", + "type": { + "type": "reference", + "name": "Array", + "typeArguments": [ + { + "type": "reflection", + "declaration": { + "id": 5495, + "name": "__type", + "kind": 65536, + "kindString": "Type literal", "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } + "children": [ + { + "id": 5496, + "name": "name", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/prototypes/pages/prototypes-pages.component.ts", + "line": 25, + "character": 10 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"Homepage\"" + }, + { + "id": 5497, + "name": "value", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/prototypes/pages/prototypes-pages.component.ts", + "line": 25, + "character": 29 + } + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"home\"" + } + ], + "groups": [ + { + "title": "Variables", + "kind": 32, + "children": [ + 5496, + 5497 + ] + } + ] } - ], - "type": { - "type": "instrinct", - "name": "void" } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 75, - "character": 17 - } - ] + ] + }, + "defaultValue": " [\n { name: \"Homepage\", value: \"home\" },\n { name: \"Search\", value: \"search\" },\n { name: \"Search Mobile\", value: \"search-mobile\" }\n ]" }, { - "id": 4673, - "name": "setInvalidError", - "kind": 2048, - "kindString": "Method", + "id": 5491, + "name": "router", + "kind": 1024, + "kindString": "Property", "flags": { "isPrivate": true, + "isConstructorProperty": true, "isExported": true }, - "signatures": [ + "sources": [ { - "id": 4674, - "name": "setInvalidError", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4675, - "name": "error", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 4676, - "name": "errorObject", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } + "fileName": "src/prototypes/pages/prototypes-pages.component.ts", + "line": 22, + "character": 29 } ], + "type": { + "type": "reference", + "name": "Router" + } + }, + { + "id": 5498, + "name": "selectedOption", + "kind": 1024, + "kindString": "Property", + "flags": { + "isExported": true + }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 140, - "character": 25 + "fileName": "src/prototypes/pages/prototypes-pages.component.ts", + "line": 30, + "character": 16 } - ] + ], + "type": { + "type": "instrinct", + "name": "any" + } }, { - "id": 4659, - "name": "toggleHint", + "id": 5499, + "name": "navigateTo", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "signatures": [ { - "id": 4660, - "name": "toggleHint", + "id": 5500, + "name": "navigateTo", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 4661, - "name": "status", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", "name": "void" @@ -219539,9 +124358,9 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 83, - "character": 19 + "fileName": "src/prototypes/pages/prototypes-pages.component.ts", + "line": 32, + "character": 12 } ] } @@ -219551,49 +124370,31 @@ "title": "Constructors", "kind": 512, "children": [ - 4643 + 5490 ] }, { "title": "Properties", "kind": 1024, "children": [ - 4644, - 4642, - 4635, - 4634, - 4637, - 4633, - 4641, - 4640, - 4636, - 4638, - 4639 + 5494, + 5491, + 5498 ] }, { "title": "Methods", "kind": 2048, "children": [ - 4654, - 4662, - 4665, - 4667, - 4670, - 4652, - 4650, - 4647, - 4656, - 4673, - 4659 + 5499 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 14, - "character": 28 + "fileName": "src/prototypes/pages/prototypes-pages.component.ts", + "line": 21, + "character": 27 } ] } @@ -219603,48 +124404,31 @@ "title": "Classes", "kind": 128, "children": [ - 4632 + 5489 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/fieldset-wrapper.component.ts", - "line": 1, - "character": 0 - } - ] - }, - { - "id": 4677, - "name": "\"src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/index\"", - "kind": 1, - "kindString": "External module", - "flags": { - "isExported": true - }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/index.ts", - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/fieldset-wrapper/index.ts", + "fileName": "src/prototypes/pages/prototypes-pages.component.ts", "line": 1, "character": 0 } ] }, { - "id": 4678, - "name": "\"src/sam-ui-elements/src/ui-kit/wrappers/index\"", + "id": 5528, + "name": "\"src/prototypes/pages/prototypes-pages.module\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/wrappers/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/prototypes/pages/prototypes-pages.module.ts", "children": [ { - "id": 4679, - "name": "SamWrapperModule", + "id": 5529, + "name": "PrototypesPagesModule", "kind": 128, "kindString": "Class", "flags": { @@ -219658,15 +124442,15 @@ "name": "NgModule" }, "arguments": { - "obj": "{\n imports: [ CommonModule ],\n declarations: [ FieldsetWrapper, LabelWrapper ],\n exports: [ FieldsetWrapper, LabelWrapper ]\n}" + "obj": "{\n imports: [\n CommonModule,\n FormsModule,\n PagesRoutingModule,\n SamUIKitModule,\n PrototypesComponentsModule\n ],\n declarations: [\n PagesComponent,\n SearchPageComponent,\n HomePageComponent,\n SearchMobileComponent\n ]\n}" } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/index.ts", - "line": 12, - "character": 29 + "fileName": "src/prototypes/pages/prototypes-pages.module.ts", + "line": 29, + "character": 34 } ] } @@ -219676,48 +124460,113 @@ "title": "Classes", "kind": 128, "children": [ - 4679 + 5529 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/index.ts", + "fileName": "src/prototypes/pages/prototypes-pages.module.ts", "line": 1, "character": 0 } ] }, { - "id": 4558, - "name": "\"src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/index\"", + "id": 5525, + "name": "\"src/prototypes/pages/prototypes-pages.routes\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/index.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/prototypes/pages/prototypes-pages.routes.ts", + "children": [ + { + "id": 5526, + "name": "PagesRoutingModule", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "NgModule", + "type": { + "type": "reference", + "name": "NgModule" + }, + "arguments": { + "obj": "{\n imports: [\n RouterModule.forChild(PageRoutes)\n ],\n exports: [\n RouterModule\n ]\n}" + } + } + ], + "sources": [ + { + "fileName": "src/prototypes/pages/prototypes-pages.routes.ts", + "line": 38, + "character": 31 + } + ] + }, + { + "id": 5527, + "name": "PageRoutes", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/prototypes/pages/prototypes-pages.routes.ts", + "line": 9, + "character": 16 + } + ], + "type": { + "type": "reference", + "name": "Routes" + }, + "defaultValue": " [\n {\n path: '',\n component: PagesComponent,\n children: [\n {\n path: 'home',\n component: HomePageComponent\n },\n {\n path: 'search',\n component: SearchPageComponent\n },\n {\n path: 'search-mobile',\n component: SearchMobileComponent\n }\n ]\n }\n]" + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5526 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 5527 + ] + } + ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/index.ts", + "fileName": "src/prototypes/pages/prototypes-pages.routes.ts", "line": 1, "character": 0 } ] }, { - "id": 4512, - "name": "\"src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component\"", + "id": 5515, + "name": "\"src/prototypes/pages/search-mobile/search.component\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/prototypes/pages/search-mobile/search.component.ts", "children": [ { - "id": 4513, - "name": "LabelWrapper", + "id": 5516, + "name": "SearchMobileComponent", "kind": 128, "kindString": "Class", "flags": { @@ -219731,427 +124580,45 @@ "name": "Component" }, "arguments": { - "obj": "{\n selector: 'sam-label-wrapper',\n templateUrl: 'label-wrapper.template.html',\n}" + "obj": "{\n templateUrl: 'search.template.html',\n animations:[\n trigger('filters', [\n state('close', style({\n display: 'none'\n })),\n state('open', style({\n display: 'block'\n }))\n ])\n ]\n}" } } ], "children": [ { - "id": 4527, - "name": "constructor", - "kind": 512, - "kindString": "Constructor", - "flags": { - "isExported": true - }, - "signatures": [ - { - "id": 4529, - "name": "new LabelWrapper", - "kind": 16384, - "kindString": "Constructor signature", - "flags": {}, - "parameters": [ - { - "id": 4530, - "name": "cdr", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - } - ], - "type": { - "type": "reference", - "name": "LabelWrapper", - "id": 4513 - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 47, - "character": 28 - } - ] - }, - { - "id": 4528, - "name": "cdr", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isConstructorProperty": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 49, - "character": 25 - } - ], - "type": { - "type": "reference", - "name": "ChangeDetectorRef" - } - }, - { - "id": 4526, - "name": "checkMore", + "id": 5520, + "name": "clicked", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 47, - "character": 19 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4519, - "name": "errorMessage", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "set the error message" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 39, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 4516, - "name": "hint", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "sets the hint text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 27, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 4521, - "name": "hintContainer", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'hintContainer'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 42, - "character": 50 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 4514, - "name": "label", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "sets the label text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 19, - "character": 23 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 4520, - "name": "labelDiv", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "decorators": [ - { - "name": "ViewChild", - "type": { - "type": "reference", - "name": "ViewChild" - }, - "arguments": { - "selector": "'labelDiv'" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "fileName": "src/prototypes/pages/search-mobile/search.component.ts", "line": 41, - "character": 40 - } - ], - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 4525, - "name": "lineLimit", - "kind": 1024, - "kindString": "Property", - "flags": { - "isPrivate": true, - "isExported": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 46, - "character": 19 + "character": 9 } ], "type": { "type": "instrinct", "name": "number" }, - "defaultValue": "2" + "defaultValue": "0" }, { - "id": 4524, - "name": "lineSize", + "id": 5517, + "name": "filterOptions", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 45, - "character": 18 - } - ], - "type": { - "type": "instrinct", - "name": "number" - } - }, - { - "id": 4515, - "name": "name", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "sets the name attribute value" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 23, - "character": 22 - } - ], - "type": { - "type": "instrinct", - "name": "string" - } - }, - { - "id": 4517, - "name": "required", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "deprecated, toggles the required text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 31, - "character": 26 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4518, - "name": "requiredFlag", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "comment": { - "shortText": "toggles the required text" - }, - "decorators": [ - { - "name": "Input", - "type": { - "type": "reference", - "name": "Input" - }, - "arguments": {} - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 35, - "character": 30 - } - ], - "type": { - "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4522, - "name": "showToggle", - "kind": 1024, - "kindString": "Property", - "flags": { - "isExported": true, - "isPublic": true - }, - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 43, - "character": 19 + "fileName": "src/prototypes/pages/search-mobile/search.component.ts", + "line": 36, + "character": 15 } ], "type": { @@ -220161,77 +124628,45 @@ "defaultValue": "false" }, { - "id": 4523, - "name": "toggleOpen", + "id": 5521, + "name": "filterState", "kind": 1024, "kindString": "Property", "flags": { - "isPrivate": true, "isExported": true }, "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 44, - "character": 20 + "fileName": "src/prototypes/pages/search-mobile/search.component.ts", + "line": 42, + "character": 13 } ], "type": { "type": "instrinct", - "name": "boolean" - }, - "defaultValue": "false" - }, - { - "id": 4538, - "name": "calcToggle", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true + "name": "string" }, - "signatures": [ - { - "id": 4539, - "name": "calcToggle", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 75, - "character": 19 - } - ] + "defaultValue": "\"close\"" }, { - "id": 4546, - "name": "calculateNumberOfLines", + "id": 5522, + "name": "clickFilter", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "signatures": [ { - "id": 4547, - "name": "calculateNumberOfLines", + "id": 5523, + "name": "clickFilter", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 4548, - "name": "obj", + "id": 5524, + "name": "event", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -220243,31 +124678,30 @@ ], "type": { "type": "instrinct", - "name": "number" + "name": "void" } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 98, - "character": 31 + "fileName": "src/prototypes/pages/search-mobile/search.component.ts", + "line": 43, + "character": 13 } ] }, { - "id": 4552, - "name": "clearError", + "id": 5518, + "name": "mouseOver", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "signatures": [ { - "id": 4553, - "name": "clearError", + "id": 5519, + "name": "mouseOver", "kind": 4096, "kindString": "Call signature", "flags": {}, @@ -220279,245 +124713,208 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 146, - "character": 19 + "fileName": "src/prototypes/pages/search-mobile/search.component.ts", + "line": 37, + "character": 11 } ] - }, + } + ], + "groups": [ { - "id": 4549, - "name": "formatErrors", - "kind": 2048, - "kindString": "Method", - "flags": { - "isExported": true, - "isPublic": true - }, - "signatures": [ - { - "id": 4550, - "name": "formatErrors", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4551, - "name": "control", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "reference", - "name": "AbstractControl" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], - "sources": [ - { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 112, - "character": 21 - } + "title": "Properties", + "kind": 1024, + "children": [ + 5520, + 5517, + 5521 ] }, { - "id": 4536, - "name": "ngAfterViewChecked", + "title": "Methods", "kind": 2048, - "kindString": "Method", + "children": [ + 5522, + 5518 + ] + } + ], + "sources": [ + { + "fileName": "src/prototypes/pages/search-mobile/search.component.ts", + "line": 34, + "character": 34 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5516 + ] + } + ], + "sources": [ + { + "fileName": "src/prototypes/pages/search-mobile/search.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5501, + "name": "\"src/prototypes/pages/search/search.component\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/prototypes/pages/search/search.component.ts", + "children": [ + { + "id": 5502, + "name": "SearchPageComponent", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "Component", + "type": { + "type": "reference", + "name": "Component" + }, + "arguments": { + "obj": "{\n templateUrl: 'search.template.html',\n animations: [\n trigger('filtersDrawer', [\n state('close', style({\n display: 'none',\n backgroundColor: 'white',\n width: '0'\n })),\n state('open', style({\n width: '*'\n })),\n transition('* => open', [\n query('*', style({ opacity: 0})),\n query(':self',[\n animate('250ms cubic-bezier(0.175, 0.885, 0.32, 1.275)'),\n ]),\n query('*', stagger('30ms', [\n animate('200ms 150ms ease-in', style({ opacity: 1 }))\n ]), { optional: true })\n ]),\n transition('open => close', [\n query('*', [\n style({ opacity: 1}),\n animate('200ms', style({\n opacity: 0,\n display: 'none'\n }))\n ]),\n query(':self',[\n animate('250ms 210ms cubic-bezier(0.175, 0.885, 0.32, 1.275)'),\n ])\n ])\n ]),\n trigger('searchResults',[\n transition('* => *', [\n query('.search-result', style({ opacity: 0})),\n query('.search-result', stagger('100ms', [\n animate('250ms 5.7s ease-in', style({\n opacity: 1\n }))\n ]))\n ])\n ]),\n // trigger('searchResults',[\n // transition('* => *', [\n // query('.search-result', style({ opacity: 0})),\n // query('.search-result', [\n // animate('100ms 5.6s ease-in', style({\n // opacity: 1\n // }))\n // ])\n // ])\n // ]),\n trigger('resultsLoading', [\n state('loading', style({\n display: 'block'\n })),\n state('done', style({\n opacity: 0,\n display: 'none'\n })),\n transition('* => *', [\n query('.search-result-loading', stagger('100ms', [\n animate('250ms 1s ease-in', style({\n opacity: 1\n }))\n ])),\n query('.search-result-loading', stagger('100ms reverse', [\n animate('250ms 3s ease-out', style({\n opacity: 0\n }))\n ])),\n query(':self', [\n animate('200ms', style({\n opacity: 0\n }))\n ]),\n ])\n ]),\n trigger('filterSlide', [\n transition('parent => child', [\n group([\n query(':enter', [\n style({\n transform: 'translateX(200px)',\n opacity: '0',\n height: '0',\n }),\n animate('250ms ease-out', style({\n transform: 'translateX(-100px)',\n opacity: '1',\n height: '*'\n }))\n ]),\n query(':leave', [\n style({\n opacity: '1',\n height: '*'\n }),\n animate('350ms ease-out', style({\n transform: 'translateX(-300px)',\n opacity: '0',\n height: '0',\n }))\n ]),\n ])\n ]),\n transition('child => parent', [\n group([\n query(':enter', [\n style({\n transform: 'translateX(-200px)',\n opacity: '0',\n height: '0',\n }),\n animate('250ms ease-out', style({\n transform: 'translateX(0px)',\n opacity: '1',\n height: '*',\n }))\n ]),\n query(':leave', [\n style({\n opacity: '1',\n height: '*'\n }),\n animate('350ms ease-out', style({\n transform: 'translateX(300px)',\n opacity: '0',\n height: '0',\n }))\n ]),\n ])\n ])\n ]),\n trigger('arrowAnimation', [\n transition('* => *', [\n query(\":enter\", [\n style({\n display: 'inline-block',\n transform: 'translateX(-15px)',\n width: '0'\n }),\n animate('250ms ease-in', style({\n display: 'inline-block',\n transform: 'translateX(0px)',\n width: '*'\n }))\n ], { optional: true }),\n query(\":leave\", [\n style({\n display: 'inline-block',\n transform: 'translateX(0px)',\n width: '*'\n }),\n animate('250ms ease-in', style({\n display: 'inline-block',\n transform: 'translateX(-15px)',\n width: '0'\n }))\n ], { optional: true })\n ])\n ])\n ]\n}" + } + } + ], + "children": [ + { + "id": 5507, + "name": "filterSlide", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "signatures": [ - { - "id": 4537, - "name": "ngAfterViewChecked", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 67, - "character": 27 + "fileName": "src/prototypes/pages/search/search.component.ts", + "line": 193, + "character": 15 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + } }, { - "id": 4534, - "name": "ngAfterViewInit", - "kind": 2048, - "kindString": "Method", + "id": 5503, + "name": "filtersDrawer", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "signatures": [ - { - "id": 4535, - "name": "ngAfterViewInit", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 63, - "character": 24 + "fileName": "src/prototypes/pages/search/search.component.ts", + "line": 186, + "character": 17 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"open\"" }, { - "id": 4531, - "name": "ngOnChanges", - "kind": 2048, - "kindString": "Method", + "id": 5504, + "name": "selectedDomain", + "kind": 1024, + "kindString": "Property", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "signatures": [ - { - "id": 4532, - "name": "ngOnChanges", - "kind": 4096, - "kindString": "Call signature", - "flags": {}, - "parameters": [ - { - "id": 4533, - "name": "c", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], - "type": { - "type": "instrinct", - "name": "void" - } - } - ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 51, - "character": 20 + "fileName": "src/prototypes/pages/search/search.component.ts", + "line": 187, + "character": 18 } - ] + ], + "type": { + "type": "instrinct", + "name": "string" + }, + "defaultValue": "\"All Award Data\"" }, { - "id": 4540, - "name": "onResize", + "id": 5511, + "name": "filterLink", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, - "decorators": [ - { - "name": "HostListener", - "type": { - "type": "reference", - "name": "HostListener" - }, - "arguments": { - "eventName": "'window:resize'", - "args": "['$event']" - } - } - ], "signatures": [ { - "id": 4541, - "name": "onResize", + "id": 5512, + "name": "filterLink", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 4542, - "name": "event", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { - "type": "instrinct", - "name": "void" + "type": "union", + "types": [ + { + "type": "stringLiteral", + "value": "Hide" + }, + { + "type": "stringLiteral", + "value": "Show" + } + ] } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 86, - "character": 17 + "fileName": "src/prototypes/pages/search/search.component.ts", + "line": 203, + "character": 14 } ] }, { - "id": 4554, - "name": "setInvalidErrors", + "id": 5508, + "name": "filterSlideToggle", "kind": 2048, "kindString": "Method", "flags": { - "isPrivate": true, "isExported": true }, "signatures": [ { - "id": 4555, - "name": "setInvalidErrors", + "id": 5509, + "name": "filterSlideToggle", "kind": 4096, "kindString": "Call signature", "flags": {}, "parameters": [ { - "id": 4556, - "name": "error", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - }, - { - "id": 4557, - "name": "errorObject", + "id": 5510, + "name": "domain", "kind": 32768, "kindString": "Parameter", "flags": {}, @@ -220529,47 +124926,33 @@ ], "type": { "type": "instrinct", - "name": "string" + "name": "void" } } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 150, - "character": 26 + "fileName": "src/prototypes/pages/search/search.component.ts", + "line": 194, + "character": 21 } ] }, { - "id": 4543, - "name": "toggleHint", + "id": 5505, + "name": "toggleFilters", "kind": 2048, "kindString": "Method", "flags": { - "isExported": true, - "isPublic": true + "isExported": true }, "signatures": [ { - "id": 4544, - "name": "toggleHint", + "id": 5506, + "name": "toggleFilters", "kind": 4096, "kindString": "Call signature", "flags": {}, - "parameters": [ - { - "id": 4545, - "name": "status", - "kind": 32768, - "kindString": "Parameter", - "flags": {}, - "type": { - "type": "instrinct", - "name": "any" - } - } - ], "type": { "type": "instrinct", "name": "void" @@ -220578,71 +124961,171 @@ ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 94, - "character": 19 + "fileName": "src/prototypes/pages/search/search.component.ts", + "line": 189, + "character": 17 } ] } ], "groups": [ - { - "title": "Constructors", - "kind": 512, - "children": [ - 4527 - ] - }, { "title": "Properties", "kind": 1024, "children": [ - 4528, - 4526, - 4519, - 4516, - 4521, - 4514, - 4520, - 4525, - 4524, - 4515, - 4517, - 4518, - 4522, - 4523 + 5507, + 5503, + 5504 ] }, { "title": "Methods", "kind": 2048, "children": [ - 4538, - 4546, - 4552, - 4549, - 4536, - 4534, - 4531, - 4540, - 4554, - 4543 + 5511, + 5508, + 5505 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", - "line": 15, - "character": 25 + "fileName": "src/prototypes/pages/search/search.component.ts", + "line": 183, + "character": 32 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5502 + ] + } + ], + "sources": [ + { + "fileName": "src/prototypes/pages/search/search.component.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5453, + "name": "\"src/prototypes/prototypes.module\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/prototypes/prototypes.module.ts", + "children": [ + { + "id": 5454, + "name": "PrototypesModule", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "NgModule", + "type": { + "type": "reference", + "name": "NgModule" + }, + "arguments": { + "obj": "{\n declarations: [\n PrototypesHomeComponent\n ],\n imports: [\n CommonModule,\n PrototypesRoutingModule,\n SamUIKitModule,\n SiteComponentsModule\n ],\n exports: [\n ],\n}" + } } ], - "implementedTypes": [ + "sources": [ { - "type": "reference", - "name": "AfterViewChecked" + "fileName": "src/prototypes/prototypes.module.ts", + "line": 23, + "character": 29 + } + ] + } + ], + "groups": [ + { + "title": "Classes", + "kind": 128, + "children": [ + 5454 + ] + } + ], + "sources": [ + { + "fileName": "src/prototypes/prototypes.module.ts", + "line": 1, + "character": 0 + } + ] + }, + { + "id": 5450, + "name": "\"src/prototypes/prototypes.routes\"", + "kind": 1, + "kindString": "External module", + "flags": { + "isExported": true + }, + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/prototypes/prototypes.routes.ts", + "children": [ + { + "id": 5451, + "name": "PrototypesRoutingModule", + "kind": 128, + "kindString": "Class", + "flags": { + "isExported": true + }, + "decorators": [ + { + "name": "NgModule", + "type": { + "type": "reference", + "name": "NgModule" + }, + "arguments": { + "obj": "{\n imports: [\n RouterModule.forChild(prototypesRoutes)\n ],\n exports: [\n RouterModule\n ]\n}" + } + } + ], + "sources": [ + { + "fileName": "src/prototypes/prototypes.routes.ts", + "line": 29, + "character": 36 } ] + }, + { + "id": 5452, + "name": "prototypesRoutes", + "kind": 32, + "kindString": "Variable", + "flags": {}, + "sources": [ + { + "fileName": "src/prototypes/prototypes.routes.ts", + "line": 6, + "character": 22 + } + ], + "type": { + "type": "reference", + "name": "Routes" + }, + "defaultValue": " [\n {\n path: '',\n component: PrototypesHomeComponent\n },\n {\n path: 'page',\n loadChildren: './pages/prototypes-pages.module#PrototypesPagesModule'\n },\n {\n path: 'component',\n loadChildren: './components/prototypes-components.module#PrototypesComponentsModule'\n }\n]" } ], "groups": [ @@ -220650,30 +125133,37 @@ "title": "Classes", "kind": 128, "children": [ - 4513 + 5451 + ] + }, + { + "title": "Variables", + "kind": 32, + "children": [ + 5452 ] } ], "sources": [ { - "fileName": "src/sam-ui-elements/src/ui-kit/wrappers/label-wrapper/label-wrapper.component.ts", + "fileName": "src/prototypes/prototypes.routes.ts", "line": 1, "character": 0 } ] }, { - "id": 9198, + "id": 5372, "name": "\"src/test\"", "kind": 1, "kindString": "External module", "flags": { "isExported": true }, - "originalName": "/Users/diego.ruiz/iae-work/web-standards-site/src/test.ts", + "originalName": "/Users/carlos.valle/Code/sam-design-system/src/test.ts", "children": [ { - "id": 9199, + "id": 5373, "name": "___karma__", "kind": 32, "kindString": "Variable", @@ -220691,7 +125181,7 @@ } }, { - "id": 9201, + "id": 5375, "name": "context", "kind": 32, "kindString": "Variable", @@ -220710,7 +125200,7 @@ "defaultValue": " require.context('./', true, /\\.spec\\.ts$/)" }, { - "id": 9200, + "id": 5374, "name": "require", "kind": 32, "kindString": "Variable", @@ -220733,9 +125223,9 @@ "title": "Variables", "kind": 32, "children": [ - 9199, - 9201, - 9200 + 5373, + 5375, + 5374 ] } ], @@ -220755,488 +125245,296 @@ "children": [ 7, 1, - 1820, - 1862, - 2617, - 2625, - 2651, - 2626, - 2650, - 2657, - 1912, - 1901, - 1926, - 1864, - 1900, - 137, - 146, - 134, - 1927, - 1932, - 1933, - 1943, - 1944, - 1959, - 2553, - 2561, - 2515, - 2562, - 2486, - 2564, - 2508, - 1960, - 1973, - 1974, - 1976, - 1977, - 1985, - 1986, - 1990, - 2565, - 2614, - 2616, - 2658, - 2043, - 1991, - 2050, - 2044, - 2128, - 2051, - 2160, - 2129, - 2195, - 2161, - 2227, - 2224, - 2228, - 2327, - 2259, - 2287, - 2266, - 2258, - 2232, - 3228, - 2326, - 2288, - 2330, - 2328, - 2371, - 2331, - 2372, - 25, - 97, - 84, - 3235, + 561, + 603, + 4731, + 4739, + 4765, + 4740, + 4764, + 4771, + 118, + 107, 132, - 35, - 3236, - 74, + 4103, + 4139, + 11, + 20, 8, - 1794, - 1817, - 1818, - 2977, - 2980, - 2981, - 2984, + 4140, + 4145, + 4146, + 4156, + 4157, + 4172, + 672, + 680, + 634, + 879, + 605, + 881, + 627, + 4173, + 4186, + 4187, + 4189, + 4190, + 4198, + 4199, + 4203, + 4678, + 4728, + 4730, + 4772, + 4256, + 4204, + 4263, + 4257, + 4348, + 4271, + 4380, + 4349, + 4415, + 4381, + 4419, + 4416, + 4420, + 4519, + 4451, + 4479, + 4458, + 4450, + 4424, + 4518, + 4480, + 4522, + 4520, + 4563, + 4523, + 4564, + 2574, + 2646, + 2633, + 2681, + 2584, + 2623, + 4264, + 4077, + 4100, + 4101, + 5091, + 5098, + 5099, + 5106, + 5107, + 5110, + 5251, + 5117, + 5111, + 5133, + 5118, + 5145, + 5134, + 5148, + 5146, + 5166, + 5149, + 5216, + 5181, + 5167, + 5235, + 5217, + 5250, + 5236, + 2724, + 3879, + 4073, + 2799, + 1945, + 3181, + 3014, 2985, - 2997, - 2998, + 3183, + 3243, + 3541, + 3650, + 3487, + 3540, + 3245, + 3393, + 4075, + 3702, + 3651, + 3737, + 3703, + 3794, + 3738, + 3850, + 3796, + 877, + 766, + 3852, + 3394, + 3878, + 3853, + 756, + 4919, + 4827, + 4774, + 4918, + 4828, + 5309, + 5084, + 5003, + 4987, + 4995, + 5089, + 5065, + 4935, + 4921, + 5020, + 4976, + 4967, + 5074, + 21, + 5063, + 681, + 686, + 702, + 707, + 693, + 692, + 687, + 5281, + 5298, + 5305, + 5269, + 5253, + 5307, 3001, - 3168, - 3008, - 3002, - 3058, - 3022, - 3009, - 3084, - 3066, - 3059, - 3143, - 3106, - 3085, - 3152, - 3144, - 3167, - 3153, - 1521, - 1596, - 1790, - 284, - 233, - 759, - 592, - 563, - 761, - 821, - 1119, - 1228, - 1065, - 1118, - 823, - 971, - 1792, - 1280, - 1229, - 1315, - 1281, - 1372, - 1316, - 1428, - 1374, - 1492, - 1430, - 1494, - 972, - 1520, - 1495, - 15, - 2805, - 2713, - 2660, - 2804, - 2714, - 3226, - 2970, - 2889, - 2873, - 2881, - 2975, - 2951, - 2821, - 2807, - 2906, - 2862, - 2853, - 2960, + 25, + 2719, + 2683, + 828, + 874, + 875, + 755, + 709, + 278, + 303, + 328, + 359, + 410, + 385, + 459, + 484, + 508, + 536, + 882, + 930, + 976, + 1001, + 1027, + 1052, + 1087, + 1115, + 1147, + 1172, + 1235, + 1268, + 1295, + 1329, + 1354, + 1379, + 1404, + 1435, + 5311, + 1460, + 1490, + 1515, + 1540, + 1564, + 5343, + 2571, + 2532, + 1595, + 1632, + 1662, + 1696, + 1732, + 1762, + 1804, + 1829, + 1854, + 1879, + 1955, + 1977, + 1905, + 2030, + 2099, + 2130, + 2073, + 2156, + 2182, + 2218, + 2253, + 2285, + 2317, + 2343, + 2368, + 2399, + 2432, + 2457, + 2556, + 2482, + 2507, + 247, + 5345, + 145, + 133, + 141, + 5376, + 184, 147, - 2949, - 2196, - 2201, - 2217, - 2222, - 2208, - 2207, - 2202, - 3198, - 3215, - 3222, - 3186, - 3170, - 3224, - 579, - 151, - 279, - 243, - 3237, - 467, - 513, - 561, - 560, - 514, - 4081, - 4106, - 4131, - 4162, - 4213, - 4188, - 4262, - 4287, - 4311, - 4339, - 4685, - 4733, - 4779, - 4804, - 4830, - 4855, - 4890, - 4918, - 4950, - 4975, - 5038, - 5071, - 5098, - 5132, - 5157, - 5182, - 5207, - 5238, - 9141, - 5263, - 5293, + 186, + 237, + 5322, 5318, - 5343, - 5367, - 9169, - 6374, - 6335, - 5398, - 5435, - 5465, - 5499, - 5535, - 5565, - 5607, - 5632, - 5657, - 5682, - 5758, - 5780, - 5708, - 5833, - 5902, - 5933, - 5876, - 5959, - 5985, - 6021, - 6056, - 6088, - 6120, - 6146, - 6171, - 6202, - 6235, - 6260, - 6359, - 6285, - 6310, - 4050, - 9171, - 3948, - 3936, - 3944, - 9202, - 3987, - 3950, - 3989, - 4040, - 9152, - 9148, - 9167, - 9180, - 9203, - 9196, - 9377, - 9383, - 9369, - 9412, - 9403, - 9363, - 9534, - 9418, - 9252, - 9206, - 9208, - 9250, - 9247, - 9421, - 9424, - 9425, - 9427, - 9428, - 9440, - 9441, - 9444, - 9532, - 9451, - 9445, - 9486, - 9464, - 9452, - 9507, - 9494, - 9487, - 9516, - 9508, - 9531, - 9517, - 9210, - 9220, - 9212, - 9239, - 9197, - 4364, - 4406, - 8530, - 8538, - 8564, - 8539, - 8563, - 8570, - 3921, - 3910, - 3935, - 7903, - 7939, - 3814, - 3823, - 3811, - 7940, - 7945, - 7946, - 7956, - 7957, - 7972, - 4475, - 4483, - 4437, - 4682, - 4408, - 4684, - 4430, - 7973, - 7986, - 7987, - 7989, - 7990, - 7998, - 7999, - 8003, - 8478, - 8527, - 8529, - 8571, - 8056, - 8004, - 8063, - 8057, - 8148, - 8071, - 8180, - 8149, - 8215, - 8181, - 8219, - 8216, - 8220, - 8319, - 8251, - 8279, - 8258, - 8250, - 8224, - 9536, - 8318, - 8280, - 8322, - 8320, - 8363, - 8323, - 8364, - 6377, - 6449, - 6436, - 9543, - 6484, - 6387, - 9544, - 6426, - 8064, - 7877, - 7900, - 7901, - 8890, - 8893, - 8894, - 8897, - 8898, - 8910, - 8911, - 8914, - 9081, - 8921, - 8915, - 8971, - 8935, - 8922, - 8997, - 8979, - 8972, - 9056, - 9019, - 8998, - 9065, - 9057, - 9080, - 9066, - 7604, - 7679, - 7873, - 6527, - 5748, - 6906, - 6739, - 6710, - 6908, - 6968, - 7266, - 7375, - 7212, - 7265, - 6970, - 7118, - 7875, - 7427, - 7376, - 7462, - 7428, - 7519, - 7463, - 7575, - 7521, - 4680, - 4569, - 7577, - 7119, - 7603, - 7578, - 4559, - 8718, - 8626, - 8573, - 8717, - 8627, - 9139, - 8883, - 8802, - 8786, - 8794, - 8888, - 8864, - 8734, - 8720, - 8819, - 8775, - 8766, - 8873, - 3824, - 8862, - 4484, - 4489, - 4505, - 4510, - 4496, - 4495, - 4490, - 9111, - 9128, - 9135, - 9099, - 9083, - 9137, - 6726, - 3828, - 6522, - 6486, - 9545, - 4631, - 4677, - 4678, - 4558, - 4512, - 9198 + 5339, + 5337, + 5341, + 5354, + 5377, + 5370, + 5382, + 5439, + 5441, + 5426, + 5446, + 5443, + 5380, + 5424, + 5421, + 5384, + 5394, + 5386, + 5413, + 5371, + 5481, + 5474, + 5455, + 5486, + 5483, + 5448, + 5513, + 5488, + 5528, + 5525, + 5515, + 5501, + 5453, + 5450, + 5372 ] } ] diff --git a/src/environments/environment.ts b/src/environments/environment.ts index c0a8c12ad..599f2d6c6 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -3,7 +3,7 @@ import { EnvironmentVariables } from './environment.d'; export const environment: EnvironmentVariables = { - STATICPAGES: [{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/architecture/Form-Service.md","link":"architecture/form-service","section":"Architecture","item":"Form Service"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/architecture/Modules-And-Lazy-Loading.md","link":"architecture/modules-and-lazy-loading","section":"Architecture","item":"Modules And Lazy Loading"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/architecture/Title-Service.md","link":"architecture/title-service","section":"Architecture","item":"Title Service"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/overview/Contribute.md","link":"overview/contribute","section":"Overview","item":"Contribute"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/overview/Getting-Started.md","link":"overview/getting-started","section":"Overview","item":"Getting Started"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/overview/Giving-Back.md","link":"overview/giving-back","section":"Overview","item":"Giving Back"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/overview/How-to-use-this-site.md","link":"overview/how-to-use-this-site","section":"Overview","item":"How To Use This Site"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Basic-Page.md","link":"pages/basic-page","section":"Pages","item":"Basic Page"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Buttons-and-Links.md","link":"pages/buttons-and-links","section":"Pages","item":"Buttons And Links"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Colors.md","link":"pages/colors","section":"Pages","item":"Colors"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Complex-Data-Entry.md","link":"pages/complex-data-entry","section":"Pages","item":"Complex Data Entry"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Global-Elements.md","link":"pages/global-elements","section":"Pages","item":"Global Elements"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Graphics-and-Images.md","link":"pages/graphics-and-images","section":"Pages","item":"Graphics And Images"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/List-Page.md","link":"pages/list-page","section":"Pages","item":"List Page"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Page-Templates.md","link":"pages/page-templates","section":"Pages","item":"Page Templates"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Simple-Data-Entry.md","link":"pages/simple-data-entry","section":"Pages","item":"Simple Data Entry"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Typography.md","link":"pages/typography","section":"Pages","item":"Typography"},{"file":"/Users/diego.ruiz/iae-work/web-standards-site/src/_static/pages/Workspace-Page.md","link":"pages/workspace-page","section":"Pages","item":"Workspace Page"}], + STATICPAGES: [{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/architecture/Form-Service.md","link":"architecture/form-service","section":"Architecture","item":"Form Service"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/architecture/Modules-And-Lazy-Loading.md","link":"architecture/modules-and-lazy-loading","section":"Architecture","item":"Modules And Lazy Loading"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/architecture/Title-Service.md","link":"architecture/title-service","section":"Architecture","item":"Title Service"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/overview/Contribute.md","link":"overview/contribute","section":"Overview","item":"Contribute"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/overview/Getting-Started.md","link":"overview/getting-started","section":"Overview","item":"Getting Started"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/overview/Giving-Back.md","link":"overview/giving-back","section":"Overview","item":"Giving Back"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/overview/How-to-use-this-site.md","link":"overview/how-to-use-this-site","section":"Overview","item":"How To Use This Site"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Basic-Page.md","link":"pages/basic-page","section":"Pages","item":"Basic Page"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Buttons-and-Links.md","link":"pages/buttons-and-links","section":"Pages","item":"Buttons And Links"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Colors.md","link":"pages/colors","section":"Pages","item":"Colors"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Complex-Data-Entry.md","link":"pages/complex-data-entry","section":"Pages","item":"Complex Data Entry"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Global-Elements.md","link":"pages/global-elements","section":"Pages","item":"Global Elements"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Graphics-and-Images.md","link":"pages/graphics-and-images","section":"Pages","item":"Graphics And Images"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/List-Page.md","link":"pages/list-page","section":"Pages","item":"List Page"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Page-Templates.md","link":"pages/page-templates","section":"Pages","item":"Page Templates"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Simple-Data-Entry.md","link":"pages/simple-data-entry","section":"Pages","item":"Simple Data Entry"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Typography.md","link":"pages/typography","section":"Pages","item":"Typography"},{"file":"/Users/carlos.valle/Code/sam-design-system/src/_static/pages/Workspace-Page.md","link":"pages/workspace-page","section":"Pages","item":"Workspace Page"}], DOCS: [{"link":"components/accordion","section":"Components","item":"Accordion","component":"AccordionExampleComponent"},{"link":"components/actions/action-button","section":"Components","item":"Action Button","component":"SamActionButtonExampleComponent","subsection":"Actions"},{"link":"components/actions/actions-dropdown","section":"Components","item":"Actions Dropdown","component":"SamActionsDropdownComponentExampleComponent","subsection":"Actions"},{"link":"components/alert","section":"Components","item":"Alert","component":"AlertExampleComponent"},{"link":"components/alert-footer","section":"Components","item":"Alert Footer","component":"SamAlertFooterComponentExampleComponent"},{"link":"components/badge","section":"Components","item":"Badge","component":"SamBadgeComponentExampleComponent"},{"link":"components/banner","section":"Components","item":"Banner","component":"BannerExampleComponent"},{"link":"components/breadcrumbs","section":"Components","item":"Breadcrumbs","component":"SamBreadcrumbsComponentExampleComponent"},{"link":"components/collapsible","section":"Components","item":"Collapsible","component":"CollapsibleExampleComponent"},{"link":"components/comments","section":"Components","item":"Comments","component":"SamCommentsComponentExampleComponent"},{"link":"components/download","section":"Components","item":"Download","component":"DownloadExampleComponent"},{"link":"components/files","section":"Components","item":"Files","component":"SamFilesComponentExampleComponent"},{"link":"components/filters-container","section":"Components","item":"Filters Container","component":"FiltersContainerExampleComponent"},{"link":"components/header","section":"Components","item":"Header","component":"SamHeaderComponentExampleComponent"},{"link":"components/history","section":"Components","item":"History","component":"HistoryExampleComponent"},{"link":"components/image","section":"Components","item":"Image","component":"SamImageComponentExampleComponent"},{"link":"components/info-accordion","section":"Components","item":"Info Accordion","component":"InfoAccordionExampleComponent"},{"link":"components/label","section":"Components","item":"Label","component":"LabelExampleComponent"},{"link":"components/modal","section":"Components","item":"Modal","component":"ModalExampleComponent"},{"link":"components/multiselect-dropdown","section":"Components","item":"Multiselect Dropdown","component":"MultiselectDropdownExampleComponent"},{"link":"components/pagination","section":"Components","item":"Pagination","component":"PaginationExampleComponent"},{"link":"components/point-of-contact","section":"Components","item":"Point Of Contact","component":"POCExampleComponent"},{"link":"components/progress-bar","section":"Components","item":"Progress Bar","component":"SamProgressExampleComponent"},{"link":"components/sidenav","section":"Components","item":"Sidenav","component":"SidenavExampleComponent"},{"link":"components/spinner","section":"Components","item":"Spinner","component":"SpinnerExampleComponent"},{"link":"components/tabs","section":"Components","item":"Tabs","component":"TabsExampleComponent"},{"link":"components/upload","section":"Components","item":"Upload","component":"SamUploadComponentExampleComponent"},{"link":"directives/click-outside","section":"Directives","item":"Click Outside","component":"ClickOutsideExampleComponent"},{"link":"directives/drag-drop","section":"Directives","item":"Drag Drop","component":"SamDragDropDirectiveExampleComponent"},{"link":"directives/focus","section":"Directives","item":"Focus","component":"SamFocusDirectiveExampleComponent"},{"link":"directives/sticky","section":"Directives","item":"Sticky","component":"StickyExampleComponent"},{"link":"directives/tab-outside","section":"Directives","item":"Tab Outside","component":"TabOutsideExampleComponent"},{"link":"elements/button","section":"Elements","item":"Button","component":"ButtonExampleComponent"},{"link":"experimental/box","section":"Experimental","item":"Box","component":"SamBoxComponentExampleComponent"},{"link":"experimental/container","section":"Experimental","item":"Container","component":"SamContainerComponentExampleComponent"},{"link":"experimental/heading","section":"Experimental","item":"Heading","component":"SamHeadingComponentExampleComponent"},{"link":"experimental/icon","section":"Experimental","item":"Icon","component":"SamIconComponentExampleComponent"},{"link":"experimental/list","section":"Experimental","item":"List","component":"SamListComponentExampleComponent"},{"link":"experimental/master-page","section":"Experimental","item":"Master Page","component":"SamMasterPageComponentExampleComponent"},{"link":"experimental/page","section":"Experimental","item":"Page","component":"SamPageComponentExampleComponent"},{"link":"experimental/sidebar","section":"Experimental","item":"Sidebar","component":"SamSidebarComponentExampleComponent"},{"link":"experimental/youtube","section":"Experimental","item":"Youtube","component":"SamYoutubeComponentExampleComponent"},{"link":"form-controls/autocomplete","section":"Form Controls","item":"Autocomplete","component":"AutocompleteExampleComponent"},{"link":"form-controls/autocomplete-multiselect","section":"Form Controls","item":"Autocomplete Multiselect","component":"AutocompleteMultiselectExampleComponent"},{"link":"form-controls/checkbox","section":"Form Controls","item":"Checkbox","component":"CheckboxExampleComponent"},{"link":"form-controls/date","section":"Form Controls","item":"Date","component":"DateExampleComponent"},{"link":"form-controls/date-range","section":"Form Controls","item":"Date Range","component":"SamDateRangeComponentExampleComponent"},{"link":"form-controls/date-time","section":"Form Controls","item":"Date Time","component":"DateTimeExampleComponent"},{"link":"form-controls/number","section":"Form Controls","item":"Number","component":"NumberExampleComponent"},{"link":"form-controls/radiobutton","section":"Form Controls","item":"Radiobutton","component":"RadioExampleComponent"},{"link":"form-controls/select","section":"Form Controls","item":"Select","component":"SelectExampleComponent"},{"link":"form-controls/text","section":"Form Controls","item":"Text","component":"TextExampleComponent"},{"link":"form-controls/textarea","section":"Form Controls","item":"Textarea","component":"TextareaExampleComponent"},{"link":"form-controls/time","section":"Form Controls","item":"Time","component":"TimeExampleComponent"},{"link":"form-controls/toggle-switch","section":"Form Controls","item":"Toggle Switch","component":"ToggleSwitchExampleComponent"},{"link":"form-templates/name-entry","section":"Form Templates","item":"Name Entry","component":"NameEntryExampleComponent"},{"link":"form-templates/phone-entry","section":"Form Templates","item":"Phone Entry","component":"PhoneEntryExampleComponent"},{"link":"service-directives/autocomplete/country","section":"Service Directives","item":"Country","component":"CountryServiceDirectiveExampleComponent","subsection":"Autocomplete"},{"link":"service-directives/autocomplete/state","section":"Service Directives","item":"State","component":"StateServiceDirectiveExampleComponent","subsection":"Autocomplete"},{"link":"wrappers/fieldset-wrapper","section":"Wrappers","item":"Fieldset Wrapper","component":"FieldsetWrapperExampleComponent"},{"link":"wrappers/label-wrapper","section":"Wrappers","item":"Label Wrapper","component":"LabelWrapperExampleComponent"}], ENV: 'undefined', production: false diff --git a/src/patterns/patterns-home.component.ts b/src/patterns/home/patterns-home.component.ts similarity index 71% rename from src/patterns/patterns-home.component.ts rename to src/patterns/home/patterns-home.component.ts index 50411165d..ebdb5474e 100644 --- a/src/patterns/patterns-home.component.ts +++ b/src/patterns/home/patterns-home.component.ts @@ -3,6 +3,4 @@ import { Component } from '@angular/core'; @Component({ templateUrl: 'patterns-home.template.html' }) -export class PatternsHomeComponent { - -} \ No newline at end of file +export class PatternsHomeComponent { } \ No newline at end of file diff --git a/src/patterns/home/patterns-home.template.html b/src/patterns/home/patterns-home.template.html new file mode 100644 index 000000000..321258e63 --- /dev/null +++ b/src/patterns/home/patterns-home.template.html @@ -0,0 +1,46 @@ + + + + + \ No newline at end of file diff --git a/src/patterns/pages/page-a/page-doc.component.ts b/src/patterns/pages/page-a/page-doc.component.ts deleted file mode 100644 index e9d82a62e..000000000 --- a/src/patterns/pages/page-a/page-doc.component.ts +++ /dev/null @@ -1,58 +0,0 @@ -import { Component} from '@angular/core'; - -let code_example_template = ` - - - - - - -

    - Quisque lacinia commodo neque et suscipit. Integer rutrum mauris ex, non - ornare leo interdum nec. Suspendisse vitae tortor aliquam, tincidunt metus - ut, cursus est. Maecenas luctus maximus se... -

    -
    `; - -let code_example_component = ` -import { Component} from '@angular/core'; - -// Relative path: adjust to match your folder structure -import { MenuItem } from 'sam-ui-elements/src/ui-kit/components/sidenav'; - -@Component({ - template: 'your template html', -}) -export class PageComponent{ - - sidenavModel: MenuItem = { - label: "SideNavigation", - children: [ - { - label: "Lorem ipsum dolor", - route: "#" - }, - { - label: "Nullam at mauris", - route: "#" - } - ] - }; - - breadcrumbs = [ - { breadcrumb: 'Consectetur adipiscing', url: '/' }, - { breadcrumb: 'Lorem ipsum dolor'} - ]; - -}`; - -@Component({ - templateUrl: "page-doc.template.html" -}) -export class PageADocComponent{ - code_template: string = code_example_template; - code_component: string = code_example_component; -} \ No newline at end of file diff --git a/src/patterns/pages/page-a/page-doc.template.html b/src/patterns/pages/page-a/page-doc.template.html deleted file mode 100644 index 2223f39cd..000000000 --- a/src/patterns/pages/page-a/page-doc.template.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/patterns/pages/page-a/page-settings.component.ts b/src/patterns/pages/page-a/page-settings.component.ts deleted file mode 100644 index 927d4b242..000000000 --- a/src/patterns/pages/page-a/page-settings.component.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { Component} from '@angular/core'; -import { PagesService } from '../pages.service'; - -@Component({ - templateUrl: 'page-settings.template.html' -}) -export class PageASettingsComponent{ - radioModel: any = 'lorem'; - radioConfig = { - options: [ - {value: 'help', label: 'SAM Help Section', name: 'radio-help'}, - {value: 'lorem', label: 'Lorem Ipsum', name: 'radio-lorem'} - ], - name: 'radio-settings', - label: 'Select data', - errorMessage: '', - hint: '' - }; - - constructor(private pagesservice: PagesService){ - this.radioModel = this.pagesservice.PageA.value; - } - - updateData(value){ - this.pagesservice.updatePageData("PageA", value); - } - -} \ No newline at end of file diff --git a/src/patterns/pages/page-a/page-settings.template.html b/src/patterns/pages/page-a/page-settings.template.html deleted file mode 100644 index 93146e6da..000000000 --- a/src/patterns/pages/page-a/page-settings.template.html +++ /dev/null @@ -1,11 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/patterns/pages/page-a/page.component.ts b/src/patterns/pages/page-a/page.component.ts old mode 100644 new mode 100755 index de8d38224..8aba48239 --- a/src/patterns/pages/page-a/page.component.ts +++ b/src/patterns/pages/page-a/page.component.ts @@ -1,18 +1,6 @@ import { Component} from '@angular/core'; -import { MenuItem } from 'sam-ui-elements/src/ui-kit/components/sidenav'; -import { SamMasterPageService } from 'sam-ui-elements/src/ui-kit/experimental/master-page/index'; -import { PagesService } from '../pages.service'; @Component({ templateUrl: 'page.template.html' }) -export class PageAComponent { - - constructor( - private masterpageservice: SamMasterPageService, - private pagesservice: PagesService) { - masterpageservice.docLink = 'a-doc'; - masterpageservice.settingsLink = 'a-settings'; - } - -} +export class PageAComponent { } \ No newline at end of file diff --git a/src/patterns/pages/page-a/page.template.html b/src/patterns/pages/page-a/page.template.html old mode 100644 new mode 100755 index fe6abca68..977891d38 --- a/src/patterns/pages/page-a/page.template.html +++ b/src/patterns/pages/page-a/page.template.html @@ -1,79 +1,129 @@ - - - - - - {{ pagesservice.PageA.data.sidebarLink }} - - - - - - - - - - - - - - - - - -

    - -
    - - - - -

    -
    - - - - -

    - - - - - - -
    - - - - -

    -

    -
    - - - - - - - - -
    + + + + + + + + + + + Learning Center + + + + + + + + + + + + + Sign Up Now + +

    You can now create your user account in SAM

    + +
    + + + + + + + Title of video that is small + + + + + + Title of video that is a little bit longer + + + + + +

    + SAM Users can generally be grouped in to three types: federal users, award recipients (entity users), and public + users. +

    +
    + + + What You Can Do Without An Account + + +

    + You can search for the following public information without a user account. +

    + + + Federal assistance listings + Contract opportunities + Contract awards + Entity registrations + Entity exclusions + Federal hierarchy + Wage determinations + + + + Sign Up Now + +

    + While you won't be able to access any additional capabilities yet, you can prepare by creating your account now. When the + additional features become ready in the upcoming months, you'll be ready to sign in. +

    +

    + Note: Even if you have an existing account in one of the legacy systems (e.g., SAM.gov, FBO.gov, CFDA.gov) + you'll need to create a new account for beta.SAM.gov. In the future, after all of the individual systems are retired, + this account will be your only account for all of our features +

    + + + + + Learning Center: User Accounts + + + + + + Video + + + + + + FAQs + + + + + + Articles + + + + + + Definitions + + + + + +
    \ No newline at end of file diff --git a/src/patterns/pages/page-b/page-doc.component.ts b/src/patterns/pages/page-b/page-doc.component.ts deleted file mode 100644 index e05626456..000000000 --- a/src/patterns/pages/page-b/page-doc.component.ts +++ /dev/null @@ -1,58 +0,0 @@ -import { Component} from '@angular/core'; - -let code_example_template = ` - - - - - - -

    - Quisque lacinia commodo neque et suscipit. Integer rutrum mauris ex, non - ornare leo interdum nec. Suspendisse vitae tortor aliquam, tincidunt metus - ut, cursus est. Maecenas luctus maximus se... -

    -
    `; - -let code_example_component = ` -import { Component} from '@angular/core'; - -// Relative path: adjust to match your folder structure -import { MenuItem } from 'sam-ui-elements/src/ui-kit/components/sidenav'; - -@Component({ - template: 'your template html', -}) -export class PageComponent{ - - sidenavModel: MenuItem = { - label: "SideNavigation", - children: [ - { - label: "Lorem ipsum dolor", - route: "#" - }, - { - label: "Nullam at mauris", - route: "#" - } - ] - }; - - breadcrumbs = [ - { breadcrumb: 'Consectetur adipiscing', url: '/' }, - { breadcrumb: 'Lorem ipsum dolor'} - ]; - -}`; - -@Component({ - templateUrl: "page-doc.template.html" -}) -export class PageBDocComponent{ - code_template: string = code_example_template; - code_component: string = code_example_component; -} \ No newline at end of file diff --git a/src/patterns/pages/page-b/page-doc.template.html b/src/patterns/pages/page-b/page-doc.template.html deleted file mode 100644 index 5138a8f8c..000000000 --- a/src/patterns/pages/page-b/page-doc.template.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/patterns/pages/page-b/page.component.ts b/src/patterns/pages/page-b/page.component.ts old mode 100644 new mode 100755 index ebf7dae62..93fd3c294 --- a/src/patterns/pages/page-b/page.component.ts +++ b/src/patterns/pages/page-b/page.component.ts @@ -1,21 +1,6 @@ import { Component} from '@angular/core'; -import { MenuItem } from 'sam-ui-elements/src/ui-kit/components/sidenav'; -import { SamMasterPageService } from 'sam-ui-elements/src/ui-kit/experimental/master-page/index'; @Component({ templateUrl: 'page.template.html' }) -export class PageBComponent{ - - constructor(private masterpageservice: SamMasterPageService){ - masterpageservice.docLink = "b-doc"; - masterpageservice.settingsLink = "a-settings"; - } - - breadcrumbs = [ - { breadcrumb: 'Consectetur adipiscing', url: '/' }, - { breadcrumb: 'Lorem ipsum dolor'} - ]; - - -} \ No newline at end of file +export class PageBComponent { } \ No newline at end of file diff --git a/src/patterns/pages/page-b/page.template.html b/src/patterns/pages/page-b/page.template.html old mode 100644 new mode 100755 index 241afe02b..98587bcca --- a/src/patterns/pages/page-b/page.template.html +++ b/src/patterns/pages/page-b/page.template.html @@ -1,92 +1,169 @@ - - - - - - Ullamcorper nulla - - - - - - - - - - - -

    - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec lobortis - commodo bibendum. Praesent enim nunc, faucibus quis rhoncus eget, commodo - nec lectus. Suspendisse a felis condimentum, sollicitudin nisi non, - pretium nulla. Sed vestibulum ex rhoncus, feugiat risus laoreet, imperdiet - quam. -

    -
      -
    • Cras vitae metus ultricies, congue sapien non, semper velit.
    • -
    • Donec gravida magna eu est facilisis interdum a eget arcu.
    • -
    • Nullam dapibus mauris id aliquam eleifend.
    • -
    -
    - - - - - - - -

    - Nam vel elementum est. Vestibulum nec urna at metus rutrum ultricies at - eget odio. Phasellus suscipit risus nulla, eget ornare dui semper vitae. - Quisque ut sem orci. -

    -
    -
    -
    - - - - - - - -

    - Sed euismod urna sed magna tincidunt ultrices. Etiam gravida quam ac - mauris sodales, a lobortis tortor mattis. Phasellus vel elit aliquet, - commodo ligula vitae, sodales ex. -

    -
    -
    -
    - - - - - - - -

    - Sed rhoncus tempor faucibus. Integer sed hendrerit arcu. Sed tempor purus - dictum, scelerisque ligula consectetur -

    -
    -
    -
    - -
    + + + + + + + + + + + + Learning Center + + + + + + +

    + The beta.SAM.gov domains contain data that has been migrated from out legacy systems. The domains + support two distinct types of federal awards: assistance and acquisitions. +

    +
    + + + + Assistance awards are grant, cooperative, loan, insurance, service, and other agreements covered by + the Code of Federal Regulations, specifically + 2 CFR 200. + + + Acquisition awards are contracts awarded under the + Federal Acquisition Regulation (FAR). + + + + + Assistance + + + + +
    + CFDA.gov +
    +
    + + + Assistance Listings + +

    + Assistance listings provide a comprehensive description of all federal assistance including information on eligibility, how + to apply, and matching requirements. +

    +
    +
    +
    + + + Acquisition + + + + +
    + FBO.gov +
    +
    + + + Contract Opportunities + +

    + Assistance listings provide a comprehensive description of all federal assistance including information on eligibility, how + to apply, and matching requirements. +

    +
    +
    +
    + + + + +
    + FPDS.gov +
    +
    + + + Contract Data + +

    + Contract actions that have an estimated value of $3,000 or more. Contract actions include definitive contracts, indefinite delivery vehicles(IDVs), delivery orders, purchase orders, contract modifications and other types of contract actions. +

    +
    +
    +
    + + + + +
    + WDOL.gov +
    +
    + + + Wage Determinations + +

    + Wage determinations provide the required wage rates and fringe benefit rates that must be met on federal procurement contracts for each labor category covered by the Davis Bacon Act or the Service Contract Act as determined by the U.S. Department of Labor. +

    +
    +
    +
    + + + Assistance & Acquisition + + + + +
    + SAM.gov +
    +
    + + + Entity Information + +

    + Entity Registration. Anyone who wants to be considered for a federal award (acquisition awards, assistance awards, or both). +

    +

    + Exclusions. Exclusions declare individuals, firms, and others ineligible from receiving certain federal awards. +

    +
    +
    +
    + + + + +
    +
    + + + Federal Hierarchy + +

    + Wage determinations provide the required wage rates and fringe benefit rates that must be met on federal procurement contracts for each labor category covered by the Davis Bacon Act or the Service Contract Act as determined by the U.S. Department of Labor. +

    +
    +
    +
    + +
    \ No newline at end of file diff --git a/src/patterns/pages/pages.component.ts b/src/patterns/pages/pages.component.ts old mode 100644 new mode 100755 index 65e795e57..3dde92ab7 --- a/src/patterns/pages/pages.component.ts +++ b/src/patterns/pages/pages.component.ts @@ -1,16 +1,39 @@ import { Component } from '@angular/core'; -import { PagesService } from './pages.service'; +import { Router } from '@angular/router'; @Component({ template: ` - `, - providers: [PagesService] +
    +
    + Patterns Home + + Page + + + Implementation +
    + ` }) export class PagesComponent { - constructor(private pagesservice: PagesService){} + constructor( private router: Router){} + + pages = [ + { name: "A", value: "a" }, + { name: "B", value: "b" } + ]; + + selectedValue:any; + + navigateTo(){ + if(this.selectedValue.value){ + this.router.navigate([`/patterns/page/${this.selectedValue.value}`]); + } + } } \ No newline at end of file diff --git a/src/patterns/pages/pages.module.ts b/src/patterns/pages/pages.module.ts old mode 100644 new mode 100755 index 27b3ba3d8..9fab4e20f --- a/src/patterns/pages/pages.module.ts +++ b/src/patterns/pages/pages.module.ts @@ -1,39 +1,25 @@ import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; +import { FormsModule } from '@angular/forms'; import { SamUIKitModule } from 'sam-ui-elements/src/ui-kit'; -import { SiteComponentsModule } from '../../app/site-components/sitecomponents.module'; import { PagesRoutingModule } from './pages.routes'; import { PagesComponent } from './pages.component'; import { PageAComponent } from './page-a/page.component'; -import { PageADocComponent } from './page-a/page-doc.component'; -import { PageASettingsComponent } from './page-a/page-settings.component'; import { PageBComponent } from './page-b/page.component'; -import { PageBDocComponent } from './page-b/page-doc.component'; - -// SAM UI Elements (Future) -import { SamFutureModule } from '../sam-ui-elements/future'; - @NgModule({ - declarations: [ - PagesComponent, - PageAComponent, - PageADocComponent, - PageASettingsComponent, - PageBComponent, - PageBDocComponent, - ], imports: [ CommonModule, + FormsModule, PagesRoutingModule, - SamUIKitModule, - SiteComponentsModule, - SamFutureModule - ], - exports: [ + SamUIKitModule ], + declarations: [ + PagesComponent, + PageAComponent, + PageBComponent + ] }) -export class PagesModule { } - +export class PagesModule {} \ No newline at end of file diff --git a/src/patterns/pages/pages.routes.ts b/src/patterns/pages/pages.routes.ts old mode 100644 new mode 100755 index a334eb898..1aa45b7f5 --- a/src/patterns/pages/pages.routes.ts +++ b/src/patterns/pages/pages.routes.ts @@ -1,43 +1,22 @@ -import { NgModule } from '@angular/core'; +import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; -import { PagesComponent } from './pages.component'; - +import { PagesComponent } from './pages.component' import { PageAComponent } from './page-a/page.component'; -import { PageADocComponent } from './page-a/page-doc.component'; -import { PageASettingsComponent } from './page-a/page-settings.component'; - import { PageBComponent } from './page-b/page.component'; -import { PageBDocComponent } from './page-b/page-doc.component'; - -const pagesRoutes: Routes = [ +const PageRoutes: Routes = [ { - path: 'page', + path: '', component: PagesComponent, children: [ { path: 'a', component: PageAComponent }, - { - path: 'a-doc', - component: PageADocComponent, - outlet: "master-modal" - }, - { - path: 'a-settings', - component: PageASettingsComponent, - outlet: "master-modal" - }, { path: 'b', component: PageBComponent - }, - { - path: 'b-doc', - component: PageBDocComponent, - outlet: "master-modal" } ] } @@ -45,10 +24,10 @@ const pagesRoutes: Routes = [ @NgModule({ imports: [ - RouterModule.forChild(pagesRoutes) + RouterModule.forChild(PageRoutes) ], exports: [ - RouterModule + RouterModule ] }) export class PagesRoutingModule{} \ No newline at end of file diff --git a/src/patterns/pages/pages.service.ts b/src/patterns/pages/pages.service.ts deleted file mode 100644 index f2cb956fe..000000000 --- a/src/patterns/pages/pages.service.ts +++ /dev/null @@ -1,188 +0,0 @@ -import { Injectable } from '@angular/core'; - -@Injectable() -export class PagesService { - - loremData = { - - suptitle: 'consectetur', - title: 'Lorem Ipsum', - - breadcrumbs: [ - { breadcrumb: 'Consectetur adipiscing', url: '/' }, - { breadcrumb: 'Lorem ipsum dolor'} - ], - - sidebarLink: 'Ullamcorper nulla', - sidebarBoxTitle: 'Luctus Velit', - - contentBoxTitle: 'Scelerisque pretium', - contentBoxDescription: 'Mauris aliquam placerat ipsum at eleifend. In dictum.', - contentBoxButton: 'Placerat', - - contentSecondaryBoxList: [ - { - "icon": "none", - "link": "#", - "text": "Orci varius natoque" - }, - { - "icon": "none", - "link": "#", - "text": "Vivamus ac est eget ipsum" - } - ], - - contentBelowBoxes: 'Sed vestibulum ex rhoncus, feugiat risus laoreet, \ - imperdiet quam. Aliquam erat volutpat.', - - contentFirstParagraphTitle: 'Pharetra Vel Lacus Vitae', - contentFirstParagraph: 'Lorem ipsum dolor sit amet, consectetur adipiscing \ - elit. Donec lobortis commodo bibendum.', - contentFirstParagraphList: [ - {"text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit"}, - {"text": "Etiam dignissim enim eget suscipit auctor"}, - {"text": "Donec eget elit ullamcorper est malesuada"}, - {"text": "Duis sit amet felis porta, dapibus lectus"} - ], - contentFirstParagraphList2: [ - {"text": "Mauris luctus urna at semper fermentum"}, - {"text": "Ut suscipit nisl sit amet tempus bibendum"}, - {"text": "Nam eget risus ornare, varius enim nec"} - ], - - contentSecondParagraphTitle: 'Pharetra Vel Lacus Vitae', - contentSecondParagraph: 'Lorem ipsum dolor sit amet, consectetur adipiscing \ - elit. Donec lobortis commodo bibendum. In mauris dui, pulvinar at feugiat \ - nec, malesuada eget nisl. Cras maximus vestibulum augue, id tincidunt tellus \ - iaculis in.', - contentSecondParagraph2: 'Duis gravida, purus in hendrerit rutrum, neque \ - lacus fermentum eros, ac suscipit velit sem eget odio. Integer tincidunt \ - tempus porta. Suspendisse quis enim nisi. Ut finibus pellentesque dapibus.', - - contentHorizontalMenuTitle: 'Luctus Velit: Integer fermentum', - contentHorizontalMenuItems: [ - { - "icon": "none", - "link": "#", - "text": "Lorem" - }, - { - "icon": "none", - "link": "#", - "text": "Suspendisse" - }, - { - "icon": "none", - "link": "#", - "text": "Maecenas" - }, - { - "icon": "none", - "link": "#", - "text": "Vivamus" - } - ] - } - - helpData = { - - suptitle: 'Help Center', - title: 'User Accounts', - - breadcrumbs: [ - { breadcrumb: 'Help Center', url: '/' }, - { breadcrumb: 'Customer Support'} - ], - - sidebarLink: 'Help Home', - sidebarBoxTitle: 'Learning Center', - - contentBoxTitle: 'Sign Up Now', - contentBoxDescription: 'You can now create your user account in SAM', - contentBoxButton: 'Sign Up', - - contentSecondaryBoxList: [ - { - "icon": "video", - "link": "#", - "text": "Title of video that is small" - }, - { - "icon": "video", - "link": "#", - "text": "Title of video that is a little bit longer" - } - ], - - contentBelowBoxes: 'SAM Users can generally be grouped in to three types: \ - federal users, award recipients (entity users), and public users.', - - contentFirstParagraphTitle: 'What You Can Do Without An Account', - contentFirstParagraph: 'You can search for the following public information \ - without a user account.', - contentFirstParagraphList: [ - {"text": "Federal assistance listings"}, - {"text": "Contract opportunities"}, - {"text": "Contract awards"}, - {"text": "Entity registrations"} - ], - contentFirstParagraphList2: [ - {"text": "Entity exclusions"}, - {"text": "Federal hierarchy"}, - {"text": "Wage determinations"} - ], - - contentSecondParagraphTitle: 'Sign Up Now', - contentSecondParagraph: "While you won't be able to access any additional \ - capabilities yet, you can prepare by creating your account now. When the \ - additional features become ready in the upcoming months, you'll be ready \ - to sign in.", - contentSecondParagraph2: "Note: Even if you have an existing \ - account in one of the legacy systems (e.g., SAM.gov, FBO.gov, CFDA.gov)\ - you'll need to create a new account for beta.SAM.gov. In the future, after \ - all of the individual systems are retired, this account will be your only \ - account for all of our features", - - contentHorizontalMenuTitle: 'Learning Center: User Accounts', - contentHorizontalMenuItems: [ - { - "icon": "video", - "link": "#", - "text": "Video" - }, - { - "icon": "comment", - "link": "#", - "text": "FAQs" - }, - { - "icon": "newspaper", - "link": "#", - "text": "Articles" - }, - { - "icon": "book", - "link": "#", - "text": "Definitions" - } - ] - } - - PageA = { - data: this.helpData, - value: 'help' - } - - updatePageData(page, value){ - if(page == 'PageA'){ - this.PageA.value = value; - if(value == 'lorem'){ - this.PageA.data = this.loremData; - }else if(value == 'help'){ - this.PageA.data = this.helpData; - } - } - } - -} \ No newline at end of file diff --git a/src/patterns/patterns-home.template.html b/src/patterns/patterns-home.template.html deleted file mode 100644 index 71b64efe6..000000000 --- a/src/patterns/patterns-home.template.html +++ /dev/null @@ -1,95 +0,0 @@ - - - -
    - - -

    Page Pattern: A

    - - - -

    Page Pattern: B

    - - -
    - - - \ No newline at end of file diff --git a/src/patterns/patterns.module.ts b/src/patterns/patterns.module.ts index 8b3f8024d..375e42a51 100644 --- a/src/patterns/patterns.module.ts +++ b/src/patterns/patterns.module.ts @@ -17,7 +17,7 @@ import { TitleOptionsPageCodeComponent } from './version-1/title-options.compon import { PatternsComponent } from './patterns.component'; -import { PatternsHomeComponent } from './patterns-home.component'; +import { PatternsHomeComponent } from './home/patterns-home.component'; @NgModule({ declarations: [ diff --git a/src/patterns/patterns.routes.ts b/src/patterns/patterns.routes.ts index 1f2ab6405..a2b37affc 100644 --- a/src/patterns/patterns.routes.ts +++ b/src/patterns/patterns.routes.ts @@ -2,7 +2,7 @@ import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; import { PatternsComponent } from './patterns.component'; -import { PatternsHomeComponent } from './patterns-home.component'; +import { PatternsHomeComponent } from './home/patterns-home.component'; import { HomeComponent } from './version-1/patterns-home.component'; import { StarterPageComponent } from './version-1/starter-page.component'; @@ -15,7 +15,7 @@ import { TitleOptionsPageCodeComponent } from './version-1/title-options.compon const patternsRoutes: Routes = [ { - path: 'pages', + path: 'page', loadChildren: './pages/pages.module#PagesModule' }, { diff --git a/src/patterns/sam-ui-elements/future/box/box.component.ts b/src/patterns/sam-ui-elements/future/box/box.component.ts deleted file mode 100644 index e8a369041..000000000 --- a/src/patterns/sam-ui-elements/future/box/box.component.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { Component, Input} from '@angular/core'; - -@Component({ - selector: "sam-box", - template: ` -
    - -
    - ` -}) -export class SamBoxComponent{ - - @Input() public type: string; - -} \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/box/index.ts b/src/patterns/sam-ui-elements/future/box/index.ts deleted file mode 100644 index c3dbf5127..000000000 --- a/src/patterns/sam-ui-elements/future/box/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './box.component'; diff --git a/src/patterns/sam-ui-elements/future/container/container.component.ts b/src/patterns/sam-ui-elements/future/container/container.component.ts deleted file mode 100644 index d443a278e..000000000 --- a/src/patterns/sam-ui-elements/future/container/container.component.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { Component} from '@angular/core'; - -@Component({ - selector: "sam-container", - template: `` -}) -export class SamContainerComponent{} \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/container/index.ts b/src/patterns/sam-ui-elements/future/container/index.ts deleted file mode 100644 index 59b61711d..000000000 --- a/src/patterns/sam-ui-elements/future/container/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './container.component'; diff --git a/src/patterns/sam-ui-elements/future/heading/heading.component.ts b/src/patterns/sam-ui-elements/future/heading/heading.component.ts deleted file mode 100644 index 54c35e409..000000000 --- a/src/patterns/sam-ui-elements/future/heading/heading.component.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { Component, Input, OnInit} from '@angular/core'; - -@Component({ - selector: "sam-heading", - template: ` - -

    -
    {{ sup }}
    - - {{ text }} -

    -

    - - {{ text }} -

    -

    - - {{ text }} -

    -

    - - {{ text }} -

    -

    - - {{ text }} -

    -
    - ` -}) -export class SamHeadingComponent implements OnInit{ - - @Input() public importance: string; - @Input() public sup: string; - @Input() public text: string; - @Input() public icon: string; - @Input() public alignment: string; - - css_classes:string = ''; - - constructor(){} - - ngOnInit(){ - if(this.alignment == 'center'){ - this.css_classes += 'center aligned '; - } - } - -} \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/heading/index.ts b/src/patterns/sam-ui-elements/future/heading/index.ts deleted file mode 100644 index 1777021fc..000000000 --- a/src/patterns/sam-ui-elements/future/heading/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './heading.component'; \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/icon/icon.component.ts b/src/patterns/sam-ui-elements/future/icon/icon.component.ts deleted file mode 100644 index 7e0f9bf71..000000000 --- a/src/patterns/sam-ui-elements/future/icon/icon.component.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { Component, Input} from '@angular/core'; - -@Component({ - selector: "sam-icon", - templateUrl: 'icon.template.html' -}) -export class SamIconComponent{ - - @Input() public name: string; - -} \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/icon/icon.template.html b/src/patterns/sam-ui-elements/future/icon/icon.template.html deleted file mode 100644 index 4b0338cd4..000000000 --- a/src/patterns/sam-ui-elements/future/icon/icon.template.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/icon/index.ts b/src/patterns/sam-ui-elements/future/icon/index.ts deleted file mode 100644 index 9a2eba30b..000000000 --- a/src/patterns/sam-ui-elements/future/icon/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './icon.component'; \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/index.ts b/src/patterns/sam-ui-elements/future/index.ts deleted file mode 100644 index 477fdf079..000000000 --- a/src/patterns/sam-ui-elements/future/index.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { RouterModule } from '@angular/router'; - -import { SamUIKitModule } from 'sam-ui-elements/src/ui-kit'; - -import { SamBoxComponent } from './box'; -import { SamContainerComponent } from './container'; -import { SamHeadingComponent } from './heading'; -import { SamIconComponent } from './icon'; -import { SamListComponent } from './list'; -import { SamMasterPageComponent } from './master-page'; -import { SamPageComponent } from './page'; -import { SamSidebarComponent } from './sidebar'; -import { SamYoutubeComponent } from './youtube'; - -@NgModule({ - imports: [ - CommonModule, - RouterModule, - SamUIKitModule - ], - declarations: [ - SamBoxComponent, - SamContainerComponent, - SamHeadingComponent, - SamIconComponent, - SamListComponent, - SamMasterPageComponent, - SamPageComponent, - SamSidebarComponent, - SamYoutubeComponent - ], - exports: [ - SamBoxComponent, - SamContainerComponent, - SamHeadingComponent, - SamIconComponent, - SamListComponent, - SamMasterPageComponent, - SamPageComponent, - SamSidebarComponent, - SamYoutubeComponent - ] -}) -export class SamFutureModule { } - - diff --git a/src/patterns/sam-ui-elements/future/list/index.ts b/src/patterns/sam-ui-elements/future/list/index.ts deleted file mode 100644 index 609828338..000000000 --- a/src/patterns/sam-ui-elements/future/list/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './list.component'; \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/list/list.component.ts b/src/patterns/sam-ui-elements/future/list/list.component.ts deleted file mode 100644 index 536850532..000000000 --- a/src/patterns/sam-ui-elements/future/list/list.component.ts +++ /dev/null @@ -1,44 +0,0 @@ -import { Component, Input, OnInit, OnChanges, SimpleChanges} from '@angular/core'; -import {trigger, state, transition, query, style, stagger, animate} from "@angular/animations"; - -@Component({ - selector: "sam-list", - animations: [ - trigger('listAnimation', [ - state('void', style({ - opacity: 0 - })), - state('*', style({ - opacity: 1 - })), - transition('* => *', [ - query(':enter', style({ opacity: 0 }), { optional: true}), - query(':enter', stagger('100ms', [ - animate('1s', style({ opacity: 1 })) - ]), { optional: true }) - ]) - ]) - ], - template: ` - - ` -}) -export class SamListComponent { - - @Input() public items: any; - @Input() public orientation: string; - - constructor(){} - -} \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/master-page/index.ts b/src/patterns/sam-ui-elements/future/master-page/index.ts deleted file mode 100644 index 8354e6c3f..000000000 --- a/src/patterns/sam-ui-elements/future/master-page/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './master-page.component'; -export * from './master-page.service'; \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/master-page/master-page.component.ts b/src/patterns/sam-ui-elements/future/master-page/master-page.component.ts deleted file mode 100644 index 7ebe8cf77..000000000 --- a/src/patterns/sam-ui-elements/future/master-page/master-page.component.ts +++ /dev/null @@ -1,50 +0,0 @@ -import { Component, EventEmitter, HostListener, Renderer2} from '@angular/core'; -import { ActivatedRoute, Router, NavigationEnd } from '@angular/router'; -import { SamMasterPageService } from './master-page.service'; - -@Component({ - selector: "sam-master-page", - templateUrl: 'master-page.template.html', - providers: [SamMasterPageService] -}) -export class SamMasterPageComponent{ - - @HostListener('click', ['$event']) onClick($event){ - if($event.target.localName == 'ng-component'){ - this.router.navigate([{ outlets: { 'master-modal': null } }], {relativeTo:this.route}); - } - } - - modalOutletName: string = 'master-modal'; - - constructor( - private masterpageservice: SamMasterPageService, - private router: Router, - private route: ActivatedRoute, - private renderer: Renderer2){ - router.events.subscribe((evt) => { - if(evt instanceof NavigationEnd){ - let activeOutlets = this.findActiveOutlets(route.children); - let modalOutletFound = this.modalActive(activeOutlets); - if(modalOutletFound){ - this.renderer.addClass(document.body, 'modal-open'); - } else { - this.renderer.removeClass(document.body, 'modal-open'); - } - } - }); - } - - findActiveOutlets(activatedRoutes){ - let activeOutlets: string[] = []; - for(let activeRoute of activatedRoutes){ - activeOutlets.push(activeRoute.outlet); - } - return activeOutlets; - } - - modalActive(activeOutlets){ - return true ? activeOutlets.indexOf(this.modalOutletName) > -1 : false; - } - -} \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/master-page/master-page.service.ts b/src/patterns/sam-ui-elements/future/master-page/master-page.service.ts deleted file mode 100644 index 4d555648c..000000000 --- a/src/patterns/sam-ui-elements/future/master-page/master-page.service.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { Injectable } from '@angular/core'; - -@Injectable() -export class SamMasterPageService { - - _docLink: string; - set docLink(value: string){ - this._docLink = value; - } - get docLink(){ - return this._docLink; - } - - _settingsLink: string; - set settingsLink(value: string){ - this._settingsLink = value; - } - get settingsLink(){ - return this._settingsLink; - } - -} \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/master-page/master-page.template.html b/src/patterns/sam-ui-elements/future/master-page/master-page.template.html deleted file mode 100644 index 8a0337ed8..000000000 --- a/src/patterns/sam-ui-elements/future/master-page/master-page.template.html +++ /dev/null @@ -1,20 +0,0 @@ - - - \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/page/index.ts b/src/patterns/sam-ui-elements/future/page/index.ts deleted file mode 100644 index 278ab21b2..000000000 --- a/src/patterns/sam-ui-elements/future/page/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './page.component'; -export * from './page.service'; \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/page/page.component.ts b/src/patterns/sam-ui-elements/future/page/page.component.ts deleted file mode 100644 index b7da633ff..000000000 --- a/src/patterns/sam-ui-elements/future/page/page.component.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { Component, Input, HostListener} from '@angular/core'; -import {SamPageService } from './page.service'; - -@Component({ - selector: "sam-page", - templateUrl: 'page.template.html', - providers: [SamPageService] -}) -export class SamPageComponent{ - - @Input() public suptitle: any; - @Input() public title: any; - @Input() public subtitle: any; - @Input() public breadcrumbs: any; - - @HostListener('click', ['$event']) onClicked($event){ - $event.stopPropagation(); - } - constructor(private pageService: SamPageService){} - -} \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/page/page.service.ts b/src/patterns/sam-ui-elements/future/page/page.service.ts deleted file mode 100644 index 7e873de86..000000000 --- a/src/patterns/sam-ui-elements/future/page/page.service.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Injectable } from '@angular/core'; - -@Injectable() -export class SamPageService { - _sidebar: boolean; - set sidebar(value: boolean){ - this._sidebar = value; - } - get sidebar(){ - return this._sidebar; - } -} \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/page/page.template.html b/src/patterns/sam-ui-elements/future/page/page.template.html deleted file mode 100644 index 5f80fd654..000000000 --- a/src/patterns/sam-ui-elements/future/page/page.template.html +++ /dev/null @@ -1,18 +0,0 @@ -
    - -
    - -
    - - - - - - -
    - -
    - -
    \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/sidebar/index.ts b/src/patterns/sam-ui-elements/future/sidebar/index.ts deleted file mode 100644 index 9bf6caf06..000000000 --- a/src/patterns/sam-ui-elements/future/sidebar/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './sidebar.component'; \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/sidebar/sidebar.component.ts b/src/patterns/sam-ui-elements/future/sidebar/sidebar.component.ts deleted file mode 100644 index 86aa57bd2..000000000 --- a/src/patterns/sam-ui-elements/future/sidebar/sidebar.component.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { Component, HostListener, OnInit} from '@angular/core'; -import { SamPageService } from '../page'; - -@Component({ - selector: "sam-sidebar", - template: '' -}) -export class SamSidebarComponent implements OnInit{ - constructor(private pageService: SamPageService){ - - } - ngOnInit(){ - this.pageService.sidebar = true; - } -} \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/youtube/index.ts b/src/patterns/sam-ui-elements/future/youtube/index.ts deleted file mode 100644 index 5e54e4a2c..000000000 --- a/src/patterns/sam-ui-elements/future/youtube/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './youtube.component'; \ No newline at end of file diff --git a/src/patterns/sam-ui-elements/future/youtube/youtube.component.ts b/src/patterns/sam-ui-elements/future/youtube/youtube.component.ts deleted file mode 100644 index 04da19787..000000000 --- a/src/patterns/sam-ui-elements/future/youtube/youtube.component.ts +++ /dev/null @@ -1,31 +0,0 @@ -import { Component, Input, OnInit} from '@angular/core'; -import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser'; - -@Component({ - selector: "sam-youtube", - template: ` -
    - -
    - ` -}) -export class SamYoutubeComponent implements OnInit{ - - @Input() public id: string; - - YouTubeVideoUrl: string; - videoUrl: SafeResourceUrl; - - constructor(private sanitizer: DomSanitizer){} - - ngOnInit(){ - this.updateVideoUrl(this.id); - } - - updateVideoUrl(id: string){ - this.YouTubeVideoUrl = 'https://www.youtube.com/embed/' + id; - this.videoUrl = this.sanitizer.bypassSecurityTrustResourceUrl(this.YouTubeVideoUrl); - } - -} \ No newline at end of file diff --git a/src/prototypes/components/main-nav/component.ts b/src/prototypes/components/main-nav/component.ts new file mode 100644 index 000000000..5f368aa69 --- /dev/null +++ b/src/prototypes/components/main-nav/component.ts @@ -0,0 +1,7 @@ +import { Component} from '@angular/core'; + +@Component({ + selector: 'prototype-nav', + templateUrl: 'template.html' +}) +export class MainNavComponent {} \ No newline at end of file diff --git a/src/prototypes/components/main-nav/template.html b/src/prototypes/components/main-nav/template.html new file mode 100644 index 000000000..82f19ae9d --- /dev/null +++ b/src/prototypes/components/main-nav/template.html @@ -0,0 +1,36 @@ +
    + +
    + + + + + + + +
    + + + +
    \ No newline at end of file diff --git a/src/prototypes/components/picker/component.ts b/src/prototypes/components/picker/component.ts new file mode 100644 index 000000000..3d4b71d54 --- /dev/null +++ b/src/prototypes/components/picker/component.ts @@ -0,0 +1,32 @@ +import { Component} from '@angular/core'; + +@Component({ + templateUrl: 'template.html' +}) +export class PickerComponent {} + + +@Component({ + templateUrl: 'template-2.html' +}) +export class PickerLevel2Component {} + +@Component({ + templateUrl: 'template-3.html' +}) +export class PickerLevel3Component {} + +@Component({ + templateUrl: 'template-4.html' +}) +export class PickerLevel4Component {} + +@Component({ + templateUrl: 'template-5.html' +}) +export class PickerLevel5Component {} + +@Component({ + templateUrl: 'template-6.html' +}) +export class PickerLevel6Component {} \ No newline at end of file diff --git a/src/prototypes/components/picker/template-2.html b/src/prototypes/components/picker/template-2.html new file mode 100644 index 000000000..a9d1f5bef --- /dev/null +++ b/src/prototypes/components/picker/template-2.html @@ -0,0 +1,103 @@ +
    + + +
    + + + Picker + + + + +
    + + + + + + + + +
    + + +
    + Office of Intergovernmental Relations +
    + +
    +
    +
    + Homer +
    +
    + Bart +
    +
    + Marge +
    +
    + Lisa +
    +
    + Mr. Burns +
    +
    + Apu +
    +
    + Milhouse +
    +
    + Moe +
    +
    + Ned +
    +
    + Nelson +
    +
    + Krusty +
    +
    + Barney +
    + +
    + Ralph +
    +
    + Skinner +
    +
    + Edna +
    +
    + Fat Tony +
    +
    + Lenny +
    +
    + Carl +
    +
    +
    + +
    + + +
    + +
    \ No newline at end of file diff --git a/src/prototypes/components/picker/template-3.html b/src/prototypes/components/picker/template-3.html new file mode 100644 index 000000000..251585b70 --- /dev/null +++ b/src/prototypes/components/picker/template-3.html @@ -0,0 +1,103 @@ +
    + + +
    + + + Picker + + + + +
    + + + + + + + + +
    + + +
    + The Simpsons / Bart +
    + +
    +
    +
    + El Barto +
    + +
    + Bartman +
    +
    + Milhouse +
    +
    + Nelson +
    +
    + Apu +
    +
    + Milhouse +
    +
    + Moe +
    +
    + Ned +
    +
    + Nelson +
    +
    + Krusty +
    +
    + Barney +
    + +
    + Ralph +
    +
    + Skinner +
    +
    + Edna +
    +
    + Fat Tony +
    +
    + Lenny +
    +
    + Carl +
    +
    +
    + + + + +
    + +
    \ No newline at end of file diff --git a/src/prototypes/components/picker/template-4.html b/src/prototypes/components/picker/template-4.html new file mode 100644 index 000000000..8cc60d3b4 --- /dev/null +++ b/src/prototypes/components/picker/template-4.html @@ -0,0 +1,105 @@ +
    + + +
    + + + Picker + + + + +
    + + + + + + + + +
    + + +
    + The Simpsons / + Bart / + Ay Caramba! +
    + +
    +
    +
    + El Barto +
    + +
    + Bartman +
    +
    + Milhouse +
    +
    + Nelson +
    +
    + Apu +
    +
    + Milhouse +
    +
    + Moe +
    +
    + Ned +
    +
    + Nelson +
    +
    + Krusty +
    +
    + Barney +
    + +
    + Ralph +
    +
    + Skinner +
    +
    + Edna +
    +
    + Fat Tony +
    +
    + Lenny +
    +
    + Carl +
    +
    +
    + + + + +
    + +
    \ No newline at end of file diff --git a/src/prototypes/components/picker/template-5.html b/src/prototypes/components/picker/template-5.html new file mode 100644 index 000000000..94cb7885f --- /dev/null +++ b/src/prototypes/components/picker/template-5.html @@ -0,0 +1,61 @@ +
    + + +
    + + + Picker + + + + +
    + + + + + + + + +
    + + +
    + The Simpsons +
    + +
    +
    + + +
    + Barney +
    +
    +
    + + + + +
    + +
    \ No newline at end of file diff --git a/src/prototypes/components/picker/template-6.html b/src/prototypes/components/picker/template-6.html new file mode 100644 index 000000000..61ad7c30a --- /dev/null +++ b/src/prototypes/components/picker/template-6.html @@ -0,0 +1,106 @@ + +



    \ No newline at end of file diff --git a/src/prototypes/components/picker/template.html b/src/prototypes/components/picker/template.html new file mode 100644 index 000000000..c574db962 --- /dev/null +++ b/src/prototypes/components/picker/template.html @@ -0,0 +1,109 @@ + + + + + + + +


    \ No newline at end of file diff --git a/src/prototypes/components/prototypes-components.component.ts b/src/prototypes/components/prototypes-components.component.ts new file mode 100644 index 000000000..0234d2daa --- /dev/null +++ b/src/prototypes/components/prototypes-components.component.ts @@ -0,0 +1,68 @@ +import { Component } from '@angular/core'; +import { + Router, + NavigationEnd, + UrlTree, + UrlSegmentGroup, + UrlSegment, + PRIMARY_OUTLET +} from '@angular/router'; + +@Component({ + template: ` +
    + +
    +
    + Prototypes Home + + Component + +
    + ` +}) +export class ComponentsComponent { + + selectedOption:any; + + options = [ + { name: "Picker", value: "picker" }, + { name: "Main Nav", value: "main-nav" }, + ]; + + routerSubscription: any; + + constructor(private router: Router){ + this.routerSubscription = router.events.subscribe(event => { + if (event instanceof NavigationEnd ) { + const tree: UrlTree = router.parseUrl(event.url); + const group: UrlSegmentGroup = tree.root.children[PRIMARY_OUTLET]; + const segment: UrlSegment[] = group.segments; + this.selectOption(segment[2].path); + } + }); + } + + selectOption(value){ + this.options.forEach(option => { + if(option.value === value){ + this.selectedOption = option; + } + }); + } + + navigateTo(){ + if(this.selectedOption.value){ + this.router.navigate([`/prototypes/component/${this.selectedOption.value}`]); + } + } + + ngOnDestroy() { + this.routerSubscription.unsubscribe(); + } + +} \ No newline at end of file diff --git a/src/prototypes/components/prototypes-components.module.ts b/src/prototypes/components/prototypes-components.module.ts new file mode 100644 index 000000000..b21468ef6 --- /dev/null +++ b/src/prototypes/components/prototypes-components.module.ts @@ -0,0 +1,38 @@ +import { NgModule } from '@angular/core'; +import { CommonModule } from '@angular/common'; +import { FormsModule } from '@angular/forms'; + +import { SamUIKitModule } from 'sam-ui-elements/src/ui-kit'; +import { ComponentsRoutingModule } from './prototypes-components.routes'; + +import { ComponentsComponent } from './prototypes-components.component'; +import { PickerComponent } from './picker/component'; +import { PickerLevel2Component } from './picker/component'; +import { PickerLevel3Component } from './picker/component'; +import { PickerLevel4Component } from './picker/component'; +import { PickerLevel5Component } from './picker/component'; +import { PickerLevel6Component } from './picker/component'; +import { MainNavComponent } from './main-nav/component'; + +@NgModule({ + imports: [ + CommonModule, + FormsModule, + ComponentsRoutingModule, + SamUIKitModule + ], + declarations: [ + ComponentsComponent, + PickerComponent, + PickerLevel2Component, + PickerLevel3Component, + PickerLevel4Component, + PickerLevel5Component, + PickerLevel6Component, + MainNavComponent + ], + exports: [ + MainNavComponent + ] +}) +export class PrototypesComponentsModule {} \ No newline at end of file diff --git a/src/prototypes/components/prototypes-components.routes.ts b/src/prototypes/components/prototypes-components.routes.ts new file mode 100644 index 000000000..b7dda70d5 --- /dev/null +++ b/src/prototypes/components/prototypes-components.routes.ts @@ -0,0 +1,60 @@ +import { NgModule } from '@angular/core'; +import { RouterModule, Routes } from '@angular/router'; + +import { ComponentsComponent } from './prototypes-components.component'; + +import { PickerComponent } from './picker/component'; +import { PickerLevel2Component } from './picker/component'; +import { PickerLevel3Component } from './picker/component'; +import { PickerLevel4Component } from './picker/component'; +import { PickerLevel5Component } from './picker/component'; +import { PickerLevel6Component } from './picker/component'; + +import { MainNavComponent } from './main-nav/component'; + +const PageRoutes: Routes = [ + { + path: '', + component: ComponentsComponent, + children: [ + { + path: 'picker', + component: PickerComponent + }, + { + path: 'picker-2', + component: PickerLevel2Component + }, + { + path: 'picker-3', + component: PickerLevel3Component + }, + { + path: 'picker-4', + component: PickerLevel4Component + }, + { + path: 'picker-5', + component: PickerLevel5Component + }, + { + path: 'picker-6', + component: PickerLevel6Component + }, + { + path: 'main-nav', + component: MainNavComponent + } + ] + } +]; + +@NgModule({ + imports: [ + RouterModule.forChild(PageRoutes) + ], + exports: [ + RouterModule + ] +}) +export class ComponentsRoutingModule{} \ No newline at end of file diff --git a/src/prototypes/home/prototypes-home.component.ts b/src/prototypes/home/prototypes-home.component.ts new file mode 100644 index 000000000..ccc0a5b66 --- /dev/null +++ b/src/prototypes/home/prototypes-home.component.ts @@ -0,0 +1,6 @@ +import { Component } from '@angular/core'; + +@Component({ + templateUrl: 'prototypes-home.template.html' +}) +export class PrototypesHomeComponent { } \ No newline at end of file diff --git a/src/prototypes/home/prototypes-home.template.html b/src/prototypes/home/prototypes-home.template.html new file mode 100644 index 000000000..10fa79c5c --- /dev/null +++ b/src/prototypes/home/prototypes-home.template.html @@ -0,0 +1,67 @@ + + + + + \ No newline at end of file diff --git a/src/prototypes/pages/homepage/home.component.ts b/src/prototypes/pages/homepage/home.component.ts new file mode 100644 index 000000000..797febf36 --- /dev/null +++ b/src/prototypes/pages/homepage/home.component.ts @@ -0,0 +1,6 @@ +import { Component} from '@angular/core'; + +@Component({ + templateUrl: 'home.template.html' +}) +export class HomePageComponent{ } \ No newline at end of file diff --git a/src/prototypes/pages/homepage/home.template.html b/src/prototypes/pages/homepage/home.template.html new file mode 100644 index 000000000..5a634e20f --- /dev/null +++ b/src/prototypes/pages/homepage/home.template.html @@ -0,0 +1,13 @@ +
    +

    + In the future, Beta.SAM.gov will be the official U.S. government website for + people who make, receive, and manage federal awards. +

    +
    + + + +
    + + +
    \ No newline at end of file diff --git a/src/prototypes/pages/prototypes-pages.component.ts b/src/prototypes/pages/prototypes-pages.component.ts new file mode 100644 index 000000000..b5b9b0b9d --- /dev/null +++ b/src/prototypes/pages/prototypes-pages.component.ts @@ -0,0 +1,37 @@ +import { Component } from '@angular/core'; +import { Router } from '@angular/router'; + +@Component({ + template: ` + + + +
    + +
    + Prototypes Home + + Page + +
    + ` +}) +export class PagesComponent { + constructor( private router: Router){} + + options = [ + { name: "Homepage", value: "home" }, + { name: "Search", value: "search" }, + { name: "Search Mobile", value: "search-mobile" } + ]; + + selectedOption:any; + + navigateTo(){ + if(this.selectedOption.value){ + this.router.navigate([`/prototypes/page/${this.selectedOption.value}`]); + } + } +} \ No newline at end of file diff --git a/src/prototypes/pages/prototypes-pages.module.ts b/src/prototypes/pages/prototypes-pages.module.ts new file mode 100755 index 000000000..a726bd891 --- /dev/null +++ b/src/prototypes/pages/prototypes-pages.module.ts @@ -0,0 +1,29 @@ +import { NgModule } from '@angular/core'; +import { CommonModule } from '@angular/common'; +import { FormsModule } from '@angular/forms'; + +import { SamUIKitModule } from 'sam-ui-elements/src/ui-kit'; +import { PagesRoutingModule } from './prototypes-pages.routes'; +import { PrototypesComponentsModule } from '../components/prototypes-components.module'; + +import { PagesComponent } from './prototypes-pages.component'; +import { SearchPageComponent } from './search/search.component'; +import { HomePageComponent } from './homepage/home.component'; +import { SearchMobileComponent } from './search-mobile/search.component'; + +@NgModule({ + imports: [ + CommonModule, + FormsModule, + PagesRoutingModule, + SamUIKitModule, + PrototypesComponentsModule + ], + declarations: [ + PagesComponent, + SearchPageComponent, + HomePageComponent, + SearchMobileComponent + ] +}) +export class PrototypesPagesModule {} \ No newline at end of file diff --git a/src/prototypes/pages/prototypes-pages.routes.ts b/src/prototypes/pages/prototypes-pages.routes.ts new file mode 100644 index 000000000..c834eb4b6 --- /dev/null +++ b/src/prototypes/pages/prototypes-pages.routes.ts @@ -0,0 +1,38 @@ +import { NgModule } from '@angular/core'; +import { RouterModule, Routes } from '@angular/router'; + +import { PagesComponent } from './prototypes-pages.component' +import { SearchPageComponent } from './search/search.component'; +import { HomePageComponent } from './homepage/home.component'; +import { SearchMobileComponent } from './search-mobile/search.component'; + +const PageRoutes: Routes = [ + { + path: '', + component: PagesComponent, + children: [ + { + path: 'home', + component: HomePageComponent + }, + { + path: 'search', + component: SearchPageComponent + }, + { + path: 'search-mobile', + component: SearchMobileComponent + } + ] + } +]; + +@NgModule({ + imports: [ + RouterModule.forChild(PageRoutes) + ], + exports: [ + RouterModule + ] +}) +export class PagesRoutingModule{} \ No newline at end of file diff --git a/src/prototypes/pages/search-mobile/search.component.ts b/src/prototypes/pages/search-mobile/search.component.ts new file mode 100644 index 000000000..0655ede58 --- /dev/null +++ b/src/prototypes/pages/search-mobile/search.component.ts @@ -0,0 +1,54 @@ +import { + Component, + HostListener +} from '@angular/core'; + +import { + trigger, + state, + style, + animate, + transition, + query, + animateChild, + keyframes, + stagger, + animation, + group +} from '@angular/animations'; + + +@Component({ + templateUrl: 'search.template.html', + animations:[ + trigger('filters', [ + state('close', style({ + display: 'none' + })), + state('open', style({ + display: 'block' + })) + ]) + ] +}) +export class SearchMobileComponent{ + + filterOptions = false; + mouseOver(){ + this.filterOptions = !this.filterOptions; + console.log("filter button mouseover"); + } + clicked = 0; + filterState = 'close'; + clickFilter(event){ + this.clicked += 1; + if(this.clicked == 2){ + this.filterState = 'open'; + }else if(this.clicked == 3){ + this.filterState = 'close'; + this.clicked = 0; + } + console.log(this.clicked); + } + +} \ No newline at end of file diff --git a/src/prototypes/pages/search-mobile/search.template.html b/src/prototypes/pages/search-mobile/search.template.html new file mode 100644 index 000000000..dbfe7308a --- /dev/null +++ b/src/prototypes/pages/search-mobile/search.template.html @@ -0,0 +1,234 @@ +
    + +
    + + +
    + + 1-10 of 20,643,214 results + +
    + Sort by + +
    +
    + +
    +
    +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit +

    +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin aliquam + elementum ipsum, vel facilisis turpis pretium nec. Nulla nec venenatis + est, vel luctus lacus. Maecenas non libero quis libero ullamcorper + posuere sit amet vehicula enim. Nam sed cursus enim, et scelerisque + ante. +

    +
    + +
    +

    + Cras condimentum, tellus a euismod sollicitudin +

    +

    + Vivamus bibendum sapien id rutrum feugiat. Donec vel fermentum arcu. + Quisque tincidunt, est et efficitur vestibulum, ipsum eros lacinia ante, + sed viverra purus eros id urna. Nam tristique rutrum enim, sagittis + lobortis nisi porta eu. Praesent in dictum purus, ut hendrerit mi. +

    +
    + +
    +

    + Duis non justo velit. Etiam risus lacus, posuere +

    +

    + Cras maximus purus eget eros varius iaculis. Aenean velit lectus, + vehicula eu tincidunt a, semper sed dui. Etiam eget nunc rhoncus, + lacinia erat et, tristique erat. +

    +
    + +
    +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit +

    +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin aliquam + elementum ipsum, vel facilisis turpis pretium nec. Nulla nec venenatis + est, vel luctus lacus. Maecenas non libero quis libero ullamcorper + posuere sit amet vehicula enim. Nam sed cursus enim, et scelerisque + ante. +

    +
    + +
    +

    + Cras condimentum, tellus a euismod sollicitudin +

    +

    + Vivamus bibendum sapien id rutrum feugiat. Donec vel fermentum arcu. + Quisque tincidunt, est et efficitur vestibulum, ipsum eros lacinia ante, + sed viverra purus eros id urna. +

    +
    + +
    +

    + Duis non justo velit. Etiam risus lacus, posuere +

    +

    + Cras maximus purus eget eros varius iaculis. Aenean velit lectus, + vehicula eu tincidunt a, semper sed dui. Etiam eget nunc rhoncus, + lacinia erat et, tristique erat. +

    +
    +
    + +
    +
    + +
    +
    +
    + 3 +
    + +
    +
    + +
    + + + + + + + +
    + 3 +
    + +
    +
    + + +
    + +
    +

    + Selected +

    + +

    + Add +

    + +
    + + +
    +
    + + + +
    +
    +
    + +
    \ No newline at end of file diff --git a/src/prototypes/pages/search/search.component.ts b/src/prototypes/pages/search/search.component.ts new file mode 100644 index 000000000..c69146680 --- /dev/null +++ b/src/prototypes/pages/search/search.component.ts @@ -0,0 +1,212 @@ +import { Component} from '@angular/core'; +import { + trigger, + state, + style, + animate, + transition, + query, + animateChild, + keyframes, + stagger, + animation, + group +} from '@angular/animations'; + + +@Component({ + templateUrl: 'search.template.html', + animations: [ + trigger('filtersDrawer', [ + state('close', style({ + display: 'none', + backgroundColor: 'white', + width: '0' + })), + state('open', style({ + width: '*' + })), + transition('* => open', [ + query('*', style({ opacity: 0})), + query(':self',[ + animate('250ms cubic-bezier(0.175, 0.885, 0.32, 1.275)'), + ]), + query('*', stagger('30ms', [ + animate('200ms 150ms ease-in', style({ opacity: 1 })) + ]), { optional: true }) + ]), + transition('open => close', [ + query('*', [ + style({ opacity: 1}), + animate('200ms', style({ + opacity: 0, + display: 'none' + })) + ]), + query(':self',[ + animate('250ms 210ms cubic-bezier(0.175, 0.885, 0.32, 1.275)'), + ]) + ]) + ]), + trigger('searchResults',[ + transition('* => *', [ + query('.search-result', style({ opacity: 0})), + query('.search-result', stagger('100ms', [ + animate('250ms 5.7s ease-in', style({ + opacity: 1 + })) + ])) + ]) + ]), + // trigger('searchResults',[ + // transition('* => *', [ + // query('.search-result', style({ opacity: 0})), + // query('.search-result', [ + // animate('100ms 5.6s ease-in', style({ + // opacity: 1 + // })) + // ]) + // ]) + // ]), + trigger('resultsLoading', [ + state('loading', style({ + display: 'block' + })), + state('done', style({ + opacity: 0, + display: 'none' + })), + transition('* => *', [ + query('.search-result-loading', stagger('100ms', [ + animate('250ms 1s ease-in', style({ + opacity: 1 + })) + ])), + query('.search-result-loading', stagger('100ms reverse', [ + animate('250ms 3s ease-out', style({ + opacity: 0 + })) + ])), + query(':self', [ + animate('200ms', style({ + opacity: 0 + })) + ]), + ]) + ]), + trigger('filterSlide', [ + transition('parent => child', [ + group([ + query(':enter', [ + style({ + transform: 'translateX(200px)', + opacity: '0', + height: '0', + }), + animate('250ms ease-out', style({ + transform: 'translateX(-100px)', + opacity: '1', + height: '*' + })) + ]), + query(':leave', [ + style({ + opacity: '1', + height: '*' + }), + animate('350ms ease-out', style({ + transform: 'translateX(-300px)', + opacity: '0', + height: '0', + })) + ]), + ]) + ]), + transition('child => parent', [ + group([ + query(':enter', [ + style({ + transform: 'translateX(-200px)', + opacity: '0', + height: '0', + }), + animate('250ms ease-out', style({ + transform: 'translateX(0px)', + opacity: '1', + height: '*', + })) + ]), + query(':leave', [ + style({ + opacity: '1', + height: '*' + }), + animate('350ms ease-out', style({ + transform: 'translateX(300px)', + opacity: '0', + height: '0', + })) + ]), + ]) + ]) + ]), + trigger('arrowAnimation', [ + transition('* => *', [ + query(":enter", [ + style({ + display: 'inline-block', + transform: 'translateX(-15px)', + width: '0' + }), + animate('250ms ease-in', style({ + display: 'inline-block', + transform: 'translateX(0px)', + width: '*' + })) + ], { optional: true }), + query(":leave", [ + style({ + display: 'inline-block', + transform: 'translateX(0px)', + width: '*' + }), + animate('250ms ease-in', style({ + display: 'inline-block', + transform: 'translateX(-15px)', + width: '0' + })) + ], { optional: true }) + ]) + ]) + ] +}) +export class SearchPageComponent{ + + + filtersDrawer = 'open'; + selectedDomain = "All Award Data"; + + toggleFilters(){ + this.filtersDrawer = this.filtersDrawer === 'open' ? 'close' : 'open'; + } + + filterSlide: string; + filterSlideToggle(domain){ + this.selectedDomain = domain; + if(domain === 'All Award Data'){ + this.filterSlide = 'parent'; + }else{ + this.filterSlide = 'child'; + } + } + + filterLink(){ + if(this.filtersDrawer == 'open'){ + return 'Hide'; + }else{ + return 'Show'; + } + } + + + } \ No newline at end of file diff --git a/src/prototypes/pages/search/search.template.html b/src/prototypes/pages/search/search.template.html new file mode 100644 index 000000000..6a28d1326 --- /dev/null +++ b/src/prototypes/pages/search/search.template.html @@ -0,0 +1,235 @@ +
    + +
    + +
    + +
    + +

    + + + + + Domains + +

    + +
    + + +
    + + {{ selectedDomain }} + +
    + + +
    +
    + + +
    +
    +
    + +
    + +
    + + + + +
    +
    + + +
    +
    + + + +
    +
    + + + +
    +
    + +
    + + + + + +
    +

    + 1-10 of 20,643,214 results +

    + +
    + + Sort by + + +
    +
    + + +
    +
    + + + + +
    +
    + + + + +
    +
    + + + + +
    +
    + + + + +
    +
    + + + + +
    +
    + +
    +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit +

    +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin aliquam + elementum ipsum, vel facilisis turpis pretium nec. Nulla nec venenatis + est, vel luctus lacus. Maecenas non libero quis libero ullamcorper + posuere sit amet vehicula enim. Nam sed cursus enim, et scelerisque + ante. +

    +
    + +
    +

    + Cras condimentum, tellus a euismod sollicitudin +

    +

    + Vivamus bibendum sapien id rutrum feugiat. Donec vel fermentum arcu. + Quisque tincidunt, est et efficitur vestibulum, ipsum eros lacinia ante, + sed viverra purus eros id urna. Nam tristique rutrum enim, sagittis + lobortis nisi porta eu. Praesent in dictum purus, ut hendrerit mi. +

    +
    + +
    +

    + Duis non justo velit. Etiam risus lacus, posuere +

    +

    + Cras maximus purus eget eros varius iaculis. Aenean velit lectus, + vehicula eu tincidunt a, semper sed dui. Etiam eget nunc rhoncus, + lacinia erat et, tristique erat. +

    +
    + +
    +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit +

    +

    + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin aliquam + elementum ipsum, vel facilisis turpis pretium nec. Nulla nec venenatis + est, vel luctus lacus. Maecenas non libero quis libero ullamcorper + posuere sit amet vehicula enim. Nam sed cursus enim, et scelerisque + ante. +

    +
    + +
    +

    + Cras condimentum, tellus a euismod sollicitudin +

    +

    + Vivamus bibendum sapien id rutrum feugiat. Donec vel fermentum arcu. + Quisque tincidunt, est et efficitur vestibulum, ipsum eros lacinia ante, + sed viverra purus eros id urna. +

    +
    + + + +
    +
    +
    \ No newline at end of file diff --git a/src/prototypes/prototypes.module.ts b/src/prototypes/prototypes.module.ts new file mode 100644 index 000000000..31a60bc05 --- /dev/null +++ b/src/prototypes/prototypes.module.ts @@ -0,0 +1,24 @@ +import { NgModule } from '@angular/core'; +import { CommonModule } from '@angular/common'; + +import { SamUIKitModule } from 'sam-ui-elements/src/ui-kit'; +import { SiteComponentsModule } from '../app/site-components/sitecomponents.module'; + +import { PrototypesRoutingModule } from './prototypes.routes'; +import { PrototypesHomeComponent } from './home/prototypes-home.component'; + +@NgModule({ + declarations: [ + PrototypesHomeComponent + ], + imports: [ + CommonModule, + PrototypesRoutingModule, + SamUIKitModule, + SiteComponentsModule + ], + exports: [ + ], +}) +export class PrototypesModule { } + diff --git a/src/prototypes/prototypes.routes.ts b/src/prototypes/prototypes.routes.ts new file mode 100644 index 000000000..f910f7f12 --- /dev/null +++ b/src/prototypes/prototypes.routes.ts @@ -0,0 +1,29 @@ +import { NgModule } from '@angular/core'; +import { RouterModule, Routes } from '@angular/router'; + +import { PrototypesHomeComponent } from './home/prototypes-home.component'; + +const prototypesRoutes: Routes = [ + { + path: '', + component: PrototypesHomeComponent + }, + { + path: 'page', + loadChildren: './pages/prototypes-pages.module#PrototypesPagesModule' + }, + { + path: 'component', + loadChildren: './components/prototypes-components.module#PrototypesComponentsModule' + } +]; + +@NgModule({ + imports: [ + RouterModule.forChild(prototypesRoutes) + ], + exports: [ + RouterModule + ] +}) +export class PrototypesRoutingModule{} \ No newline at end of file diff --git a/src/sam-ui-elements b/src/sam-ui-elements index 824d7d67b..307296d8a 160000 --- a/src/sam-ui-elements +++ b/src/sam-ui-elements @@ -1 +1 @@ -Subproject commit 824d7d67b5e855506409140ed4741f4bfe81a03f +Subproject commit 307296d8a51b9cfe522f0865cf4eb92f6fc2adc4 diff --git a/src/styles/docs.scss b/src/styles/docs.scss index 98da891d7..379f3ce95 100644 --- a/src/styles/docs.scss +++ b/src/styles/docs.scss @@ -1,563 +1,888 @@ +/********************************************** + SAM STYLES CSS +***********************************************/ +@import "sam-styles/index"; + /********************************************** SAM-FRON-END CSS ***********************************************/ @import "sam-front-end/all"; /********************************************** - Docs + PROTOTYPES ***********************************************/ -/*--------------------------- - Syntax Code Highlight ------------------------------*/ -@import '~prismjs/themes/prism'; -code[class*="language"] { - font-size: 14px; -} - -/*--------------------------- - Shared ------------------------------*/ +@import "sam-design-system/prototypes/index"; -@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600'); - -body { - -webkit-text-size-adjust: 100%; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - text-rendering: optimizeLegibility; - font-feature-settings: "pnum"; - font-variant-numeric: proportional-nums +/********************************************** + PATTERNS +***********************************************/ +.patterns-page{ + display: flex; + //background-color: #f8f8fb; } - -.container{ +.patterns-page-wrapper{ + max-width: 1000px; margin: 0 auto; - padding: 0 20px; + padding: 0 0 8rem 0; +} +ol.row{ + list-style: none; + padding-left: 0; +} +.card { + display: block; width: 100%; - max-width: 1040px + padding: 1.25rem 1rem; + position: relative; + background: #fff; + will-change: transform; } - -.doc-intro p:first-of-type{ - font-size: 25px; - font-weight: 300; - margin-bottom: 5px; - line-height: 1.2; +.card { + padding: 3rem 3rem 3.5rem; } - -/********************************************** - PATTERNS: PAGES -***********************************************/ -/*--------------------------- - Home ------------------------------*/ -.patterns.home{ - display: grid; - max-width: 1000px; - margin: 0 auto 2em auto; - grid-template-columns: 1fr 1fr 1fr; - grid-auto-flow: row; - .sam-ui.header{ - grid-column: 1 / -1; - } +.card:hover{ + text-decoration: none; } - -/*--------------------------- - Pop Up ------------------------------*/ -body.modal-open{ - overflow: hidden; +.card-title { + margin-bottom: 1rem; + color: #16243A; + font-size: 1em; + line-height: 1.25; + font-weight: 600; + small, .small { + font-family: system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif; + color: rgba(51,56,66,0.5); + transition: color .2s ease-in; + will-change: color; + display: block; + font-size: 1.4rem; + line-height: 1.25rem; + color: rgba(0,0,0,0.65); + font-weight: 400; + } } -router-outlet[name="master-modal"] + ng-component{ +.card-description { display: block; - position: fixed; - top: 0; - width: 100vw; - height: 100vh; - background-color: rgba(255, 255, 255, 0.85); - sam-page{ + margin-bottom: 1rem; + font-size: 1.6rem; + font-weight: 400; + line-height: 1.25; + color: #333842; + transition: color .2s ease-in; + will-change: color; +} +@media screen and (min-width: 768px) { + .row { + display: flex; + flex-wrap: wrap; + margin-left: -5.6%; + margin-bottom: -3.5rem !important; + } + a.card:hover { + transform: translateY(-1px); + } + .card-list .col { + display: flex; + } + .card { + border-radius: .3rem; + box-shadow: 0 0 0 1px rgba(0,0,0,0.03); + will-change: transform; + transition: transform .2s ease-in; + } + .card::before { + box-shadow: 0 1px 2px rgba(0,0,0,0.2); + } + a.card::after { + box-shadow: 0 4px 12px rgba(0,0,0,0.2); + opacity: 0; + } + a.card:hover::after { + opacity: 1; + } + .card::before, .card::after { + content: ""; display: block; - border-radius: 2px; - box-shadow: 1px 3px 10px 2px rgba(0,0,0,.2); - background-color: white; - margin: 4%; - overflow-y: auto; - max-height: calc(100vh - 10%); + position: absolute; + z-index: 0; + top: 0; + right: 0; + bottom: 0; + left: 0; + border-radius: .1875rem; + will-change: opacity; + transition: opacity .2s ease-in; + } + .col { + margin-bottom: 3.5rem !important; + margin-left: 5.3030303%; + } + .col.span-4 { + width: 28.030304%; } } -/********************************************** - LAYOUT COMPONENTS -***********************************************/ - -/*--------------------------- - Master Page ------------------------------*/ -.sam-ui.master-page{ - display: grid; - grid-template-columns: 1fr; - grid-template-rows: min-content 1fr min-content; - grid-auto-flow: row; - min-height: 100vh; +.patterns-menu{ + color: white; + padding: .5rem; + font-size: .945em; + background-color: rgba(0, 0, 0, 0.8); + position: fixed; + bottom: 0; + width: 100vw; + a{ + color: white; + } + .patterns-menu-divider::before{ + content: "|"; + padding: 0 .7rem; + opacity: 0.3; + } } - -// Move router outlet to the bottom -.sam-ui.master-page router-outlet{ - grid-row: -1; +.patterns-menu-space{ + height: 3rem; } - -/*--------------------------- - Single Page ------------------------------*/ -.sam-ui.page{ - display: grid; - grid-template-columns: 1fr; - grid-gap: 1.5em; - width: 100%; - max-width: 1400px; - margin: 0 auto; - padding: 0 10px; -} - -@media only screen and (min-width: 600px){ - .sam-ui.page{ - grid-template-columns: repeat(4, 1fr); - grid-template-rows: min-content; - grid-gap: 1em 1.5em; - grid-template-areas: - "breadcrumbs breadcrumbs breadcrumbs breadcrumbs" - "header header header header" - "content content content content"; - - &.sidebar{ - grid-template-areas: - "breadcrumbs breadcrumbs breadcrumbs breadcrumbs" - "sidebar header header header" - "sidebar content content content"; +/********************************************** + PROTOTYPE: PAGES +***********************************************/ +@keyframes Gradient { + 0% { + background-position: 0% 50% + } + 50% { + background-position: 100% 50% + } + 100% { + background-position: 0% 50% + } +} + +.search-home{ + p{ + font-weight: 600; + width: 700px; + margin: 20px auto; + text-align: center; + font-size: 2.3rem; + line-height: 1.2em; + } + .image-container{ + display: flex; + width: 1100px; + margin: 30px auto; + justify-content: space-between; + .image{ + width: 350px; + height: 280px; + background-color: #f1f1f1; + border: 1px solid #e2e2e2; } + } + .wall{ + width: 100%; + display: block; + height: 400px; + background-color: #f1f1f1; + border: 1px solid #e2e2e2; + } + .blue-wall{ + width: 100%; + display: block; + height: 100px; + background-color: #112e51; + } +} - .header-area{ - grid-area: header; +.search-results-page{ + .search-header{ + padding: .5em 1em; + border-bottom: 1px solid #ccc; + display: flex; + justify-content: space-between; + } + .search-results-main{ + display: flex; + } + .search-results-filters{ + display: none; + } + @media only screen and (min-width: 600px){ + .search-results-filters{ + display: block; + background-color: #f1f1f1; + .filter{ + border-bottom: 1px solid #d2d2d2; + padding-bottom: 1em; + margin: 1em; + .title{ + display: block; + background-color: #cecdcd; + height: 1.2em; + margin-bottom: 10px; + } + .title.medium{ + width: 200px; + } + .title.small{ + width: 150px; + } + .checkbox{ + display: block; + height: 1.3em; + width: 1.3em; + background-color: white; + margin-bottom: 8px; + border: 1px solid #ccc; + border-radius: 5px; + &:after{ + content: ' '; + display: block; + height: 1.3em; + margin-left: 1.5em; + width: 200px; + background-color: #ddd; + } + } + .checkbox.large{ + &:after{ + width: 235px !important; + } + } + .checkbox.small{ + &:after{ + width: 150px !important; + } + } + .input{ + background-color: white; + margin-bottom: 8px; + display: block; + border-radius: 2px; + height: 1.8em; + border: 1px solid #ccc; + } + } + .filter-slide{ + margin: 1em; + overflow: hidden; + border-bottom: 1px solid #d2d2d2; + padding-bottom: 1em; + h4{ + font-size: 17px; + } + a.parent{ + display: block; + font-size: 16px; + margin-bottom: 2px; + i{ + padding-left: 5px; + padding-right: 5px; + } + } + .current{ + cursor: default; + color: black; + } + label{ + font-size: 16px; + display: inline-block; + margin: 0; + padding-left: 5px; + } + label::before{ + content: none; + } + input[type="checkbox"]{ + position: static; + opacity: 1; + margin: 0; + height: 15px; + display: inline-block; + width: auto; + &:focus{ + box-shadow: none; + } + } + } } - - sam-breadcrumbs{ - grid-area: breadcrumbs; + } + + .search-results-content{ + margin: 1em; + .search-result{ + h4{ + margin-bottom: 5px; + letter-spacing: 0; + a{ + font-weight: 600; + } + } + margin-bottom: 1.5em; + p{ + max-width: 850px; + } } - - .sidebar-area{ - grid-area: sidebar; + .results-header{ + display: none; } - - .content-area{ - grid-area: content; - margin-bottom: 2em; + @media only screen and (min-width: 600px){ + .results-header{ + display: flex; + justify-content: space-between; + .showing-text{ + font-size: 16px; + } + .sort{ + display: flex; + padding-right: 15px; + font-size: 15px; + select{ + -webkit-appearance: menulist; + -moz-appearance: menulist; + appearance: menulist; + background-color: initial; + height: 1.5em; + font-size: 1.6rem; + padding: 0; + margin: 1px 0 0 5px; + width: auto; + vertical-align: baseline; + } + } + } + } + .keyword{ + display: flex; + span{ + margin-top: 6px; + font-weight: 600; + margin-right: 10px; + } + & > div{ + border: 1px solid #c7c7c7; + width: 88%; + margin-bottom: 1em; + padding: .3em; + font-size: 16px; + font-weight: 600; + background-color: #f9f9f9; + } + } + .selected-filters{ + display: none; + } + @media only screen and (min-width: 600px){ + .selected-filters{ + display: block; + margin-bottom: 1.8em; + position: relative; + .options{ + font-size: 15px; + a{ + padding-left: 7px; + } + } + } + } + .search-result-loading-container{ + position: absolute; + width: 800px; + } + .search-result-loading{ + margin-bottom: 1.5em; + opacity: 0; + .title{ + display: block; + height: 1.3em; + margin-bottom: 10px; + border-radius: 2px; + width: 70%; + background: linear-gradient(to right, #ececec, #e7e7e7); + background-size: 400% 400%; + animation: Gradient 3s ease infinite; + border: 1px solid #e2e2e2; + } + .line{ + display: block; + height: 1.2em; + margin-bottom: 9px; + background: linear-gradient(to right, #ffffff, #d4d4d4); + background-size: 400% 400%; + animation: Gradient 3s ease infinite; + border-radius: 2px; + border: 1px solid #e2e2e2; + &.random-1{ + width: 94%; + } + &.random-2{ + width: 92%; + } + &.random-3{ + width: 95%; + } + } } } } - -/*--------------------------- - Video ------------------------------*/ -.sam-ui.embed.video{ - position: relative; +// body{ +// background-color: #fbfbfb; +// } +.search-mobile-page{ + //width: 100%; display: block; - width: 100%; - &::before { - display: block; - content: ""; - } - &.ratio16by9::before { - padding-top: 56.25%; + max-width: 1000px; + margin: 0 auto; + .mask-menu{ + display: flex; + border-bottom: 1px solid #d4d4d4; + background-color: white; + ul::-webkit-scrollbar{ + display: none; + } + ul{ + width: 100vw; + display: flex; + padding: 0; + margin: 0; + overflow: auto; + -webkit-mask-image: linear-gradient(90deg, transparent, #000 20px, #000 calc(100% - 20px), transparent 100%); + li{ + list-style: none; + a:first-child{ + margin-left: 7px; + } + a{ + -webkit-tap-highlight-color: transparent; + transition: color .1s; + white-space: nowrap; + padding: 5px 15px; + display: block; + font-size: 14px; + text-transform: uppercase; + &.current{ + border-bottom: 2px solid #0071bc; + } + } + } + } } - iframe{ - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; + @media only screen and (min-width: 600px){ + .mask-menu:first-child{ + display: none; + } } -} - -/*--------------------------- - Content Area ------------------------------*/ -.sam-ui.page{ - .content-area{ - display: grid; - grid-template-columns: 1fr; - grid-gap: 1em 1.5em; + .results-options{ + margin: 10px; + display: flex; + justify-content: space-between; + .showing-text{ + font-size: 16px; + display: none; + } + @media only screen and (min-width: 600px){ + .showing-text{ + display: block; + } + } + .sort{ + display: flex; + font-size: 16px; + strong{ + white-space: nowrap; + } + select{ + -webkit-appearance: menulist; + -moz-appearance: menulist; + appearance: menulist; + background-color: initial; + height: 1.5em; + font-size: 1.6rem; + padding: 0; + margin: 1px 0 0 5px; + width: auto; + border-color: #ccc; + border-width: 0px 0px 1px 0px; + vertical-align: baseline; + } + } } -} - -@media only screen and (min-width: 800px){ - .sam-ui.page{ - .content-area{ - grid-template-columns: repeat(6, 1fr); + .search-results-mobile{ + margin: 15px 10px 50px 10px; + .search-result{ + margin-bottom: 15px; + border-radius: 2px; + padding: 15px 10px; + background-color: white; + //box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.08); + box-shadow: 0 1px 11px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.04); + h4{ + font-size: 17px; + line-height: 1.2em; + margin-bottom: 5px; + a{ + font-weight: 600; + } + } + p{ + font-size: 16px; + line-height: 1.3em; + } + @media only screen and (min-width: 600px){ + padding: 20px 25px; + h4{ + font-size: 20px; + } + p{ + font-size: 17px; + } + } } - .content-area > *{ - grid-column: 1 / -1; + } + .filter-button{ + background-color: #d23f31; + color: white; + font-size: 30px; + font-weight: 600; + position: fixed; + bottom: 30px; + right: 25px; + width: 64px; + text-align: center; + padding: 15px 0px; + border-radius: 30px; + cursor: pointer; + z-index: 5; + -webkit-tap-highlight-color: transparent; + box-shadow: 0 0 4px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.28); + .label{ + position: absolute; + font-weight: 700; + top: -10px; + right: -10px; } } - [data-emphasis="divided"]{ - grid-column: 1 / 4 !important; + @media only screen and (min-width: 600px){ + .filter-button{ + bottom: 90px; + } } - [data-emphasis="divided"] + *{ - grid-column: 4 / -1 !important; + .filter-options{ + position: fixed; + bottom: 110px; + right: 25px; + div{ + cursor: pointer; + width: 60px; + color: white; + border-radius: 30px; + font-weight: 600; + padding: 15px 0px; + text-align: center; + box-shadow: 0 0 4px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.28); + } + + .reset-filters{ + background-color: #333333; + margin-bottom: 15px; + } + .save-filters{ + background-color: #3c80f6; + position: relative; + .label{ + position: absolute; + font-weight: 700; + top: -10px; + right: -10px; + background-color: #dc3b3b; + width: 20px; + } + } } - - [data-emphasis="high"]{ - grid-column: 1 / 5 !important; + @media only screen and (min-width: 600px){ + .filter-options{ + bottom: 170px; + } } - [data-emphasis="high"] + *{ - grid-column: 5 / -1 !important; + + .overlay-screen{ + width: 100%; + height: 100%; + position: fixed; + top: 0; + left: 0; + background-color: black; + opacity: .5; + z-index: 3; } - [data-emphasis="low"]{ - grid-column: 1 / 3 !important; + .filter-screen{ + position: fixed; + width: 100%; + min-height: 100%; + top: 0; + left: 0; + z-index: 4; + background-color: white; + h4{ + margin-top: 20px !important; + padding-left: 20px; + } + .selected-filters{ + //border-bottom: 1px solid #e6e6e6; + padding: 0 20px; + padding-bottom: 15px; + a{ + margin-bottom: 5px; + } + } + .filter{ + border-bottom: 1px solid #d2d2d2; + padding-bottom: 1em; + margin: 1em; + .title{ + display: block; + background-color: #cecdcd; + height: 1.2em; + margin-bottom: 10px; + } + .title.medium{ + width: 200px; + } + .title.small{ + width: 150px; + } + .checkbox{ + display: block; + height: 1.3em; + width: 1.3em; + background-color: white; + margin-bottom: 8px; + border: 1px solid #ccc; + border-radius: 5px; + &:after{ + content: ' '; + display: block; + height: 1.3em; + margin-left: 1.5em; + width: 200px; + background-color: #ddd; + } + } + .checkbox.large{ + &:after{ + width: 235px !important; + } + } + .checkbox.small{ + &:after{ + width: 150px !important; + } + } + .input{ + background-color: white; + margin-bottom: 8px; + display: block; + border-radius: 2px; + height: 1.8em; + border: 1px solid #ccc; + } + } } - [data-emphasis="low"] + *{ - grid-column: 3 / -1 !important; + @media only screen and (min-width: 600px){ + .filter-screen{ + width: 450px; + border-radius: 3px; + left: 50%; + top: 200px; + margin-left: -225px; + box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.08); + } } - - [data-emphasis="lowest"]{ - grid-column: 1 / 2 !important; + .filter-screen-large{ + display: none; } - [data-emphasis="lowest"] + *{ - grid-column: 2 / -1 !important; + @media only screen and (min-width: 1200px){ + .filter-button{ + display: none; + } + .filter-screen-large{ + display: block; + width: 32%; + //background-color: white; + h4{ + margin-top: 20px !important; + padding-left: 20px; + } + .selected-filters{ + //border-bottom: 1px solid #e6e6e6; + padding: 0 20px; + padding-bottom: 15px; + a{ + margin-bottom: 5px; + } + } + .filter{ + border-bottom: 1px solid #d2d2d2; + padding-bottom: 1em; + margin: 1em; + .title{ + display: block; + background-color: #cecdcd; + height: 1.2em; + margin-bottom: 10px; + } + .title.medium{ + width: 200px; + } + .title.small{ + width: 150px; + } + .checkbox{ + display: block; + height: 1.3em; + width: 1.3em; + background-color: white; + margin-bottom: 8px; + border: 1px solid #ccc; + border-radius: 5px; + &:after{ + content: ' '; + display: block; + height: 1.3em; + margin-left: 1.5em; + width: 200px; + background-color: #ddd; + } + } + .checkbox.large{ + &:after{ + width: 235px !important; + } + } + .checkbox.small{ + &:after{ + width: 150px !important; + } + } + .input{ + background-color: white; + margin-bottom: 8px; + display: block; + border-radius: 2px; + height: 1.8em; + border: 1px solid #ccc; + } + } + .button{ + line-height: 11.9px; + margin-left: 20px; + position: relative; + .label{ + position: absolute; + font-weight: 700; + top: -10px; + right: -10px; + background-color: #dc3b3b; + width: 20px; + color: white; + } + } + } } + } -/*--------------------------- - Container ------------------------------*/ -sam-container{ - display: grid; - grid-template-columns: repeat(6, 1fr); - grid-gap: 0em; -} - -sam-container *{ - grid-column: 1 / -1; +@media only screen and (min-width: 1200px){ + .search-mobile-page{ + display: flex; + max-width: 1400px; + } } -sam-container ul.bulleted.list{ - margin: 0; - color: black; -} -/*--------------------------- - Sidebar ------------------------------*/ -sam-sidebar{ - display: grid; - grid-row-gap: 1em; -} +/********************************************** + Docs +***********************************************/ /*--------------------------- - Single Page typography + Syntax Code Highlight -----------------------------*/ -.sam-ui.page p{ - line-height: 1.5; - color: black; - margin: 1em 0; +@import '~prismjs/themes/prism'; +code[class*="language"] { + font-size: 14px; } /*--------------------------- - For Demo Purposes + Shared -----------------------------*/ -.master-page-header, -.master-page-footer{ - color: #aaaaaa; - background-color: #d6d7d9; - padding: .5em; -} - -.master-page-header{ - text-align: right; -} - -/********************************************** - Listing -***********************************************/ -sam-list[bulleted]{ - .sam-ui.list-next{ - list-style: disc; - list-style-position: inside; - } -} -.sam-ui.list-next{ - list-style: none; - color: black; - padding: 0; - margin: 0; -} -.sam-ui.horizontal.list-next{ - display: flex; - flex-direction: column; - margin: 1em 0; -} -@media only screen and (min-width: 600px){ - .sam-ui.horizontal.list-next{ - justify-content: space-around; - flex-direction: row; - } -} - -/********************************************** - Search -***********************************************/ -.sam-ui.search{ - display: flex; - background-color: white; - margin: .5em 0; - border-radius: 2px; - box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08); - transition: box-shadow 200ms cubic-bezier(0.4, 0.0, 0.2, 1); -} - -.sam-ui.search:hover{ - box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.08); -} - -.sam-ui.search input[type="search"]{ - border: none; - box-sizing: border-box; -} - -.sam-ui.search input[type="search"]:focus{ - box-shadow: none; -} - -.sam-ui.search button{ - margin: 0; - padding: 0px 15px; - background-color: transparent; - svg{ - color: #0071bc; - } -} - -/********************************************** - Headers -***********************************************/ -sam-heading[detached]{ - transform: translateY(-50%); - position: absolute; - top: 0; - align-self: center; - background-color: white; - padding: 0 .5em; -} - -/********************************************** - Icons -***********************************************/ -.sam-ui.icon{ - display: inline-block; - font-size: inherit; - height: 1em; - vertical-align: -.125em; -} - -sam-icon[data-emphasis="lowest"]{ - justify-self: center; - align-self: center; - svg{ - font-size: 4em !important; - color: darkgray !important; - vertical-align: 0em !important; - } -} -/********************************************** - Box -***********************************************/ -.sam-ui.box{ - padding: 1em; - border-radius: 2px; - background-color: #f1f1f1; - position: relative; -} - -.sam-ui.outline.box{ - border: 1px solid #ccc; - background-color: transparent; - display: flex; - flex-direction: column; - margin-top: 2em; -} - -.sam-ui.primary.box{ - background-color: #dce4ee; -} - -/********************************************** - Navigation -***********************************************/ -.sam-ui.navigation{ - list-style: none; - padding-left: 0; -} - -/********************************************** - Side Navigation -***********************************************/ -.sam-ui.side.navigation{ - ul{ - list-style: none; - background-color: #f5f5f5; - padding-left: 0; - box-shadow:inset 0 4px 4px -2px rgba(0,0,0,0.16); - li a{ - padding-left: 1.5em; - } - li:last-child a{ - border-bottom:none; - } - li a.active::after{ - background-color: #f5f5f5; - } - } - li a{ - position: relative; - display: block; - padding: .5em; - border-top:1px solid #ccc; - border-right:1px solid #ccc; - transition: box-shadow 200ms cubic-bezier(0.4, 0.0, 0.2, 1); - } - li a.active::after{ - content: ''; - width: 1em; - height: 1em; - position: absolute; - display: block; - top: 50%; - right: 0; - border-width: 0 1px 1px 0; - border-style: solid; - border-color: #ccc; - background-color: white; - transform: translateY(-50%) translateX(50%) rotate(-45deg); - } - li:first-child a{ - border-top-right-radius: 2px; - } - li:last-child a{ - border-bottom-right-radius: 2px; - border-bottom:1px solid #ccc; - } +.site-container{ + margin: 0 auto; + padding: 0 20px; + width: 100%; + max-width: 1040px } - - - - - /********************************************** HOME PAGE ***********************************************/ /*--------------------------- - Site Navigation + Site Header -----------------------------*/ - -.site-nav { - z-index: 499; - font-size: 16px; - text-transform: uppercase; - padding: 30px 0px 12px; - margin-bottom: 30px; - font-family: 'Open Sans', 'Source Sans Pro'; +// body{ +// background-color: #f8f8fb; +// } +.site-header{ + padding: 1rem 0; + font-size: 1.8rem; + border-bottom: 2px solid rgba(207,215,223,.25) } - -.site-nav > .container { +.site-header > .site-container { display: -ms-flexbox; display: flex; -ms-flex-pack: justify; justify-content: space-between; - position: relative + align-items: center; } -.site-nav a { - -webkit-tap-highlight-color: transparent; +.site-header a { + color: #16243A; + //font-weight: normal; transition: color .1s; white-space: nowrap; + -webkit-tap-highlight-color: transparent; } -.site-nav a.home { - display: -ms-flexbox; - display: flex; - -ms-flex-align: center; - align-items: center; +.site-header a.active, +.site-header a:hover { + color: #6e7986; + text-decoration: none; } - -.site-nav .mask-container { - -ms-flex-positive: 1; - flex-grow: 1; - -ms-flex-pack: end; - justify-content: flex-end; - margin: 0 -20px 0 20px; - overflow: hidden; - -webkit-mask-image: linear-gradient(90deg,transparent,#000 20px,#000 calc(100% - 20px),transparent 100%) +.site-header a.text-logo{ + font-weight: 700; + text-transform: uppercase; } -.site-nav .mask-container, -.site-nav ul { +.site-header ul { display: -ms-flexbox; display: flex; -ms-flex-align: center; - align-items: center -} - -.site-nav ul { + align-items: center; padding-left: 0; - overflow: auto; - -webkit-overflow-scrolling: touch; -} - -.site-nav ul::-webkit-scrollbar { - display: none -} - -.site-nav li { list-style: none; - padding: 0 10px -} - -.site-nav li:first-child { - padding-left: 20px -} - -.site-nav li:last-child { - padding-right: 20px } -@media (min-width: 420px) { - .site-nav li { - padding:0 15px - } +.site-header li { + padding: 0 2rem; } -@media (min-width: 670px) { - .site-nav li { - padding:0 20px - } -} - -.site-nav .separator { - color: #3d7bb7; - position: absolute; - width: calc(100% - 40px); - height: 1px; - bottom: -10px; - background-color: currentColor; - opacity: .15; - pointer-events: none +.site-header li:last-child { + padding-right: 0; } /*--------------------------- @@ -633,13 +958,12 @@ sam-icon[data-emphasis="lowest"]{ @media (min-width: 670px) { #intro { - padding-top:50px; + padding-top:70px; position: static; - padding-bottom: 90px } #intro p { - margin: 25px 55% 50px 0 + margin: 25px 55% 30px 0 } } @@ -769,17 +1093,8 @@ sam-icon[data-emphasis="lowest"]{ animation: cube-fade-in 2s cubic-bezier(.165,.84,.44,1) } -// #intro-animation .cube:first-child { -// margin-top: -240px -// } - #intro-animation .cube:nth-child(2) { z-index: 1; - //margin-top: -240px -} - -#intro-animation .cube:nth-child(3) { - // margin: 0px 0 0 10px } @media (min-width: 670px) { @@ -841,13 +1156,12 @@ sam-icon[data-emphasis="lowest"]{ Homepage content -----------------------------*/ -main footer.container { - --spacing:90px; - margin-bottom: var(--spacing) +main footer.site-container { + margin-bottom: 60px; } @media (min-width: 670px) { - main footer.container { + main footer.site-container { display: grid; grid: repeat(3,auto)/auto-flow 1fr; grid-gap: 0 40px @@ -856,32 +1170,30 @@ main footer.container { /*--------------------------- - Footer + Site Footer -----------------------------*/ .site-footer { - font-family: 'Open Sans', 'Source Sans Pro'; - font-size: 15px; - background: #f6f9fc; + font-size: 16px; border-top: 2px solid rgba(207,215,223,.25) } .site-footer ul { - padding: 30px 0 30px; + padding: 30px 0; margin: 0; -} - -.site-footer li{ list-style: none; } .site-footer a { - color: #566677; + color: #6e7986; + font-weight: normal; transition: color .1s } +.site-footer a.active, .site-footer a:hover { - color: #32325d + color: #16243A; + text-decoration: none; } @media (min-width: 670px) { diff --git a/src/styles/sam-design-system/prototypes/_base.scss b/src/styles/sam-design-system/prototypes/_base.scss new file mode 100644 index 000000000..8d4c731a7 --- /dev/null +++ b/src/styles/sam-design-system/prototypes/_base.scss @@ -0,0 +1,5 @@ +.prototype-page{ + background-color: #f8f8fb; + display: inline-block; + width: 100%; +} \ No newline at end of file diff --git a/src/styles/sam-design-system/prototypes/_index.scss b/src/styles/sam-design-system/prototypes/_index.scss new file mode 100644 index 000000000..fc5e75a9e --- /dev/null +++ b/src/styles/sam-design-system/prototypes/_index.scss @@ -0,0 +1,5 @@ +@import "base"; + +// Prototypes +@import "picker"; +@import "main-nav"; \ No newline at end of file diff --git a/src/styles/sam-design-system/prototypes/_main-nav.scss b/src/styles/sam-design-system/prototypes/_main-nav.scss new file mode 100644 index 000000000..0a0130d2f --- /dev/null +++ b/src/styles/sam-design-system/prototypes/_main-nav.scss @@ -0,0 +1,24 @@ +.prototype-main-nav{ + background-color: white; + color: #16243A; + padding: 1rem 2rem; + display: flex; + align-items: center; + font-size: 2rem; + justify-content: space-between; + border: 2px solid rgba(207, 215, 223, 0.25); +} + +.prototype-main-nav-menu{ + display: flex; + align-items: center; + & > svg{ + margin-left: 1.5rem; + } +} + +.prototype-main-nav-search{ + svg{ + padding-left: 1rem; + } +} \ No newline at end of file diff --git a/src/styles/sam-design-system/prototypes/_picker.scss b/src/styles/sam-design-system/prototypes/_picker.scss new file mode 100644 index 000000000..46935ef33 --- /dev/null +++ b/src/styles/sam-design-system/prototypes/_picker.scss @@ -0,0 +1,159 @@ +/********************************************** + PICKER +***********************************************/ + +.prototype-picker{ + width:500px; + margin: 4rem auto; + padding: 2rem; + background-color: white; + + border-radius: .3rem; + box-shadow: 0 0 0 1px rgba(0,0,0,0.03); + will-change: transform; + transition: transform .2s ease-in; + +} + +.prototype-picker::before{ + box-shadow: 0 1px 2px rgba(0,0,0,0.2); +} +.prototype-picker:after { + box-shadow: 0 4px 12px rgba(0,0,0,0.2); +} +.prototype-picker::before, +.prototype-picker::after { + content: ""; + display: block; + position: absolute; + z-index: -1; + top: 0; + right: 0; + bottom: 0; + left: 0; + border-radius: .1875rem; + will-change: opacity; + transition: opacity .2s ease-in; +} + +.picker-radios{ + margin: 1rem 0rem 2rem; + label{ + vertical-align: middle; + font-size: 16px; + } + span{ + margin-right: 1rem; + } +} + +.picker-results{ + width: 100%; + overflow-x: scroll; +} +.picker-results:after { + content: ""; + display: block; + position: absolute; + width: 13%; + height: 285px; + bottom: 85px; + right: 14px; + background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%); +} +.picker-results-wrapper{ + display: flex; + flex-wrap: wrap; + width: 1000px; + margin-bottom: 1.5rem; + justify-content: space-between; + &.short{ + width: auto; + .picker-result{ + width: 20%; + a{ + span{ + font-weight: 400; + } + } + } + } +} +.picker-result{ + background-color: #f3eee7; + padding: 1rem 3rem; + margin: .5rem 0; + display: flex; + align-items: center; + width: 10%; + a{ + color: black; + font-size: 15px; + line-height: 1.2em; + text-decoration: none; + } + &.active-result{ + border: 1px solid black; + a{ + color: #7b7b7b; + } + } +} + +.picker-crumbs{ + font-size: 16px; + margin-bottom: 1rem; + font-weight: 600; + span{ + font-weight: 400; + } +} + +.prototype-picker .button.disabled{ + background-color: #d2d2d2; + color: #636363; +} + +.picker-footer{ + text-align: right; + button.primary{ + overflow: hidden; + text-overflow: ellipsis; + max-width: 250px; + } +} + +.picker-results-wrapper-2 { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); + grid-gap: 2px; + //grid-auto-rows: minmax(80px, auto); + width: 1000px; + a{ + display: block; + margin: 3px; + color: black; + font-size: 15px; + line-height: 1.2em; + background-color: #f3eee7; + padding: 1rem 2rem; + border: 1px solid #f3eee7; + border-radius: 2px; + overflow: hidden; + text-overflow: ellipsis; + span{ + display: block; + font-size: 14px; + font-weight: normal; + } + } + a:hover{ + border: 1px solid #1abce0; + text-decoration: none; + color: #16243A; + background-color: #dfe9f1 !important; + } + a:nth-child(even) { + background: #eae9e9; + } +} \ No newline at end of file diff --git a/src/styles/sam-styles/_box.scss b/src/styles/sam-styles/_box.scss new file mode 100755 index 000000000..7e50078c9 --- /dev/null +++ b/src/styles/sam-styles/_box.scss @@ -0,0 +1,37 @@ +.sam.box{ + padding: 1.5rem; + background-color: white; + border-radius: 2px; +} + +.sam.box.primary{ + background-color: #dce4ee; +} + +.sam.box.secondary{ + background-color: #f5f5f5; +} + +.sam.box.outline{ + background-color: white; + border: 1px solid #ccc; +} + + +// Titles +.sam.box > .title:first-child{ + margin-top: 0; +} + +// Padded +.sam.box.vertically.padded{ + margin: 3rem 0; +} + +// Angular Specific +sam-box .sam.box{ + height: calc(100% - 3rem); +} +.sam.box > sam-title:first-child .title{ + margin-top: 0; +} \ No newline at end of file diff --git a/src/styles/sam-styles/_breadcrumbs.scss b/src/styles/sam-styles/_breadcrumbs.scss new file mode 100755 index 000000000..796bf79fe --- /dev/null +++ b/src/styles/sam-styles/_breadcrumbs.scss @@ -0,0 +1,14 @@ +.sam.breadcrumbs{ + display: flex; + list-style: none; + padding: 0; + margin: 0; + font-weight: 600; + font-size: 1.6rem; +} + +.sam.breadcrumbs li:not(:last-child)::after { + content: '/'; + color: #ccc; + padding: 0 .4em; +} \ No newline at end of file diff --git a/src/styles/sam-styles/_button.scss b/src/styles/sam-styles/_button.scss new file mode 100755 index 000000000..fa90db230 --- /dev/null +++ b/src/styles/sam-styles/_button.scss @@ -0,0 +1,34 @@ +.sam.button{ + cursor: pointer; + white-space: nowrap; + display: inline-block; + height: 40px; + padding: 0 14px; + box-shadow: 0 4px 6px rgba(50,50,93,.11), 0 1px 3px rgba(0,0,0,.08); + background: #fff; + border-radius: 4px; + font-size: 15px; + font-weight: 600; + //text-transform: uppercase; + letter-spacing: .025em; + color: #000; + text-decoration: none; + transition: all .15s ease; + border: none; +} + +.sam.button:hover{ + transform: translateY(-1px); + box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08); +} + +.sam.button.primary{ + color: white; + background: #0071bc; +} + +// Attached +.sam.button.left.attached{ + border-radius: 0 4px 4px 0px; + border: none; +} \ No newline at end of file diff --git a/src/styles/sam-styles/_container.scss b/src/styles/sam-styles/_container.scss new file mode 100755 index 000000000..01c616fa9 --- /dev/null +++ b/src/styles/sam-styles/_container.scss @@ -0,0 +1,27 @@ + +// Size +.sam.container.large{ + font-size: 2rem; + line-height: 1.3em; +} +.sam.container.big{ + font-size: 2.5rem; + line-height: 1.3em; + letter-spacing: -0.15px; + margin: 0 0 .6em 0; +} +.sam.container.huge{ + font-size: 3rem; + line-height: 1.2em; + letter-spacing: -0.2px; + margin: 0 0 .5em 0; +} + +// Weight +.sam.container.bold{ + font-weight: 600; +} + +.sam.container.thin{ + font-weight: 300; +} \ No newline at end of file diff --git a/src/styles/sam-styles/_icon.scss b/src/styles/sam-styles/_icon.scss new file mode 100755 index 000000000..5affdfc1d --- /dev/null +++ b/src/styles/sam-styles/_icon.scss @@ -0,0 +1,6 @@ +.sam.icon{ + display: inline-block; + font-size: inherit; + height: 1em; + vertical-align: -.15em; +} \ No newline at end of file diff --git a/src/styles/sam-styles/_image.scss b/src/styles/sam-styles/_image.scss new file mode 100755 index 000000000..9a756af72 --- /dev/null +++ b/src/styles/sam-styles/_image.scss @@ -0,0 +1,38 @@ +.sam.image{ + border: 1px solid #dcdcdc; + display: block; + height: 100px; + background-color: #fbf9f9; + border-radius: 2px; + margin-bottom: .3em; +} + +.sam.image::before{ + content: "IMG"; + font-weight: 600; + color: #c5c5c5; + display: flex; + justify-content: center; + align-items: center; + height: 100%; +} + +// With Caption +.sam.image.caption{ + position: relative; +} + +.sam.image.caption::before{ + height: 75%; +} + +.sam.image.caption span{ + position: absolute; + bottom: 0; + left: 0; + right: 0; + font-size: 14px; + font-weight: 600; + color: #757575; + border-top: 1px solid #dcdcdc; +} \ No newline at end of file diff --git a/src/styles/sam-styles/_input.scss b/src/styles/sam-styles/_input.scss new file mode 100755 index 000000000..2170af6f3 --- /dev/null +++ b/src/styles/sam-styles/_input.scss @@ -0,0 +1,3 @@ +.sam.input{ + padding: .5em; +} \ No newline at end of file diff --git a/src/styles/sam-styles/_label.scss b/src/styles/sam-styles/_label.scss new file mode 100755 index 000000000..bc02239c0 --- /dev/null +++ b/src/styles/sam-styles/_label.scss @@ -0,0 +1,9 @@ +.sam.label{ + //background-color: #e8e8e8; + font-size: 1.3rem; + font-weight: 600; + padding: 2px 10px; + border-radius: 4px; + color: #555; + border: 1px solid #989898; +} \ No newline at end of file diff --git a/src/styles/sam-styles/_layout.scss b/src/styles/sam-styles/_layout.scss new file mode 100755 index 000000000..8f5e6c5df --- /dev/null +++ b/src/styles/sam-styles/_layout.scss @@ -0,0 +1,139 @@ +/********************************************** + LAYOUT +***********************************************/ +.sam.layout{ + display: grid; + grid-column-gap: 2rem; + grid-row-gap: 1rem; + &.margin.bottom{ + margin-bottom: 1.5rem; + } + .img.center.aligned{ + text-align: center; + } +} + +/*---------------------- + Help Page +-----------------------*/ + +@media (max-width: 767px) { + .sam.layout.pattern-1{ + grid-template-columns: 1fr; + grid-row-gap: 0; + grid-template-rows: min-content 1rem min-content min-content 1rem 1fr; + & > :nth-child(2){ + grid-row: 3 / 4; + } + & > :nth-child(3){ + grid-row: 4 / 5; + } + & > :nth-child(4){ + grid-row: 7 / 8; + } + } +} + +@media (min-width: 768px) and (max-width: 991px){ + .sam.layout.pattern-1{ + grid-template-columns: 1fr 1fr; + grid-row-gap: 1rem; + grid-column-gap: 0; + grid-template-rows: min-content 1fr min-content; + & > :nth-child(1){ + grid-column: 1 / -1; + grid-row: 1 / 2; + } + & > :nth-child(4){ + grid-column: 1 / -1; + } + } +} + +@media (min-width: 992px) { + .sam.layout.pattern-1{ + grid-row-gap: 0; + grid-template-columns: 2fr 1fr; + grid-template-rows: min-content min-content 1rem min-content; + & > :nth-child(1){ + grid-column: 1 / 2; + grid-row: 1 / 3; + } + & > :nth-child(4){ + grid-column: 1 / -1; + grid-row: 4 / 5; + } + } +} + +@media (min-width: 1200px) { + .sam.layout.pattern-1{ + grid-template-rows: min-content min-content 1rem 1fr; + & > :nth-child(1){ + grid-row: 1 / 5; + } + & > :nth-child(4){ + grid-column: 2 / -1; + } + } +} + + +/********************************************** + Media +***********************************************/ +.sam.layout.pattern-media{ + grid-template-columns: 3fr 9fr; +} + + + +/********************************************** + PAGE +***********************************************/ +/*------------------------------------------ + Breadcrumbs | Sidebar | Main Content +-------------------------------------------*/ + +.sam.layout.pattern-page{ + grid-template-columns: 1fr; + grid-row-gap: 2rem; +} + +@media (min-width: 576px) { + +} + +@media (min-width: 768px) { + .sam.layout.has-sidebar.pattern-page{ + grid-template-columns: 2fr 8fr; + > .header{ + grid-column: 2 / -1; + } + > .breadcrumbs{ + grid-column: 1 / -1; + grid-row: 1 / 2; + } + > .page-sidebar{ + grid-row: 2 / 4; + } + } +} + +@media (min-width: 992px) { + +} + +@media (min-width: 1200px) { + +} + + +// Angular Specific +@media (min-width: 768px) { + .sam.layout.has-sidebar.pattern-page{ + sam-page-sidebar{ + grid-row: 2 / 4; + } + } +} \ No newline at end of file diff --git a/src/styles/sam-styles/_list.scss b/src/styles/sam-styles/_list.scss new file mode 100755 index 000000000..4394379d3 --- /dev/null +++ b/src/styles/sam-styles/_list.scss @@ -0,0 +1,73 @@ +.sam.list{ + list-style: none; + padding: 0; + margin: 0; + counter-reset: li; +} + +.sam.list li{ + padding-bottom: 1rem; + //line-height: 1.4; + counter-increment: li; +} + +.sam.list .bullet{ + border: 1px solid #a5a5a5; + border-radius: 50px; + display: inline-block; + padding: .1em .55em 0; + text-align: center; + margin-left: -2.2em; + margin-right: 5px; +} + +.sam.list li.decimal{ + padding-left: 2.2em; +} + +.sam.list li.decimal .bullet::before{ + content: counter(li); + color: #757575; + font-size: .9em; +} + +.sam.bulleted.list{ + list-style: disc; + padding-left: 20px; +} + +.sam.bulleted.list.decimal{ + list-style: none; + padding-left: 0; + li::before { + content: counter(li); + display: inline-block; + margin-left: -1.5em; + margin-right: .5em; + } +} + +.sam.horizontal.list{ + display: flex; + flex-direction: column; +} + +@media (min-width: 576px) { + .sam.horizontal.list{ + display: flex; + flex-direction: row; + justify-content: space-around; + } +} + +// Columns +@media (min-width: 576px) { + .sam.list.two.columns{ + display: flex; + flex-wrap: wrap; + > * { + flex-basis: 46%; + padding-right: 2%; + } + } +} \ No newline at end of file diff --git a/src/styles/sam-styles/_master.scss b/src/styles/sam-styles/_master.scss new file mode 100755 index 000000000..bfe1af5b7 --- /dev/null +++ b/src/styles/sam-styles/_master.scss @@ -0,0 +1,165 @@ +/******************************* + Master +*******************************/ + +/*---------------------- + Debug +-----------------------*/ +.#{$class}.master.debug{ + border: 2px dashed black; +} + +/*---------------------- + Site +-----------------------*/ +html{ + font-size: 10px; + -webkit-text-size-adjust: 100%; +} + +body { + font-family: $fontFamily; + font-size: $fontSize; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + color: rgba(0,0,0,.7); + line-height: 1.5em; + text-rendering: optimizeLegibility; + font-feature-settings: "pnum"; + font-variant-numeric: proportional-nums; + overflow-x: hidden; +} + +a { + color: #0071bc; + cursor: pointer; + font-weight: 600; + text-decoration: none; +} + +a:hover{ + text-decoration: underline; +} + +strong{ + font-weight: 600; +} + +p{ + margin: 0 0 1em 0; +} + +p.sam.paragraph.remove.margin{ + margin-bottom: 0; +} + +/*---------------------- + Layout +-----------------------*/ +.#{$class}.master{ + display: grid; + min-height: 100vh; +} + +.#{$class}.master > .header, +.#{$class}.master > .footer{ + background-color:#d6d7d9; + font-weight: 600; + padding: 1rem; +} + + +//////////////////////////////////////////////// + + + + +/******************************* + Master Page +*******************************/ + +.sam-ui.master-page{ + display: grid; + grid-template-columns: 1fr; + grid-template-rows: min-content min-content 1fr min-content; + min-height: 100vh; + +} + +/*-------------- + Header +---------------*/ + +.master-page-header{ + display: flex; + flex-direction: row; + justify-content: space-between; + padding: .5em; + border-bottom: 1px solid #323a45; + border-bottom-color: #a6aeb9; + + background: #e2e2e2; /* Old browsers */ + background: -moz-linear-gradient(-45deg, #e2e2e2 0%, #ffffff 100%); /* FF3.6-15 */ + background: -webkit-linear-gradient(-45deg, #e2e2e2 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(135deg, #e2e2e2 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ +} + +.master-page-logo img{ + width: 183px; + margin: 5px 0px 0px; +} + +.master-page-menu a{ + display: inline-block; + padding: 12px 17px; +} + +.master-page-menu a.current{ + background-color: #f1f1f1; + border-radius: 50%; + color: #908787; + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.08); +} + + +/*-------------- + Drawer +---------------*/ +.master-page-drawer{ + background: #323a45; /* Old browsers */ + background: -moz-linear-gradient(top, #323a45 0%, #404c5a 100%); /* FF3.6-15 */ + background: -webkit-linear-gradient(top, #323a45 0%,#404c5a 100%); /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, #323a45 0%,#404c5a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ +} + +.master-page-drawer .search-container{ + margin: 15px; + position: relative; + .search{ + margin-bottom: 0; + } +} + +@media only screen and (min-width: 600px){ + .master-page-drawer .search-container{ + width: 590px; + margin: 1.5em auto; + } +} + +/*-------------- + Footer +---------------*/ +.master-page-footer{ + background-color: #d6d7d9; + padding: .5em; +} + + +/*-------------- + Hacks +---------------*/ +/* Move router outlet to the bottom */ +.sam-ui.master-page router-outlet{ + grid-row: -1; +} \ No newline at end of file diff --git a/src/styles/sam-styles/_page.scss b/src/styles/sam-styles/_page.scss new file mode 100755 index 000000000..16a0c2fa4 --- /dev/null +++ b/src/styles/sam-styles/_page.scss @@ -0,0 +1,28 @@ +/******************************* + Page +*******************************/ + +/*---------------------- + Debug +-----------------------*/ +.#{$class}.page.debug{ + border: 1px dashed red; +} + +.sam.page{ + margin-left: 2rem; + margin-right: 2rem; +} + +.page-sidebar{ + display: grid; + grid-auto-rows: min-content; + grid-row-gap: 1em; + font-size: 1.6rem; +} + +.page-content{ + margin-bottom: 2rem; +} + + diff --git a/src/styles/sam-styles/_reset.scss b/src/styles/sam-styles/_reset.scss new file mode 100644 index 000000000..6e51e579a --- /dev/null +++ b/src/styles/sam-styles/_reset.scss @@ -0,0 +1,341 @@ +/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ + + html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* Sections + ========================================================================== */ + +/** + * Remove the margin in all browsers. + */ + +body { + margin: 0; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Remove the gray background on active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** + * Add the correct font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove the border on images inside links in IE 10. + */ + +img { + border-style: none; +} + +/* Forms + ========================================================================== */ + +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + +button, +select { /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ + +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ + +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ + +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + +[type="search"] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ + +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* Interactive + ========================================================================== */ + +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ + +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ + +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ + +/** + * Add the correct display in IE 10+. + */ + +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ + +[hidden] { + display: none; +} \ No newline at end of file diff --git a/src/styles/sam-styles/_search.scss b/src/styles/sam-styles/_search.scss new file mode 100755 index 000000000..d7fbdf4ff --- /dev/null +++ b/src/styles/sam-styles/_search.scss @@ -0,0 +1,125 @@ +.sam.search{ + display: flex; + box-shadow: 0 1px 4px 0 rgba(0,0,0,.14); + input{ + border: none; + flex-grow: 1; + } + button{ + color: #0071bc; + box-shadow: none; + } +} + + +/********************************************** + Search +***********************************************/ + +.sam-ui.search{ + display: flex; + background-color: white; + margin: .5em 0; + border-radius: 2px; + box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.08); + transition: box-shadow 200ms cubic-bezier(0.4, 0.0, 0.2, 1); +} + +.sam-ui.search:hover{ + box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.08); +} + +.sam-ui.search .select-option{ + display: none; +} + +@media only screen and (min-width: 600px){ + .sam-ui.search .select-option{ + display: block; + width: auto; + white-space: nowrap; + border-right: 1px solid #b9b8b8; + font-weight: 600; + padding: 0 .6em 0 15px; + background-color: #f7f7f7; + line-height: 50px; + font-size: 15px; + .fa{ + padding-left: 3px; + color: #adadad; + } + } +} + +.sam-ui.search select { + font-size: 14px; + width: auto; + display: block; + position: absolute; + left: 0; + cursor: pointer; + outline: 0; + opacity: 0; +} + +.sam-ui.search input[type="search"]{ + border: none; + box-sizing: border-box; + max-width: 100%; + padding-right: 0; + z-index: 1; +} + +.sam-ui.search input[type="search"]:focus{ + box-shadow: none; +} + +.sam-ui.search button{ + width: auto; + margin: 0; + padding: 0px 15px; + background-color: transparent; + svg{ + color: #0071bc; + } +} + +.sam-ui.search .tab-search{ + border-right: 1px solid #b9b8b8; + flex-basis: 175px; + font-weight: 600; + text-align: center; + line-height: 50px; +} + +.search-results{ + background-color: white; + position: absolute; + z-index: 1; + margin-top: -1px; + right: 0; + list-style: none; + box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.08); + padding-left: 0; + padding-bottom: 10px; + li{ + padding: 4px 16px; + line-height: 22px; + white-space: nowrap; + width: 100%; + overflow: hidden; + text-overflow: ellipsis; + } + li:hover{ + cursor: pointer; + background-color: #eee; + } + li b{ + color: black; + } + li.domain{ + font-size: 16px; + padding: 8px 16px 8px 30px; + color: black; + } +} \ No newline at end of file diff --git a/src/styles/sam-styles/_settings.scss b/src/styles/sam-styles/_settings.scss new file mode 100755 index 000000000..789a36def --- /dev/null +++ b/src/styles/sam-styles/_settings.scss @@ -0,0 +1,17 @@ +/******************************* + Settings +*******************************/ + +/*------------------- + Fonts +--------------------*/ +@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,600,600i,700,700i'); +$fontFamily: 'Source Sans Pro', sans-serif; + +/* The size of page text */ +$fontSize : 1.7rem; + +/*------------------- + Class +--------------------*/ + $class: sam; \ No newline at end of file diff --git a/src/styles/sam-styles/_title.scss b/src/styles/sam-styles/_title.scss new file mode 100755 index 000000000..d54936bed --- /dev/null +++ b/src/styles/sam-styles/_title.scss @@ -0,0 +1,60 @@ +.sam.title{ + font-weight: 600; + color: #16243A; + .normal{ + font-weight: 400; + } +} + +.sam.title .intro{ + text-transform: uppercase; + font-weight: 400; + margin-bottom: .5em; + font-size: .5em; + letter-spacing: -.6px; + //color: #696969; +} + +h1.sam.title{ + margin-top: 0; + margin-bottom: 0; + font-size: 2.5885em; + //font-size: 40px; + font-weight: 700; + letter-spacing: -.8px; +} + +h2.sam.title{ + font-size: 2em; + margin-top: 1.5em; + font-weight: 700; + margin-bottom: 0.7em; + letter-spacing: -.01em; +} + +h3.sam.title{ + font-size: 1.4em; + margin-top: 0; + margin-bottom: 0.6em; + //font-weight: 700; +} + +h4.sam.title{ + font-size: 1.2em; + margin-top: 0em; + margin-bottom: 0.5em; +} + +// Weights +.sam.title.normal{ + font-weight: 400; +} + +.sam.title.thin{ + font-weight: 300; +} + +// Aligned +.sam.title.center.aligned{ + text-align: center; +} \ No newline at end of file diff --git a/src/styles/sam-styles/_video.scss b/src/styles/sam-styles/_video.scss new file mode 100755 index 000000000..2d016c02a --- /dev/null +++ b/src/styles/sam-styles/_video.scss @@ -0,0 +1,24 @@ +/*--------------------------- + Video +-----------------------------*/ +.sam.embed.video{ + position: relative; + display: block; + width: 100%; + &::before { + display: block; + content: ""; + } + &.ratio16by9::before { + padding-top: 56.25%; + } + iframe{ + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; + } +} \ No newline at end of file diff --git a/src/styles/sam-styles/components/_bread-crumbs.scss b/src/styles/sam-styles/components/_bread-crumbs.scss new file mode 100644 index 000000000..4fa1cf130 --- /dev/null +++ b/src/styles/sam-styles/components/_bread-crumbs.scss @@ -0,0 +1,15 @@ +.sam-breadcrumbs { + margin: 1.5rem 0 0 0; + padding: 0; + + li { + font-weight: 600; + display: inline; + } + + li:not(:last-child)::after { + content: '/'; + color: #ccc; + padding: 0 .2rem; + } +} \ No newline at end of file diff --git a/src/styles/sam-styles/index.scss b/src/styles/sam-styles/index.scss new file mode 100755 index 000000000..b9cbe814b --- /dev/null +++ b/src/styles/sam-styles/index.scss @@ -0,0 +1,34 @@ +/*------------------- + Reset +--------------------*/ +/* Move normalize to be inside the folder */ +@import "reset"; + +/*------------------- + Settings +--------------------*/ +@import "settings"; + +/*------------------- + Components +--------------------*/ +@import "master"; +@import "page"; +@import "title"; +@import "icon"; +@import "box"; +@import "button"; +@import "list"; +@import "video"; +@import "layout"; +@import "search"; +@import "input"; +@import "breadcrumbs"; +@import "label"; +@import "image"; +@import "container"; + +/*----------------------- + Components Legacy +------------------------*/ +@import "components/bread-crumbs"; \ No newline at end of file From b4360fd4a073fbad97ce33c85869a98bebb61f40 Mon Sep 17 00:00:00 2001 From: Carlos Valle Date: Wed, 28 Mar 2018 11:32:58 -0400 Subject: [PATCH 2/2] Deploy --- src/styles/docs.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/src/styles/docs.scss b/src/styles/docs.scss index 379f3ce95..8bf5e06ed 100644 --- a/src/styles/docs.scss +++ b/src/styles/docs.scss @@ -18,7 +18,6 @@ ***********************************************/ .patterns-page{ display: flex; - //background-color: #f8f8fb; } .patterns-page-wrapper{ max-width: 1000px;