@tilde-nlp/ngx-common 8.1.16 → 8.1.18
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/fesm2022/tilde-nlp-ngx-common.mjs +506 -195
- package/fesm2022/tilde-nlp-ngx-common.mjs.map +1 -1
- package/index.d.ts +57 -41
- package/package.json +1 -1
- package/web-components/main.js +7 -7
package/index.d.ts
CHANGED
|
@@ -306,46 +306,6 @@ declare class NotificationService {
|
|
|
306
306
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
|
|
307
307
|
}
|
|
308
308
|
|
|
309
|
-
declare class PlausibleHelper {
|
|
310
|
-
/**
|
|
311
|
-
* Adds plausible for selected domain and adds additional script for custom event (goal) triggering
|
|
312
|
-
* @param domain domain that is registered in your plausible account
|
|
313
|
-
* @returns
|
|
314
|
-
*/
|
|
315
|
-
static addPlausible(domain: string): void;
|
|
316
|
-
/**
|
|
317
|
-
* Emits custom plausible event
|
|
318
|
-
* @param id plausible event id that should be the same as registered in plausible
|
|
319
|
-
* @param properties an object with custom properties for the event
|
|
320
|
-
* @returns
|
|
321
|
-
*/
|
|
322
|
-
static customEvent(id: string, properties?: any): void;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
interface PlausibleEvent {
|
|
326
|
-
eventId: string;
|
|
327
|
-
properties?: {
|
|
328
|
-
key: string;
|
|
329
|
-
value: string;
|
|
330
|
-
}[];
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
declare class PlausibleEventDirective {
|
|
334
|
-
private id;
|
|
335
|
-
private properties;
|
|
336
|
-
/** Plausible event id. */
|
|
337
|
-
set libPlausibleEvent(value: PlausibleEvent | undefined);
|
|
338
|
-
onClick(): void;
|
|
339
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PlausibleEventDirective, never>;
|
|
340
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<PlausibleEventDirective, "[libPlausibleEvent]", never, { "libPlausibleEvent": { "alias": "libPlausibleEvent"; "required": false; }; }, {}, never, never, false, never>;
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
declare class PlausibleModule {
|
|
344
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PlausibleModule, never>;
|
|
345
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PlausibleModule, [typeof PlausibleEventDirective], [typeof i2.CommonModule], [typeof PlausibleEventDirective]>;
|
|
346
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<PlausibleModule>;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
309
|
declare enum InlineMessageIconPosition {
|
|
350
310
|
START = 0,
|
|
351
311
|
END = 1
|
|
@@ -2577,5 +2537,61 @@ declare class CustomTranslateLoader implements TranslateLoader {
|
|
|
2577
2537
|
static ɵprov: i0.ɵɵInjectableDeclaration<CustomTranslateLoader>;
|
|
2578
2538
|
}
|
|
2579
2539
|
|
|
2580
|
-
|
|
2540
|
+
declare class PlausibleHelper {
|
|
2541
|
+
/**
|
|
2542
|
+
* Adds plausible for selected domain and adds additional script for custom event (goal) triggering
|
|
2543
|
+
* @param domain domain that is registered in your plausible account
|
|
2544
|
+
* @returns
|
|
2545
|
+
*/
|
|
2546
|
+
static addPlausible(domain: string): void;
|
|
2547
|
+
/**
|
|
2548
|
+
* Emits custom plausible event
|
|
2549
|
+
* @param id plausible event id that should be the same as registered in plausible
|
|
2550
|
+
* @param properties an object with custom properties for the event
|
|
2551
|
+
* @returns
|
|
2552
|
+
*/
|
|
2553
|
+
static customEvent(id: string, properties?: any): void;
|
|
2554
|
+
}
|
|
2555
|
+
|
|
2556
|
+
interface PlausibleEvent {
|
|
2557
|
+
eventId: string;
|
|
2558
|
+
properties?: {
|
|
2559
|
+
key: string;
|
|
2560
|
+
value: string;
|
|
2561
|
+
}[];
|
|
2562
|
+
}
|
|
2563
|
+
|
|
2564
|
+
declare class PlausibleEventDirective {
|
|
2565
|
+
private id;
|
|
2566
|
+
private properties;
|
|
2567
|
+
/** Plausible event id. */
|
|
2568
|
+
set libPlausibleEvent(value: PlausibleEvent | undefined);
|
|
2569
|
+
onClick(): void;
|
|
2570
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PlausibleEventDirective, never>;
|
|
2571
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PlausibleEventDirective, "[libPlausibleEvent]", never, { "libPlausibleEvent": { "alias": "libPlausibleEvent"; "required": false; }; }, {}, never, never, false, never>;
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2574
|
+
declare class PlausibleModule {
|
|
2575
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PlausibleModule, never>;
|
|
2576
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PlausibleModule, [typeof PlausibleEventDirective], [typeof i2.CommonModule], [typeof PlausibleEventDirective]>;
|
|
2577
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PlausibleModule>;
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2580
|
+
declare class CookieConsentComponent implements OnInit {
|
|
2581
|
+
#private;
|
|
2582
|
+
script: string;
|
|
2583
|
+
scriptSrc: string;
|
|
2584
|
+
privacyPolicyUrl: string;
|
|
2585
|
+
isClosed: boolean;
|
|
2586
|
+
isDetailsVisible: boolean;
|
|
2587
|
+
ngOnInit(): void;
|
|
2588
|
+
toggleDetails(): void;
|
|
2589
|
+
accept(): void;
|
|
2590
|
+
decline(): void;
|
|
2591
|
+
private isCookieConsentConfigured;
|
|
2592
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CookieConsentComponent, never>;
|
|
2593
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CookieConsentComponent, "lib-cookie-consent", never, { "script": { "alias": "script"; "required": false; }; "scriptSrc": { "alias": "scriptSrc"; "required": false; }; "privacyPolicyUrl": { "alias": "privacyPolicyUrl"; "required": false; }; }, {}, never, never, true, never>;
|
|
2594
|
+
}
|
|
2595
|
+
|
|
2596
|
+
export { ALERT_CONFIGURATION_TOKEN, AccessibilityContrasts, AccessibilityDialogComponent, AccessibilityFontSizes, AccessibilityService, AccessibilityTextMagnifierService, AlertService, AuthHeadersHelper, COLLECTIONS_MENU, CUSTOM_TITLE_CONFIGURATION_TOKEN, ClickOutsideDirective, ClickOutsideModule, CloseButtonComponent, CloseButtonModule, CombinedCollection, CombinedCollectionTooltipKey, CompanyProductComponent, CompanyProductModule, Confirmation, ConfirmationModalComponent, ConfirmationModalModule, ConfirmationService, ConversionHelper, CookieConsentComponent, CustomPaginatorInernationalizationHelper, CustomTitleStrategyService, CustomTranslateLoader, DISABLE_EXPORT_ATTRIBUTE_NAME, DOMService, DateAgoModule, DateAgoPipe, DomainTranslatePipe, DragAndDropDirective, DragAndDropModule, ERROR_CODES, EngineTermApiService, EngineTermCollectionScope, EngineTermCollectionSource, EngineTermCollectionStatus, EngineTermCollectionSubStatus, ExportFormat, ExtensionDialogComponent, ExtensionDialogModule, ExtensionDialogService, FILE_SIZE_UNIT, FileCategories, FileExtensionHelper, FileExtensions, FileSizeLabelPipe, FileTypeIcons, FileTypes, FileUploadComponent, FileUploadErrorTypeEnum, FileUploadModule, FilterBarComponent, FilterBarModule, FilterWithHighlightModule, FilterWithHighlightPipe, FooterComponent, FooterModule, GlobalMessageComponent, HashHelper, HtmlElementParseHelper, HtmlHelper, IconService, InlineMessageComponent, InlineMessageIconPosition, InlineMessageModule, InlineMessageType, LAST_USED_SYSTEM_LOCAL_STORAGE_KEY, LLMActions, LLMComponent, LLMModule, LLM_CONFIGURATION_TOKEN, LanguageTranslateModule, LanguageTranslatePipe, LanguageTranslateService, MatButtonLoadingDirective, MatButtonLoadingModule, MissingTranslationHandlerService, MissingTranslationHelper, MtCollectionStatus, MultiFunctionalTableComponent, MultiFunctionalTableModule, NewFeatureDialogWrapperComponent, NotificationMessageComponent, NotificationMessageModule, NotificationMessageType, NotificationService, OPEN_CLOSE_BTN_ICONS_TOKEN, ObjectLengthModule, ObjectLengthPipe, OpenCloseButtonComponent, OpenCloseButtonModule, OpenExtensionDialogComponent, Operations, PlausibleEventDirective, PlausibleHelper, PlausibleModule, ResolutionHelper, SCREEN_SIZE, SaveFileHelper, SelectLanguageDialogComponent, SidebarComponent, SidebarService, SortAlphabeticallyModule, SortAlphabeticallyPipe, SortByNumberPipe, SortDomainsPipe, SortHelper, SortLanguageListPipe, SortTranslationsByPropertyModule, SortTranslationsByPropertyPipe, SortTranslationsModule, SortTranslationsPipe, StatusDisplayComponent, StatusDisplayModule, SubscriptionComponent, SubscriptionPlan, SystemService, TerminologyApiService, TerminologyCollectionService, TerminologyComponent, TerminologyConfigService, TerminologyCreateCollectionComponent, TerminologyModule, TerminologyService, TextToSpeechComponent, TldLoaderComponent, TldLoaderModule, ToastComponent, ToastService, getFileSizeLabel, provideCustomTitleStrategy };
|
|
2581
2597
|
export type { ActiveData, AddEngineTermsRequestParams, Addon, AlertConfiguration, AuthSubscription, BatchConfig, Category, ChargebeeSettings, Column, ColumnConfig, ColumnSelectConfig, Config, ConfirmationBody, CustomTitleStrategyConfiguration, DefaultCollectionOrderUpdate, DialogData, Domain, DomainList, EngineTermCollection, EngineTermCollectionAccess, EngineTermCollectionAccessScope, EngineTermCollectionAccessScopeUpdate, EngineTermCollectionAccessUpdate, EngineTermCollectionList, ExportConfig, ExtensionWithIcon, FileUploadError, FilterBarChangeEvent, FilterBarFilter, FilterBarFilterItem, FilterBarSettings, GlobalMessageAction, ITldTermCollection, ITldTermCollectionLanguages, InlineMessage, JwtToken, LLMConfiguration, LangListItem, MobileScreenCustomPosition, MtCollection, MultiFunctionalTableConfig, NotificationMessage, NotificationWithOperation, OpenCloseBtnIcons, PaginatorConfig, PlausibleEvent, StatusDisplayConfig, System, TerminologyConfig, TranslatedLanguage, UpdateEngineTermsRequestParams, Vendor, Voice };
|