@dereekb/dbx-web 13.11.2 → 13.11.4

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-web",
3
- "version": "13.11.2",
3
+ "version": "13.11.4",
4
4
  "sideEffects": [
5
5
  "*.scss",
6
6
  "*.css"
@@ -13,12 +13,12 @@
13
13
  "@angular/material": "^21.2.9",
14
14
  "@angular/platform-browser": "21.2.11",
15
15
  "@cantoo/pdf-lib": "^2.6.5",
16
- "@dereekb/browser": "13.11.2",
17
- "@dereekb/date": "13.11.2",
18
- "@dereekb/dbx-core": "13.11.2",
19
- "@dereekb/rxjs": "13.11.2",
20
- "@dereekb/util": "13.11.2",
21
- "@dereekb/vitest": "13.11.2",
16
+ "@dereekb/browser": "13.11.4",
17
+ "@dereekb/date": "13.11.4",
18
+ "@dereekb/dbx-core": "13.11.4",
19
+ "@dereekb/rxjs": "13.11.4",
20
+ "@dereekb/util": "13.11.4",
21
+ "@dereekb/vitest": "13.11.4",
22
22
  "@ngbracket/ngx-layout": "^21.0.0",
23
23
  "@ngrx/component-store": "^21.1.0",
24
24
  "@ngrx/effects": "^21.1.0",
@@ -417,6 +417,7 @@ interface DbxMakeActionSnackbarGeneratorEventConfiguration extends Omit<DbxActio
417
417
  * error: { message: 'Failed', button: 'X' }
418
418
  * });
419
419
  * ```
420
+ * @__NO_SIDE_EFFECTS__
420
421
  */
421
422
  declare function makeDbxActionSnackbarDisplayConfigGeneratorFunction(config: DbxMakeActionSnackbarGeneratorConfiguration): DbxActionSnackbarDisplayConfigGeneratorFunction;
422
423
 
@@ -2549,6 +2550,7 @@ type DbxValueListItemDecisionFunction<T> = DecisionFunction<DbxValueListItem<T>>
2549
2550
  *
2550
2551
  * @param decisionFunction
2551
2552
  * @returns
2553
+ * @__NO_SIDE_EFFECTS__
2552
2554
  */
2553
2555
  declare function dbxValueListItemDecisionFunction<T>(decisionFunction: DecisionFunction<T>): DbxValueListItemDecisionFunction<T>;
2554
2556
  /**
@@ -4365,6 +4367,7 @@ interface ProvideDbxStyleServiceConfig {
4365
4367
  *
4366
4368
  * @param config - configuration specifying the default style and its allowed suffixes
4367
4369
  * @returns environment providers for the DbxStyleService and its default config token
4370
+ * @__NO_SIDE_EFFECTS__
4368
4371
  */
4369
4372
  declare function provideDbxStyleService(config: ProvideDbxStyleServiceConfig): EnvironmentProviders;
4370
4373
 
@@ -5069,6 +5072,7 @@ interface CopyToClipboardFunctionConfig {
5069
5072
  * const copy = copyToClipboardFunction(clipboard, { copyTimeoutSeconds: 10 });
5070
5073
  * const success = await copy('some text');
5071
5074
  * ```
5075
+ * @__NO_SIDE_EFFECTS__
5072
5076
  */
5073
5077
  declare function copyToClipboardFunction(clipboard: Clipboard, config?: CopyToClipboardFunctionConfig): CopyToClipboardFunction;
5074
5078
  /**
@@ -5084,6 +5088,7 @@ declare function copyToClipboardFunction(clipboard: Clipboard, config?: CopyToCl
5084
5088
  * const copy = injectCopyToClipboardFunction();
5085
5089
  * await copy('copied text');
5086
5090
  * ```
5091
+ * @__NO_SIDE_EFFECTS__
5087
5092
  */
5088
5093
  declare function injectCopyToClipboardFunction(config?: CopyToClipboardFunctionConfig): CopyToClipboardFunction;
5089
5094
  /**
@@ -6585,12 +6590,14 @@ declare function allDbxModelViewTrackerEventModelKeys(events: DbxModelViewTracke
6585
6590
  *
6586
6591
  * @param storageAccessorFactory - The factory used to create typed storage accessors
6587
6592
  * @returns A storage accessor configured with the `mtvs` prefix for model view tracker events
6593
+ * @__NO_SIDE_EFFECTS__
6588
6594
  */
6589
6595
  declare function defaultDbxModelViewTrackerStorageAccessorFactory(storageAccessorFactory: SimpleStorageAccessorFactory): StorageAccessor<DbxModelViewTrackerEventSet>;
6590
6596
  /**
6591
6597
  * Creates EnvironmentProviders for providing DbxModelTrackerService, DbxModelObjectStateService and sets up the NgRx store for DbxModelTrackerEffects.
6592
6598
  *
6593
6599
  * @returns EnvironmentProviders
6600
+ * @__NO_SIDE_EFFECTS__
6594
6601
  */
6595
6602
  declare function provideDbxModelService(): EnvironmentProviders;
6596
6603
 
@@ -7441,6 +7448,7 @@ interface ProvideDbxWebPageTitleServiceConfig extends DbxWebPageTitleServiceConf
7441
7448
  * ```ts
7442
7449
  * provideDbxWebPageTitleService({ defaultTitle: 'MyApp' })
7443
7450
  * ```
7451
+ * @__NO_SIDE_EFFECTS__
7444
7452
  */
7445
7453
  declare function provideDbxWebPageTitleService(config?: ProvideDbxWebPageTitleServiceConfig): EnvironmentProviders;
7446
7454
 
@@ -8547,6 +8555,7 @@ declare class DbxHelpContextService {
8547
8555
  *
8548
8556
  * @param helpContextKeys - Observable or static array of help context keys to register with the service
8549
8557
  * @returns A destroy function that unregisters the help context keys when called
8558
+ * @__NO_SIDE_EFFECTS__
8550
8559
  */
8551
8560
  declare function registerHelpContextKeysWithDbxHelpContextService(helpContextKeys: ObservableOrValue<DbxHelpContextKey[]>): DestroyFunction;
8552
8561
 
@@ -8747,6 +8756,7 @@ interface ProvideDbxHelpServicesConfig {
8747
8756
  *
8748
8757
  * @param config Optional configuration
8749
8758
  * @returns EnvironmentProviders
8759
+ * @__NO_SIDE_EFFECTS__
8750
8760
  */
8751
8761
  declare function provideDbxHelpServices(config?: ProvideDbxHelpServicesConfig): EnvironmentProviders;
8752
8762
 
@@ -9109,6 +9119,7 @@ interface BuildPdfMergeEntryConfig {
9109
9119
  * @param file - File the user added.
9110
9120
  * @param config - Optional config for slot attribution and id factory override.
9111
9121
  * @returns The new entry with `validating` status, or `null` when the file is not a supported PDF/PNG/JPEG.
9122
+ * @__NO_SIDE_EFFECTS__
9112
9123
  */
9113
9124
  declare function buildPdfMergeEntry(file: File, config?: Maybe<BuildPdfMergeEntryConfig>): PdfMergeEntry | null;
9114
9125
  /**
@@ -9301,6 +9312,7 @@ type FileArrayAcceptMatchFunction = (input: File[]) => FileArrayAcceptMatchResul
9301
9312
  * const result = matchFn(fileList);
9302
9313
  * console.log(result.accepted, result.rejected);
9303
9314
  * ```
9315
+ * @__NO_SIDE_EFFECTS__
9304
9316
  */
9305
9317
  declare function fileArrayAcceptMatchFunction(config: FileArrayAcceptMatchConfig): FileArrayAcceptMatchFunction;
9306
9318
  /**
@@ -9325,6 +9337,7 @@ type FileAcceptFunction = DecisionFunction<FileAcceptFunctionInput>;
9325
9337
  * isAccepted({ name: 'photo.png', type: 'image/png' }); // true
9326
9338
  * isAccepted({ name: 'doc.txt', type: 'text/plain' }); // false
9327
9339
  * ```
9340
+ * @__NO_SIDE_EFFECTS__
9328
9341
  */
9329
9342
  declare function fileAcceptFunction(accept: FileAcceptString | FileAcceptFilterTypeStringArray): FileAcceptFunction;
9330
9343
 
@@ -11411,6 +11424,7 @@ interface ProvideDbxScreenMediaServiceConfig {
11411
11424
  * providers: [provideDbxScreenMediaService()]
11412
11425
  * });
11413
11426
  * ```
11427
+ * @__NO_SIDE_EFFECTS__
11414
11428
  */
11415
11429
  declare function provideDbxScreenMediaService(config?: ProvideDbxScreenMediaServiceConfig): EnvironmentProviders;
11416
11430