{{ data.message }}
\r\nSin registros
\r\n{{subtitle}}
\r\n\r\n\t\t\t\t{{content.purposeDescription || ''}}\r\n\t\t\t
\r\n\t\t{{content.formativeFieldDescription || ''}}
\r\n\t\tNo. | \r\n\r\n \r\n | \r\nNombre | \r\n\r\n {{element.name}}\r\n {{element.name}}\r\n | \r\nAcción | \r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n | \r\n
---|
{{ data.message }}
\r\n\t{{ paragraph }}
\r\n\r\n native card works!\r\n
\r\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\n// import {PortalModule} from '@angular/cdk/portal';\r\n// import {A11yModule} from '@angular/cdk/a11y';\r\n// COMPONENTS\r\nimport { NativeCard } from './card/card.component';\r\n\r\n\r\n\r\nexport const COMPONENTS = [\r\n NativeCard,\r\n];\r\n\r\nexport const PRIVATE_DIRECTIVE = [\r\n\r\n];\r\n\r\n@NgModule({\r\n imports: [\r\n CommonModule,\r\n// PortalModule,\r\n// A11yModule,\r\n ],\r\n exports: [\r\n ...COMPONENTS,\r\n ],\r\n declarations: [\r\n ...COMPONENTS,\r\n ...PRIVATE_DIRECTIVE\r\n ]\r\n})\r\nexport class NativeCardsModule {}\r\n","import { NgModule } from '@angular/core';\r\n// MODULES\r\nimport { NativeCardsModule } from './card/module';\r\nimport { NativeTabsModule } from './tabs/module';\r\nimport { NativePaginatorModule } from './paginator/module';\r\n\r\n// MODULES WITH COMPONENTS CUSTOM WITHOUT LIBS IMPLEMETED\r\nexport const MODULES = [\r\n NativeCardsModule,\r\n NativeTabsModule,\r\n NativePaginatorModule,\r\n];\r\n\r\n\r\n@NgModule({\r\n imports: [...MODULES],\r\n exports: [...MODULES],\r\n})\r\nexport class NativeModule {}\r\n","import { NgModule } from '@angular/core';\r\nimport { CommonModule } from '@angular/common';\r\nimport { NativePaginator } from './paginator';\r\nimport { NATIVE_PAGINATOR_INTL_PROVIDER } from './paginator-intl';\r\n\r\n@NgModule({\r\n providers: [NATIVE_PAGINATOR_INTL_PROVIDER],\r\n imports: [CommonModule],\r\n exports: [NativePaginator],\r\n declarations: [NativePaginator]\r\n})\r\nexport class NativePaginatorModule { }\r\n","import { InjectionToken } from '@angular/core';\r\n\r\nexport interface PageEvent {\r\n /** The current page index. */\r\n pageIndex: number;\r\n /**\r\n * Index of the page that was selected previously.\r\n */\r\n previousPageIndex: number;\r\n\r\n /** The current page size. */\r\n pageSize: number;\r\n\r\n /** The current total number of items being paged. */\r\n length: number;\r\n};\r\n\r\n/** Object that can be used to configure the default options for the paginator. */\r\nexport interface PaginatorDefaultOptions {\r\n /** Number of items to display on a page. By default set to 10. */\r\n pageSize?: number;\r\n\r\n /** The set of provided page size options to display to the user. */\r\n pageSizeOptions?: number[];\r\n\r\n /** Whether to hide the page size selection UI from the user. */\r\n hidePaginatorPageSize?: boolean;\r\n\r\n /** Whether to show the first/last buttons UI to the user. */\r\n showFirstLastButtons?: boolean;\r\n}\r\n\r\nexport const PAGINATOR_CONFIG = new InjectionToken