@thescaffold/ngx-apps-blog 0.2.32 → 0.2.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +0,0 @@
1
- {"version":3,"file":"thescaffold-ngx-apps-blog-home.module-LXerbHw9.mjs","sources":["../../../projects/blog/src/lib/pkg/cards/card/card.component.ts","../../../projects/blog/src/lib/pkg/cards/cards.component.ts","../../../projects/blog/src/lib/pkg/cards/cards.module.ts","../../../projects/blog/src/lib/pages/home/home.component.ts","../../../projects/blog/src/lib/pages/home/home.module.ts"],"sourcesContent":["import { ChangeDetectionStrategy, Component, Input } from '@angular/core';\nimport { isUrl } from '@thescaffold/ngx-core';\nimport { CardContract } from '../cards.utils';\n\n@Component({\n standalone: false,\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'x-card',\n template: `\n @if (data) {\n <div\n [ngClass]=\"[\n data.class ?? '',\n data.align ?? '',\n data.bgClass ?? '',\n data.fgClass ?? '',\n ]\"\n [style]=\"\n combinedStyle(\n data.style ?? '',\n data.bgStyle ?? '',\n data.fgStyle ?? ''\n )\n \"\n [ngStyle]=\"\n data.bgImage\n ? {\n 'background-image': 'url(' + data.bgImage + ')',\n 'background-size': data.bgSize ?? '50%',\n 'background-repeat': data.bgRepeat ?? 'no-repeat',\n 'background-position': data.bgPosition ?? 'right top',\n }\n : {}\n \"\n >\n <!-- header -->\n @if (\n data.icon ||\n data.title ||\n data.desc ||\n data.links?.length ||\n data.fgImage\n ) {\n <div\n class=\"row\"\n >\n <div [ngClass]=\"data.fgImage ? 'col-6' : 'col-12'\">\n @if (data.icon || data.title) {\n <h1\n [ngClass]=\"[data.titleClass ?? 'display-1 fw-bold']\"\n >\n @if (data.icon && isUrl(data.icon)) {\n <img\n [src]=\"data.icon\"\n height=\"27\"\n width=\"27\"\n />\n }\n @if (data.icon && !isUrl(data.icon)) {\n <i\n class=\"fa-2x\"\n [ngClass]=\"data.icon\"\n ></i>\n }\n @if (data.title) {\n <span class=\"\">{{ data.title }}</span>\n }\n </h1>\n }\n @if (data.desc) {\n <h6\n class=\"display-6\"\n [innerHTML]=\"data.desc\"\n ></h6>\n }\n @if (data.links?.length) {\n <ul\n class=\"nav my-3\"\n [ngClass]=\"data.align ?? ''\"\n >\n @for (link of data.links; track link) {\n <li\n class=\"nav-item\"\n [ngClass]=\"link.class ?? ''\"\n [style]=\"link.style ?? ''\"\n >\n <x-element-link\n [data]=\"link | xPrepend: { class: 'btn btn-primary px-5' }\"\n ></x-element-link>\n </li>\n }\n </ul>\n }\n </div>\n @if (data.fgImage) {\n <div\n class=\"d-none d-sm-flex d-md-flex col-6\"\n [ngClass]=\"[data.fgClass ?? '']\"\n [style]=\"data.fgStyle ?? ''\"\n >\n <img [src]=\"data.fgImage\" height=\"200\" width=\"auto\" />\n </div>\n }\n </div>\n }\n <!-- search -->\n @if (data.placeholder) {\n <div class=\"row col-12 col-sm-9 col-6 mx-auto\">\n <div class=\"input-group input-group-lg\">\n <input\n type=\"text\"\n class=\"form-control\"\n [placeholder]=\"data.placeholder\"\n />\n </div>\n </div>\n }\n <!-- list -->\n @if (data.list?.length) {\n <div\n class=\"row py-5 justify-content-center w-100\"\n >\n <dl class=\"col-12\">\n @for (item of data.list; track item) {\n <div\n [ngClass]=\"item.class ?? ''\"\n [style]=\"item.style ?? ''\"\n >\n @if (data.title) {\n <dt class=\"\">{{ data.title }}</dt>\n }\n @if (data.desc) {\n <dd class=\"\" [innerHTML]=\"data.desc\"></dd>\n }\n </div>\n }\n </dl>\n </div>\n }\n <!-- grids -->\n @if (data.grids?.length) {\n <div\n class=\"row row-cols-1 row-cols-sm-2 row-cols-md-3\"\n [ngClass]=\"data.align ?? ''\"\n >\n @for (item of data.grids; track item) {\n <div\n class=\"col\"\n [ngClass]=\"item.class ?? ''\"\n [style]=\"item.style ?? ''\"\n >\n <div class=\"card\">\n @if (item.icon && isUrl(item.icon)) {\n <img\n [src]=\"item.icon\"\n width=\"72\"\n height=\"72\"\n />\n }\n @if (item.icon && !isUrl(item.icon)) {\n <i\n [ngClass]=\"item.icon\"\n class=\"fa-2x\"\n ></i>\n }\n <div class=\"card-body\">\n @if (item?.title) {\n <h5 class=\"card-title\">{{ item.title }}</h5>\n }\n @if (item?.desc) {\n <p\n class=\"card-text\"\n [innerHTML]=\"item.desc\"\n ></p>\n }\n </div>\n @if (item?.links?.length) {\n <ul\n class=\"list-group list-group-flush\"\n >\n @for (link of item?.links; track link) {\n <li\n class=\"list-group-item\"\n [ngClass]=\"link.class ?? ''\"\n [style]=\"link.style ?? ''\"\n >\n <x-element-link\n [data]=\"\n link\n | xPrepend: { class: 'card-link text-decoration-none' }\n \"\n ></x-element-link>\n </li>\n }\n </ul>\n }\n </div>\n </div>\n }\n </div>\n }\n <!-- media -->\n @if (data.media?.length) {\n <div\n class=\"d-flex flex-column justify-content-center\"\n [ngClass]=\"data.align ?? ''\"\n >\n <div class=\"card w-100 border-0\">\n <ul class=\"list-group list-group-flush\">\n @for (item of data.media; track item; let f = $first; let l = $last) {\n <li\n class=\"list-group-item border-0 p-0 mx-0 my-3\"\n [ngClass]=\"{ 'pb-5': f, 'pt-5': l, 'py-5': !f && !l }\"\n [ngClass]=\"item.class ?? ''\"\n [style]=\"item.style ?? ''\"\n >\n <div class=\"d-flex\">\n <div class=\"flex-shrink-0\">\n @if (item.icon && isUrl(item.icon)) {\n <img\n [src]=\"item.icon\"\n width=\"72\"\n height=\"72\"\n />\n }\n @if (item.icon && !isUrl(item.icon)) {\n <i\n [ngClass]=\"item.icon\"\n class=\"fa-2x\"\n ></i>\n }\n </div>\n <div class=\"flex-grow-1 ms-3\">\n @if (item?.title) {\n <h5 class=\"p-0 m-0\">\n {{ item.title }}\n </h5>\n }\n @if (item?.desc) {\n <p\n class=\"p-0 m-0\"\n [innerHTML]=\"item.desc\"\n ></p>\n }\n @if (item?.links?.length) {\n <ul class=\"nav\">\n @for (link of item.links; track link) {\n <li\n class=\"nav-item\"\n [ngClass]=\"link.class ?? ''\"\n [style]=\"link.style ?? ''\"\n >\n <x-element-link\n [data]=\"\n link\n | xPrepend\n : {\n class:\n 'btn btn-primary btn-link text-decoration-none p-0 m-0',\n }\n \"\n ></x-element-link>\n </li>\n }\n </ul>\n }\n </div>\n </div>\n </li>\n }\n </ul>\n </div>\n </div>\n }\n <!-- cards -->\n @if (data.cards?.length) {\n <div\n class=\"row my-3 row-cols-1 row-cols-sm-2 row-cols-md-3\"\n [ngClass]=\"data.align ?? ''\"\n >\n @for (item of data.cards; track item) {\n <div\n class=\"col\"\n [ngClass]=\"item.class ?? ''\"\n [style]=\"item.style ?? ''\"\n >\n <div\n class=\"card card-body text-bg-light\"\n [ngClass]=\"data.bgClass ?? ''\"\n [style]=\"data.bgStyle ?? ''\"\n >\n <div class=\"text-start\">\n @if (item.icon && isUrl(item.icon)) {\n <img\n [src]=\"item.icon\"\n class=\"\"\n width=\"72\"\n height=\"72\"\n />\n }\n @if (item.icon && !isUrl(item.icon)) {\n <i\n [ngClass]=\"item.icon\"\n class=\"fa-2x\"\n ></i>\n }\n </div>\n @if (item?.title) {\n <h3>\n {{ item.title }}\n </h3>\n }\n @if (item?.desc) {\n <p [innerHTML]=\"item.desc\"></p>\n }\n @if (item?.links?.length) {\n <div>\n @for (link of item?.links; track link) {\n <div\n [ngClass]=\"link.class ?? ''\"\n [style]=\"link.style ?? ''\"\n >\n <x-element-link\n [data]=\"\n link | xPrepend: { class: 'btn btn-primary btn-link' }\n \"\n ></x-element-link>\n </div>\n }\n </div>\n }\n </div>\n </div>\n }\n </div>\n }\n <!-- doubles -->\n @if (data.doubles?.length) {\n <div\n class=\"row\"\n [ngClass]=\"data.align ?? ''\"\n >\n @for (item of data.doubles; track item; let e = $even) {\n <div\n class=\"d-flex justify-content-between\"\n [ngClass]=\"item.class ?? ''\"\n [style]=\"item.style ?? ''\"\n >\n <div class=\"\" [ngClass]=\"{ 'order-first': e, 'order-last': !e }\">\n @if (item?.title) {\n <h3>\n {{ item.title }}\n </h3>\n }\n @if (item?.desc) {\n <p\n class=\"text-start py-3\"\n [innerHTML]=\"item.desc\"\n ></p>\n }\n @if (item?.links?.length) {\n <div class=\"\">\n @for (link of item?.links; track link) {\n <div\n [ngClass]=\"link.class ?? ''\"\n [style]=\"link.style ?? ''\"\n >\n <x-element-link\n [data]=\"\n link\n | xPrepend\n : {\n class:\n 'btn btn-primary btn-link d-flex flex-column-reverse',\n }\n \"\n ></x-element-link>\n </div>\n }\n </div>\n }\n </div>\n @if (item?.icon) {\n <div\n class=\"\"\n [ngClass]=\"{ 'order-first': !e, 'order-last': e }\"\n >\n <div class=\"text-start\">\n <i class=\"fa-5x\" [ngClass]=\"item.icon\"></i>\n </div>\n </div>\n }\n </div>\n }\n </div>\n }\n <!-- image clouds -->\n @if (data.cloud?.length) {\n <div\n class=\"row py-5 justify-content-center w-100\"\n >\n @for (item of data.cloud; track item; let e = $even) {\n <div\n class=\"d-flex justify-content-between\"\n [ngClass]=\"item.class ?? ''\"\n [style]=\"item.style ?? ''\"\n >\n <div class=\"\">\n @if (item.icon && isUrl(item.icon)) {\n <img\n [src]=\"item.icon\"\n class=\"\"\n width=\"72\"\n height=\"72\"\n />\n }\n @if (item.icon && !isUrl(item.icon)) {\n <i\n [ngClass]=\"item.icon\"\n class=\"fa-2x\"\n ></i>\n }\n </div>\n </div>\n }\n </div>\n }\n <!-- lines -->\n @if (data.lines?.length) {\n <div class=\"row col-12 container\">\n @for (item of data.lines; track item) {\n <div\n class=\"pt-3 px-0 border-bottom\"\n [ngClass]=\"item.class ?? ''\"\n [style]=\"item.style ?? ''\"\n >\n @if (item.title) {\n <h5 class=\"text-start\">\n @if (!item.url) {\n <span>{{ item.title }}</span>\n }\n @if (item.url) {\n <x-element-link\n [data]=\"item | xPrepend: { class: 'btn btn-link p-0' }\"\n ></x-element-link>\n }\n </h5>\n }\n </div>\n }\n </div>\n }\n </div>\n }\n `,\n styles: [],\n})\nexport class CardComponent {\n @Input() data?: CardContract;\n\n isUrl = isUrl;\n\n combinedStyle(...styles: string[]): string {\n return styles.filter((style) => !!style).join(';');\n }\n}\n","import { ChangeDetectionStrategy, Component, Input } from '@angular/core';\nimport { CardContract } from './card';\n\n@Component({\n standalone: false,\n changeDetection: ChangeDetectionStrategy.OnPush,\n selector: 'x-cards',\n template: `\n @if (data?.length) {\n @for (card of data; track card) {\n <x-card [data]=\"card\"></x-card>\n }\n }\n `,\n styles: [],\n})\nexport class CardsComponent {\n @Input() data?: CardContract[];\n}\n","import { NgModule } from '@angular/core';\nimport { SharedModule } from '@thescaffold/ngx-core';\nimport { ElementsModule, FormModule } from '@thescaffold/ngx-ui';\nimport { CardComponent } from './card';\nimport { CardsComponent } from './cards.component';\n\n@NgModule({\n declarations: [CardsComponent, CardComponent],\n exports: [CardsComponent, CardComponent],\n imports: [SharedModule, FormModule.forChild(), ElementsModule],\n})\nexport class CardsModule {}\n","import { Component } from '@angular/core';\nimport { CommonActionType } from '@thescaffold/ngx-core';\n\n@Component({\n standalone: false,\n selector: 'x-home',\n template: `\n @if (appDataSelector | xSelect | async; as appData) {\n <x-cards\n [data]=\"appData.cards\"\n >\n </x-cards>\n } @else {\n <x-element-loader></x-element-loader>\n }\n \n <!-- misc -->\n \n <ng-template #empty>\n <x-element-blank></x-element-blank>\n </ng-template>\n `,\n styles: [],\n})\nexport class HomeComponent {\n readonly appDataSelector = CommonActionType.APP_CONFIG;\n}\n","import { NgModule } from '@angular/core';\nimport { RouterModule } from '@angular/router';\nimport { SharedModule } from '@thescaffold/ngx-core';\nimport {\n ElementsModule,\n LayoutsModule,\n WebgetsModule,\n} from '@thescaffold/ngx-ui';\nimport { CardsModule } from '../../pkg';\nimport { HomeComponent } from './home.component';\n\n@NgModule({\n declarations: [HomeComponent],\n imports: [\n SharedModule,\n RouterModule.forChild([{ path: '', component: HomeComponent }]),\n LayoutsModule,\n WebgetsModule,\n ElementsModule,\n CardsModule,\n ],\n})\nexport class HomeModule {}\n"],"names":["i3","i1.CardComponent","i1","i2.CardsComponent"],"mappings":"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"}