@rdlabo/ionic-angular-kit 0.0.14 → 0.0.15
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/rdlabo-ionic-angular-kit-printer.mjs +146 -0
- package/fesm2022/rdlabo-ionic-angular-kit-printer.mjs.map +1 -0
- package/fesm2022/rdlabo-ionic-angular-kit-review.mjs +48 -0
- package/fesm2022/rdlabo-ionic-angular-kit-review.mjs.map +1 -0
- package/fesm2022/rdlabo-ionic-angular-kit-theme.mjs +163 -0
- package/fesm2022/rdlabo-ionic-angular-kit-theme.mjs.map +1 -0
- package/fesm2022/rdlabo-ionic-angular-kit.mjs +3 -321
- package/fesm2022/rdlabo-ionic-angular-kit.mjs.map +1 -1
- package/package.json +13 -1
- package/types/rdlabo-ionic-angular-kit-printer.d.ts +81 -0
- package/types/rdlabo-ionic-angular-kit-review.d.ts +45 -0
- package/types/rdlabo-ionic-angular-kit-theme.d.ts +116 -0
- package/types/rdlabo-ionic-angular-kit.d.ts +3 -234
|
@@ -1,20 +1,15 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { inject, Injectable, InjectionToken, makeEnvironmentProviders, ElementRef, Directive
|
|
2
|
+
import { inject, Injectable, InjectionToken, makeEnvironmentProviders, ElementRef, Directive } from '@angular/core';
|
|
3
3
|
import { Storage } from '@ionic/storage-angular';
|
|
4
4
|
import { ModalController, PopoverController, ToastController, AlertController, LoadingController, NavController } from '@ionic/angular/standalone';
|
|
5
5
|
import { Capacitor } from '@capacitor/core';
|
|
6
6
|
import { Keyboard } from '@capacitor/keyboard';
|
|
7
7
|
import { ImpactStyle, Haptics } from '@capacitor/haptics';
|
|
8
|
-
import { StatusBar, Style } from '@capacitor/status-bar';
|
|
9
|
-
import { BehaviorSubject, from, throwError, retry, timer, Observable, startWith } from 'rxjs';
|
|
10
|
-
import { Preferences } from '@capacitor/preferences';
|
|
11
|
-
import { InAppReview } from '@capacitor-community/in-app-review';
|
|
12
|
-
import { BRLMPrinterHalftone, BRLMPrinterCustomPaperUnit, BRLMPrinterCustomPaperType, BRLMPrinterPrintQuality, BRLMPrinterHorizontalAlignment, BRLMPrinterVerticalAlignment, BRLMPrinterImageRotation, BRLMPrinterScaleMode } from '@rdlabo/capacitor-brotherprint';
|
|
13
|
-
import domtoimage from 'dom-to-image-more';
|
|
14
8
|
import { Router } from '@angular/router';
|
|
15
9
|
import { map, mergeMap, catchError, timeout, tap } from 'rxjs/operators';
|
|
16
10
|
import { HttpErrorResponse, HttpResponse } from '@angular/common/http';
|
|
17
11
|
import { Network } from '@capacitor/network';
|
|
12
|
+
import { from, throwError, retry, timer, Observable, startWith } from 'rxjs';
|
|
18
13
|
|
|
19
14
|
/**
|
|
20
15
|
* Thin, typed wrapper around `@ionic/storage-angular`.
|
|
@@ -835,319 +830,6 @@ const kitKeyboardInit = async (elementRef, type) => {
|
|
|
835
830
|
];
|
|
836
831
|
};
|
|
837
832
|
|
|
838
|
-
/**
|
|
839
|
-
* Injection token carrying the {@link KitThemeConfig} for `KitThemeController`.
|
|
840
|
-
*
|
|
841
|
-
* @remarks
|
|
842
|
-
* Provide it through {@link provideKitTheme} rather than registering it directly.
|
|
843
|
-
*/
|
|
844
|
-
const KIT_THEME_CONFIG = new InjectionToken('@rdlabo/ionic-angular-kit:theme');
|
|
845
|
-
/**
|
|
846
|
-
* Wire `KitThemeController` into the application.
|
|
847
|
-
*
|
|
848
|
-
* @param config - theme configuration: the storage key and the light/dark class lists
|
|
849
|
-
* @returns environment providers to add to the application's provider list
|
|
850
|
-
* @example
|
|
851
|
-
* ```ts
|
|
852
|
-
* bootstrapApplication(AppComponent, {
|
|
853
|
-
* providers: [
|
|
854
|
-
* provideKitTheme({
|
|
855
|
-
* storageKey: StorageKeyEnum.theme,
|
|
856
|
-
* darkClasses: ['ion-palette-dark', 'a2ui-dark'],
|
|
857
|
-
* lightClasses: ['a2ui-light'],
|
|
858
|
-
* }),
|
|
859
|
-
* ],
|
|
860
|
-
* });
|
|
861
|
-
* ```
|
|
862
|
-
*/
|
|
863
|
-
const provideKitTheme = (config) => makeEnvironmentProviders([{ provide: KIT_THEME_CONFIG, useValue: config }]);
|
|
864
|
-
|
|
865
|
-
/**
|
|
866
|
-
* Light/dark theme controller: persists the user's choice, follows the OS setting until the user
|
|
867
|
-
* overrides it, toggles the configured palette classes, and syncs the native Android status bar.
|
|
868
|
-
*
|
|
869
|
-
* @remarks
|
|
870
|
-
* Consolidates the theme logic that had drifted across the fleet into one behavior. Notably it fixes
|
|
871
|
-
* a latent leak in one variant where the system-theme listener stayed registered after a manual
|
|
872
|
-
* toggle: {@link changeTheme} always detaches the listener via {@link removeEventListener} before
|
|
873
|
-
* applying the forced theme, so a later OS change can no longer silently flip an app the user pinned.
|
|
874
|
-
*
|
|
875
|
-
* - **Persistence** — the chosen mode is stored via {@link KitStorageService} under the configured key.
|
|
876
|
-
* - **Follow OS until overridden** — on boot with nothing stored, it tracks
|
|
877
|
-
* `prefers-color-scheme` (idempotent registration); once the user calls {@link changeTheme} it stops
|
|
878
|
-
* following and honors the explicit choice.
|
|
879
|
-
* - **Class toggling** — toggles {@link KitThemeConfig.darkClasses} on when dark and
|
|
880
|
-
* {@link KitThemeConfig.lightClasses} on when light, absorbing per-app CSS differences via config.
|
|
881
|
-
* - **Native status bar** — on Android native only, mirrors the Ionic behavior of setting the status
|
|
882
|
-
* bar style to match (iOS derives it from the web content, so it is intentionally left untouched).
|
|
883
|
-
*
|
|
884
|
-
* Subscribe to {@link themeSubject} to reflect the current mode in the UI (e.g. a settings toggle).
|
|
885
|
-
*
|
|
886
|
-
* @example
|
|
887
|
-
* ```ts
|
|
888
|
-
* // On boot (app.component):
|
|
889
|
-
* inject(KitThemeController).setDefaultThemeMode();
|
|
890
|
-
*
|
|
891
|
-
* // From a settings toggle:
|
|
892
|
-
* const theme = inject(KitThemeController);
|
|
893
|
-
* theme.themeSubject.subscribe((mode) => this.isDark.set(mode === 'dark'));
|
|
894
|
-
* theme.changeTheme(true);
|
|
895
|
-
* ```
|
|
896
|
-
*/
|
|
897
|
-
class KitThemeController {
|
|
898
|
-
constructor() {
|
|
899
|
-
this.#storage = inject(KitStorageService);
|
|
900
|
-
this.#document = inject(DOCUMENT);
|
|
901
|
-
this.#config = inject(KIT_THEME_CONFIG);
|
|
902
|
-
/**
|
|
903
|
-
* Emits the active theme, seeded with `'light'`.
|
|
904
|
-
*
|
|
905
|
-
* @remarks
|
|
906
|
-
* A `BehaviorSubject`, so a late subscriber immediately receives the current mode; it emits again
|
|
907
|
-
* on every {@link setDefaultThemeMode} / {@link changeTheme} and on OS theme changes while following.
|
|
908
|
-
*/
|
|
909
|
-
this.themeSubject = new BehaviorSubject('light');
|
|
910
|
-
}
|
|
911
|
-
#storage;
|
|
912
|
-
#document;
|
|
913
|
-
#config;
|
|
914
|
-
#prefersDark;
|
|
915
|
-
#onSystemThemeChange;
|
|
916
|
-
/**
|
|
917
|
-
* Apply the persisted theme, or start following the OS setting when nothing is stored yet.
|
|
918
|
-
*
|
|
919
|
-
* @remarks
|
|
920
|
-
* Call once on boot (e.g. from `app.component`).
|
|
921
|
-
*
|
|
922
|
-
* @returns a Promise that resolves once the initial theme has been applied
|
|
923
|
-
*/
|
|
924
|
-
async setDefaultThemeMode() {
|
|
925
|
-
const stored = await this.#storage.get(this.#config.storageKey);
|
|
926
|
-
if (stored) {
|
|
927
|
-
// 保存済みの選択を強制し、OS 追従は解除する。
|
|
928
|
-
this.#unwatchSystemTheme();
|
|
929
|
-
return this.#applyTheme(stored === 'dark');
|
|
930
|
-
}
|
|
931
|
-
// 未保存 → OS の設定に追従する。
|
|
932
|
-
this.#watchSystemTheme();
|
|
933
|
-
}
|
|
934
|
-
/**
|
|
935
|
-
* Force a theme, persist it, and stop following the OS setting.
|
|
936
|
-
*
|
|
937
|
-
* @param isDark - `true` for the dark theme, `false` for light
|
|
938
|
-
* @returns a Promise that resolves once the theme has been persisted and applied
|
|
939
|
-
*/
|
|
940
|
-
async changeTheme(isDark) {
|
|
941
|
-
this.#unwatchSystemTheme();
|
|
942
|
-
await this.#storage.set(this.#config.storageKey, isDark ? 'dark' : 'light');
|
|
943
|
-
await this.#applyTheme(isDark);
|
|
944
|
-
}
|
|
945
|
-
#watchSystemTheme() {
|
|
946
|
-
if (this.#prefersDark) {
|
|
947
|
-
// 既に監視中なら二重登録しない(冪等)。
|
|
948
|
-
return;
|
|
949
|
-
}
|
|
950
|
-
this.#prefersDark = window.matchMedia('(prefers-color-scheme: dark)');
|
|
951
|
-
this.#onSystemThemeChange = (e) => void this.#applyTheme(e.matches);
|
|
952
|
-
this.#prefersDark.addEventListener('change', this.#onSystemThemeChange, { passive: true });
|
|
953
|
-
void this.#applyTheme(this.#prefersDark.matches);
|
|
954
|
-
}
|
|
955
|
-
#unwatchSystemTheme() {
|
|
956
|
-
if (this.#prefersDark && this.#onSystemThemeChange) {
|
|
957
|
-
this.#prefersDark.removeEventListener('change', this.#onSystemThemeChange);
|
|
958
|
-
}
|
|
959
|
-
this.#prefersDark = undefined;
|
|
960
|
-
this.#onSystemThemeChange = undefined;
|
|
961
|
-
}
|
|
962
|
-
async #applyTheme(isDark) {
|
|
963
|
-
if (Capacitor.isNativePlatform() && Capacitor.getPlatform() === 'android') {
|
|
964
|
-
await StatusBar.setStyle({ style: isDark ? Style.Dark : Style.Light });
|
|
965
|
-
}
|
|
966
|
-
const root = this.#document.documentElement;
|
|
967
|
-
for (const cls of this.#config.darkClasses) {
|
|
968
|
-
root.classList.toggle(cls, isDark);
|
|
969
|
-
}
|
|
970
|
-
for (const cls of this.#config.lightClasses) {
|
|
971
|
-
root.classList.toggle(cls, !isDark);
|
|
972
|
-
}
|
|
973
|
-
this.themeSubject.next(isDark ? 'dark' : 'light');
|
|
974
|
-
}
|
|
975
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: KitThemeController, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
976
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: KitThemeController, providedIn: 'root' }); }
|
|
977
|
-
}
|
|
978
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.17", ngImport: i0, type: KitThemeController, decorators: [{
|
|
979
|
-
type: Injectable,
|
|
980
|
-
args: [{
|
|
981
|
-
providedIn: 'root',
|
|
982
|
-
}]
|
|
983
|
-
}] });
|
|
984
|
-
|
|
985
|
-
/**
|
|
986
|
-
* Request the native in-app review dialog, throttled so the user is prompted at most once per window.
|
|
987
|
-
*
|
|
988
|
-
* @remarks
|
|
989
|
-
* A plain function — no DI needed (`@capacitor/preferences`, `@capacitor-community/in-app-review` and
|
|
990
|
-
* `Capacitor` are all static), so the caller invokes it directly and passes its own config rather
|
|
991
|
-
* than injecting a controller. A no-op on non-native platforms. When enough time has elapsed since
|
|
992
|
-
* the last prompt (per {@link KitRequestReviewOptions.throttleMonths}, tracked under
|
|
993
|
-
* {@link KitRequestReviewOptions.storageKey}), it briefly waits for the app to settle, calls
|
|
994
|
-
* `InAppReview.requestReview()`, and records the new timestamp. The wait/throttle/record sequence
|
|
995
|
-
* was previously copy-pasted verbatim across the fleet; centralizing it means a single place to tune
|
|
996
|
-
* the prompt cadence.
|
|
997
|
-
*
|
|
998
|
-
* @param options - the storage key and throttle window; see {@link KitRequestReviewOptions}
|
|
999
|
-
* @returns a Promise that resolves once the request has been made (or immediately if throttled / on web)
|
|
1000
|
-
* @example
|
|
1001
|
-
* ```ts
|
|
1002
|
-
* await kitRequestReview({ storageKey: StorageEnum.lastRequestRate, throttleMonths: 3 });
|
|
1003
|
-
* ```
|
|
1004
|
-
*/
|
|
1005
|
-
const kitRequestReview = async (options) => {
|
|
1006
|
-
if (!Capacitor.isNativePlatform()) {
|
|
1007
|
-
return;
|
|
1008
|
-
}
|
|
1009
|
-
await new Promise((resolve) => setTimeout(() => resolve(), 1000));
|
|
1010
|
-
const threshold = new Date();
|
|
1011
|
-
threshold.setMonth(threshold.getMonth() - options.throttleMonths);
|
|
1012
|
-
const { value } = await Preferences.get({ key: options.storageKey });
|
|
1013
|
-
if (!value || new Date(Number(value)).getTime() < threshold.getTime()) {
|
|
1014
|
-
await InAppReview.requestReview();
|
|
1015
|
-
await Preferences.set({ key: options.storageKey, value: new Date().getTime().toString() });
|
|
1016
|
-
}
|
|
1017
|
-
};
|
|
1018
|
-
|
|
1019
|
-
/**
|
|
1020
|
-
* Rotate a base64 image 90°, returning a new base64 data URL of the same MIME type.
|
|
1021
|
-
*
|
|
1022
|
-
* @remarks
|
|
1023
|
-
* Pure DOM/canvas work — no DI. Used before sending a label to the printer when the artwork must be
|
|
1024
|
-
* turned to match the tape orientation. Extracted verbatim from the fleet's printer services so the
|
|
1025
|
-
* canvas handling lives in one place.
|
|
1026
|
-
*
|
|
1027
|
-
* @param imageData - a base64 data URL (e.g. `data:image/png;base64,...`)
|
|
1028
|
-
* @returns a Promise resolving to the rotated image as a base64 data URL
|
|
1029
|
-
*/
|
|
1030
|
-
const kitRotationImage = async (imageData) => {
|
|
1031
|
-
const imgType = imageData.substring(5, imageData.indexOf(';'));
|
|
1032
|
-
const image = new Image();
|
|
1033
|
-
const loaded = new Promise((resolve) => {
|
|
1034
|
-
image.onload = () => resolve();
|
|
1035
|
-
});
|
|
1036
|
-
image.src = imageData;
|
|
1037
|
-
await loaded;
|
|
1038
|
-
const canvas = document.createElement('canvas');
|
|
1039
|
-
const ctx = canvas.getContext('2d');
|
|
1040
|
-
canvas.width = image.height;
|
|
1041
|
-
canvas.height = image.width;
|
|
1042
|
-
ctx.rotate((90 * Math.PI) / 180);
|
|
1043
|
-
ctx.translate(0, -image.height);
|
|
1044
|
-
ctx.drawImage(image, 0, 0, image.width, image.height);
|
|
1045
|
-
return canvas.toDataURL(imgType);
|
|
1046
|
-
};
|
|
1047
|
-
/**
|
|
1048
|
-
* Render a DOM element to a base64 PNG for label printing, with the fleet's device-specific fixes.
|
|
1049
|
-
*
|
|
1050
|
-
* @remarks
|
|
1051
|
-
* Pure function — no DI (reads the platform from `Capacitor`, uses the global `document`), so the
|
|
1052
|
-
* caller presents its own loading UI around it. Centralizes the hard-won device quirks: on iOS it
|
|
1053
|
-
* pads width/height by 2px (otherwise the bottom is clipped), on Android it does not (the padding
|
|
1054
|
-
* introduces a black line). Retries the `dom-to-image-more` render up to 10 times because the first
|
|
1055
|
-
* pass can occasionally return empty. This is exactly the kind of plumbing where a future fix should
|
|
1056
|
-
* land in every app at once.
|
|
1057
|
-
*
|
|
1058
|
-
* @param element - the element to rasterize (e.g. the label preview host)
|
|
1059
|
-
* @param options - rendering options; see {@link KitDomToPngOptions}
|
|
1060
|
-
* @returns a Promise resolving to the PNG as a base64 data URL (empty string if every attempt failed)
|
|
1061
|
-
* @example
|
|
1062
|
-
* ```ts
|
|
1063
|
-
* const loading = await this.#loadingCtrl.create({ message: this.text.generating });
|
|
1064
|
-
* await loading.present();
|
|
1065
|
-
* const png = await kitDomToPng(this.preview().nativeElement, { rotate: true });
|
|
1066
|
-
* await loading.dismiss();
|
|
1067
|
-
* ```
|
|
1068
|
-
*/
|
|
1069
|
-
const kitDomToPng = async (element, options) => {
|
|
1070
|
-
await new Promise((resolve) => requestAnimationFrame(resolve));
|
|
1071
|
-
const { clientHeight, clientWidth } = element;
|
|
1072
|
-
// デバイス毎の問題解決のため、px 調整。
|
|
1073
|
-
// iOS: ないと下が途切れる。Android: あると黒線が入る。
|
|
1074
|
-
const addClient = Capacitor.getPlatform() === 'ios' ? 2 : 0;
|
|
1075
|
-
let dataUrl = '';
|
|
1076
|
-
for (let i = 0; i < 10; i++) {
|
|
1077
|
-
const url = await domtoimage.toPng(element, {
|
|
1078
|
-
width: clientWidth + addClient,
|
|
1079
|
-
height: clientHeight + addClient,
|
|
1080
|
-
scale: options?.scale ?? 3,
|
|
1081
|
-
copyDefaultStyles: false,
|
|
1082
|
-
});
|
|
1083
|
-
if (url) {
|
|
1084
|
-
dataUrl = url;
|
|
1085
|
-
break;
|
|
1086
|
-
}
|
|
1087
|
-
}
|
|
1088
|
-
return options?.rotate ? kitRotationImage(dataUrl) : dataUrl;
|
|
1089
|
-
};
|
|
1090
|
-
/**
|
|
1091
|
-
* Assemble the Brother `BRLMPrintOptions` for a die-cut label print, minus the transport fields.
|
|
1092
|
-
*
|
|
1093
|
-
* @remarks
|
|
1094
|
-
* Pure function — no DI. Centralizes the fleet's canonical print settings (fit-page scale, centered,
|
|
1095
|
-
* best quality, threshold halftone, 2mm/1mm margins, `gapLength` 2.0) and the tape sizing derived
|
|
1096
|
-
* from the label's `W<width>H<height>` code. The caller merges the printer's `port` / `channelInfo`
|
|
1097
|
-
* onto the result before calling `BrotherPrint.printImage()`, so channel selection and loading UI stay
|
|
1098
|
-
* in the app.
|
|
1099
|
-
*
|
|
1100
|
-
* @param params - model, artwork, label, copies, and halftone threshold; see {@link KitBrotherPrintSettingsParams}
|
|
1101
|
-
* @returns the `BRLMPrintOptions` ready to be spread with `{ port, channelInfo }`
|
|
1102
|
-
* @example
|
|
1103
|
-
* ```ts
|
|
1104
|
-
* const settings = kitBuildBrotherPrintSettings({
|
|
1105
|
-
* modelName, printBase64, label, numberOfCopies: printOptions.printNum, halftoneThreshold: printOptions.halftoneThreshold,
|
|
1106
|
-
* });
|
|
1107
|
-
* await BrotherPrint.printImage({ ...settings, port: channel.port, channelInfo: channel.channelInfo });
|
|
1108
|
-
* ```
|
|
1109
|
-
*/
|
|
1110
|
-
const kitBuildBrotherPrintSettings = (params) => {
|
|
1111
|
-
const startPoint = params.printBase64.indexOf(',');
|
|
1112
|
-
const tapeSize = params.label.match(/W(\d+)H(\d+)/);
|
|
1113
|
-
const tapeWidth = tapeSize && tapeSize.length >= 2 ? parseInt(tapeSize[1], 10) : 0;
|
|
1114
|
-
const tapeLength = tapeSize && tapeSize.length >= 3 ? parseInt(tapeSize[2], 10) : 0;
|
|
1115
|
-
// `BRLMPrintOptions` is a `QL | TD` union; a die-cut label legitimately carries fields from both
|
|
1116
|
-
// groups, so the object is composed via spreads to bypass the union's excess-property checks — the
|
|
1117
|
-
// same technique the source printer services used.
|
|
1118
|
-
return {
|
|
1119
|
-
...{
|
|
1120
|
-
modelName: params.modelName,
|
|
1121
|
-
encodedImage: params.printBase64.slice(startPoint + 1),
|
|
1122
|
-
numberOfCopies: params.numberOfCopies,
|
|
1123
|
-
autoCut: true,
|
|
1124
|
-
scaleMode: BRLMPrinterScaleMode.FitPageAspect,
|
|
1125
|
-
imageRotation: BRLMPrinterImageRotation.Rotate0,
|
|
1126
|
-
verticalAlignment: BRLMPrinterVerticalAlignment.Center,
|
|
1127
|
-
horizontalAlignment: BRLMPrinterHorizontalAlignment.Center,
|
|
1128
|
-
printQuality: BRLMPrinterPrintQuality.Best,
|
|
1129
|
-
},
|
|
1130
|
-
...{
|
|
1131
|
-
labelName: params.label,
|
|
1132
|
-
},
|
|
1133
|
-
...{
|
|
1134
|
-
paperType: BRLMPrinterCustomPaperType.dieCutPaper,
|
|
1135
|
-
paperUnit: BRLMPrinterCustomPaperUnit.mm,
|
|
1136
|
-
halftone: BRLMPrinterHalftone.Threshold,
|
|
1137
|
-
halftoneThreshold: params.halftoneThreshold,
|
|
1138
|
-
tapeWidth: Number(tapeWidth.toFixed(1)),
|
|
1139
|
-
tapeLength: Number(tapeLength.toFixed(1)),
|
|
1140
|
-
gapLength: 2.0,
|
|
1141
|
-
marginTop: 1.0,
|
|
1142
|
-
marginRight: 2.0,
|
|
1143
|
-
marginBottom: 1.0,
|
|
1144
|
-
marginLeft: 2.0,
|
|
1145
|
-
paperMarkPosition: 0,
|
|
1146
|
-
paperMarkLength: 0,
|
|
1147
|
-
},
|
|
1148
|
-
};
|
|
1149
|
-
};
|
|
1150
|
-
|
|
1151
833
|
/**
|
|
1152
834
|
* Injection token that carries the {@link KitAuthConfig} to the authentication guards.
|
|
1153
835
|
*/
|
|
@@ -1704,5 +1386,5 @@ const kitCreateDidEnter = (el) => {
|
|
|
1704
1386
|
* Generated bundle index. Do not edit.
|
|
1705
1387
|
*/
|
|
1706
1388
|
|
|
1707
|
-
export { KIT_AUTH_CONFIG, KIT_HTTP_CONFIG, KIT_OVERLAY_CONFIG,
|
|
1389
|
+
export { KIT_AUTH_CONFIG, KIT_HTTP_CONFIG, KIT_OVERLAY_CONFIG, KitAutofillDirective, KitLoadingController, KitOverlayController, KitReloadAlertController, KitStorageService, arrayConcatById, disableHandler, kitAuthInterceptor, kitChangeEventDisabled, kitCreateDidEnter, kitImpact, kitKeyboardInit, kitPresentAuthFailedAlert, kitPresentLanguageActionSheet, kitRequireAuthorizedGuard, kitRequireConfirmingGuard, kitRequiredUnauthorizedGuard, objectEqual, provideKitAuth, provideKitHttp, provideKitOverlay };
|
|
1708
1390
|
//# sourceMappingURL=rdlabo-ionic-angular-kit.mjs.map
|