@doug-williamson/ng-rhombus 2.0.0-beta.1 → 2.0.0-beta.3
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.
package/package.json
CHANGED
|
@@ -8,7 +8,6 @@ import { Router, ActivatedRoute } from '@angular/router';
|
|
|
8
8
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
9
9
|
import { FormGroup, FormBuilder } from '@angular/forms';
|
|
10
10
|
import { MatDialog } from '@angular/material/dialog';
|
|
11
|
-
import { CdkTextareaAutosize } from '@angular/cdk/text-field';
|
|
12
11
|
import * as _fortawesome_fontawesome_common_types from '@fortawesome/fontawesome-common-types';
|
|
13
12
|
import { IconDefinition } from '@fortawesome/fontawesome-svg-core';
|
|
14
13
|
import { IconDefinition as IconDefinition$1 } from '@fortawesome/free-brands-svg-icons';
|
|
@@ -113,6 +112,13 @@ declare class NgRhombusPageComponent {
|
|
|
113
112
|
static ɵcmp: i0.ɵɵComponentDeclaration<NgRhombusPageComponent, "ng-rhombus-page", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "backLink": { "alias": "backLink"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
114
113
|
}
|
|
115
114
|
|
|
115
|
+
declare class NgRhombusMarkdownComponent {
|
|
116
|
+
data: i0.InputSignal<string | null | undefined>;
|
|
117
|
+
classes: i0.InputSignal<any>;
|
|
118
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgRhombusMarkdownComponent, never>;
|
|
119
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgRhombusMarkdownComponent, "ng-rhombus-markdown", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "classes": { "alias": "classes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
120
|
+
}
|
|
121
|
+
|
|
116
122
|
interface NgRhombusAuthUser {
|
|
117
123
|
uid: string;
|
|
118
124
|
email?: string | null;
|
|
@@ -136,6 +142,16 @@ interface NgRhombusSeoAdapter {
|
|
|
136
142
|
}
|
|
137
143
|
declare const NG_RHOMBUS_SEO_ADAPTER: InjectionToken<NgRhombusSeoAdapter>;
|
|
138
144
|
|
|
145
|
+
interface NgRhombusSiteMetadata {
|
|
146
|
+
/** Absolute site origin, e.g. https://example.com */
|
|
147
|
+
origin?: string;
|
|
148
|
+
/** Human-friendly site name for link previews */
|
|
149
|
+
siteName?: string;
|
|
150
|
+
/** Twitter/X site handle, usually starts with '@' (optional) */
|
|
151
|
+
twitterSite?: string;
|
|
152
|
+
}
|
|
153
|
+
declare const NG_RHOMBUS_SITE_METADATA: InjectionToken<NgRhombusSiteMetadata>;
|
|
154
|
+
|
|
139
155
|
type NgRhombusTimestampLike = Date | number | string | {
|
|
140
156
|
toMillis: () => number;
|
|
141
157
|
} | {
|
|
@@ -310,7 +326,6 @@ declare class NgRhombusBlogAddEditComponent {
|
|
|
310
326
|
thumbnailService: NgRhombusBlogPostThumbnailService;
|
|
311
327
|
formBuilder: FormBuilder;
|
|
312
328
|
blogService: NgRhombusBlogService;
|
|
313
|
-
autosize?: CdkTextareaAutosize;
|
|
314
329
|
blogPostPreview: ElementRef;
|
|
315
330
|
markdown: string;
|
|
316
331
|
constructor();
|
|
@@ -489,5 +504,5 @@ interface NgRhombusSocialsAdapter {
|
|
|
489
504
|
}
|
|
490
505
|
declare const NG_RHOMBUS_SOCIALS_ADAPTER: InjectionToken<NgRhombusSocialsAdapter>;
|
|
491
506
|
|
|
492
|
-
export { BlogSeries, ContentPillar, IBlog, IHome, NG_RHOMBUS_AUTH_ADAPTER, NG_RHOMBUS_BLOG_ADAPTER, NG_RHOMBUS_BLOG_THUMBNAIL_ADAPTER, NG_RHOMBUS_HOME_ADAPTER, NG_RHOMBUS_SEO_ADAPTER, NG_RHOMBUS_SOCIALS_ADAPTER, NgRhombusBlogAddEditComponent, NgRhombusBlogDeletePostComponent, NgRhombusBlogListComponent, NgRhombusBlogPostComponent, NgRhombusBlogPostLatestComponent, NgRhombusBlogPostThumbnailService, NgRhombusBlogService, NgRhombusBlogTableComponent, NgRhombusHomeAdminComponent, NgRhombusHomeService, NgRhombusLoginComponent, NgRhombusPageComponent, NgRhombusSocialsListComponent, NgRhombusSocialsService, NgRhombusSocialsTableComponent, NgRhombusSpinnerComponent, NgRhombusWrapperComponent, SocialsSource, ThemeEnum, WrapperService, ngRhombusTimestampToMillis };
|
|
493
|
-
export type { Breadcrumb, ILoginCredentials, ISocial, NgRhombusAuthAdapter, NgRhombusAuthUser, NgRhombusBlogAdapter, NgRhombusBlogThumbnailAdapter, NgRhombusHomeAdapter, NgRhombusHomeSaveResult, NgRhombusNavItem, NgRhombusSeoAdapter, NgRhombusSeoTag, NgRhombusSocialsAdapter, NgRhombusTimestampLike, Theme };
|
|
507
|
+
export { BlogSeries, ContentPillar, IBlog, IHome, NG_RHOMBUS_AUTH_ADAPTER, NG_RHOMBUS_BLOG_ADAPTER, NG_RHOMBUS_BLOG_THUMBNAIL_ADAPTER, NG_RHOMBUS_HOME_ADAPTER, NG_RHOMBUS_SEO_ADAPTER, NG_RHOMBUS_SITE_METADATA, NG_RHOMBUS_SOCIALS_ADAPTER, NgRhombusBlogAddEditComponent, NgRhombusBlogDeletePostComponent, NgRhombusBlogListComponent, NgRhombusBlogPostComponent, NgRhombusBlogPostLatestComponent, NgRhombusBlogPostThumbnailService, NgRhombusBlogService, NgRhombusBlogTableComponent, NgRhombusHomeAdminComponent, NgRhombusHomeService, NgRhombusLoginComponent, NgRhombusMarkdownComponent, NgRhombusPageComponent, NgRhombusSocialsListComponent, NgRhombusSocialsService, NgRhombusSocialsTableComponent, NgRhombusSpinnerComponent, NgRhombusWrapperComponent, SocialsSource, ThemeEnum, WrapperService, ngRhombusTimestampToMillis };
|
|
508
|
+
export type { Breadcrumb, ILoginCredentials, ISocial, NgRhombusAuthAdapter, NgRhombusAuthUser, NgRhombusBlogAdapter, NgRhombusBlogThumbnailAdapter, NgRhombusHomeAdapter, NgRhombusHomeSaveResult, NgRhombusNavItem, NgRhombusSeoAdapter, NgRhombusSeoTag, NgRhombusSiteMetadata, NgRhombusSocialsAdapter, NgRhombusTimestampLike, Theme };
|