aril 1.1.61 → 1.1.62
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,14 +1,12 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Injectable, inject } from '@angular/core';
|
|
3
|
-
import { i18nFolderName } from './folder-name-token';
|
|
4
3
|
import * as i0 from "@angular/core";
|
|
5
4
|
export class TranslocoHttpLoader {
|
|
6
5
|
constructor() {
|
|
7
6
|
this.http = inject(HttpClient);
|
|
8
|
-
this.folderUrl = inject(i18nFolderName);
|
|
9
7
|
}
|
|
10
8
|
getTranslation(lang) {
|
|
11
|
-
return this.http.get(`./assets
|
|
9
|
+
return this.http.get(`./assets/host/i18n/${lang}.json`);
|
|
12
10
|
}
|
|
13
11
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: TranslocoHttpLoader, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
14
12
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: TranslocoHttpLoader, providedIn: 'root' }); }
|
|
@@ -17,4 +15,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.2", ngImpor
|
|
|
17
15
|
type: Injectable,
|
|
18
16
|
args: [{ providedIn: 'root' }]
|
|
19
17
|
}] });
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibG9hZGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvYXJpbC9pMThuL3NyYy9sb2FkZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLHNCQUFzQixDQUFDO0FBQ2xELE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUtuRCxNQUFNLE9BQU8sbUJBQW1CO0lBRGhDO1FBRVMsU0FBSSxHQUFHLE1BQU0sQ0FBQyxVQUFVLENBQUMsQ0FBQztLQUtsQztJQUhBLGNBQWMsQ0FBQyxJQUFZO1FBQzFCLE9BQU8sSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQWMsc0JBQXNCLElBQUksT0FBTyxDQUFDLENBQUM7SUFDdEUsQ0FBQzs4R0FMVyxtQkFBbUI7a0hBQW5CLG1CQUFtQixjQUROLE1BQU07OzJGQUNuQixtQkFBbUI7a0JBRC9CLFVBQVU7bUJBQUMsRUFBRSxVQUFVLEVBQUUsTUFBTSxFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSHR0cENsaWVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbi9odHRwJztcclxuaW1wb3J0IHsgSW5qZWN0YWJsZSwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcblxyXG5pbXBvcnQgeyBUcmFuc2xhdGlvbiwgVHJhbnNsb2NvTG9hZGVyIH0gZnJvbSAnQG5nbmVhdC90cmFuc2xvY28nO1xyXG5cclxuQEluamVjdGFibGUoeyBwcm92aWRlZEluOiAncm9vdCcgfSlcclxuZXhwb3J0IGNsYXNzIFRyYW5zbG9jb0h0dHBMb2FkZXIgaW1wbGVtZW50cyBUcmFuc2xvY29Mb2FkZXIge1xyXG5cdHByaXZhdGUgaHR0cCA9IGluamVjdChIdHRwQ2xpZW50KTtcclxuXHJcblx0Z2V0VHJhbnNsYXRpb24obGFuZzogc3RyaW5nKSB7XHJcblx0XHRyZXR1cm4gdGhpcy5odHRwLmdldDxUcmFuc2xhdGlvbj4oYC4vYXNzZXRzL2hvc3QvaTE4bi8ke2xhbmd9Lmpzb25gKTtcclxuXHR9XHJcbn1cclxuIl19
|
package/fesm2022/aril-i18n.mjs
CHANGED
|
@@ -1,17 +1,14 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import {
|
|
3
|
+
import { inject, Injectable, isDevMode, InjectionToken, NgModule } from '@angular/core';
|
|
4
4
|
import { provideTransloco, provideTranslocoScope, TranslocoModule } from '@ngneat/transloco';
|
|
5
5
|
|
|
6
|
-
const i18nFolderName = new InjectionToken('i18nFolderName');
|
|
7
|
-
|
|
8
6
|
class TranslocoHttpLoader {
|
|
9
7
|
constructor() {
|
|
10
8
|
this.http = inject(HttpClient);
|
|
11
|
-
this.folderUrl = inject(i18nFolderName);
|
|
12
9
|
}
|
|
13
10
|
getTranslation(lang) {
|
|
14
|
-
return this.http.get(`./assets
|
|
11
|
+
return this.http.get(`./assets/host/i18n/${lang}.json`);
|
|
15
12
|
}
|
|
16
13
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: TranslocoHttpLoader, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
17
14
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: TranslocoHttpLoader, providedIn: 'root' }); }
|
|
@@ -51,6 +48,8 @@ const providei18nScope = (scopeName, loader) => {
|
|
|
51
48
|
});
|
|
52
49
|
};
|
|
53
50
|
|
|
51
|
+
const i18nFolderName = new InjectionToken('i18nFolderName');
|
|
52
|
+
|
|
54
53
|
class i18nModule {
|
|
55
54
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.2", ngImport: i0, type: i18nModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
56
55
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.1.2", ngImport: i0, type: i18nModule, exports: [TranslocoModule] }); }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aril-i18n.mjs","sources":["../../projects/aril/i18n/src/
|
|
1
|
+
{"version":3,"file":"aril-i18n.mjs","sources":["../../projects/aril/i18n/src/loader.ts","../../projects/aril/i18n/src/provideI18n.ts","../../projects/aril/i18n/src/provideScope.ts","../../projects/aril/i18n/src/folder-name-token.ts","../../projects/aril/i18n/src/i18n.module.ts","../../projects/aril/i18n/aril-i18n.ts"],"sourcesContent":["import { HttpClient } from '@angular/common/http';\r\nimport { Injectable, inject } from '@angular/core';\r\n\r\nimport { Translation, TranslocoLoader } from '@ngneat/transloco';\r\n\r\n@Injectable({ providedIn: 'root' })\r\nexport class TranslocoHttpLoader implements TranslocoLoader {\r\n\tprivate http = inject(HttpClient);\r\n\r\n\tgetTranslation(lang: string) {\r\n\t\treturn this.http.get<Translation>(`./assets/host/i18n/${lang}.json`);\r\n\t}\r\n}\r\n","import { EnvironmentProviders, isDevMode } from '@angular/core';\r\n\r\nimport { provideTransloco } from '@ngneat/transloco';\r\n\r\nimport { TranslocoHttpLoader } from './loader';\r\n\r\nexport const i18nProvider = (): EnvironmentProviders[] => {\r\n\treturn provideTransloco({\r\n\t\tconfig: {\r\n\t\t\tavailableLangs: ['tr', 'en'],\r\n\t\t\tdefaultLang: 'tr',\r\n\t\t\tfallbackLang: 'tr',\r\n\t\t\treRenderOnLangChange: true,\r\n\t\t\tprodMode: !isDevMode()\r\n\t\t},\r\n\t\tloader: TranslocoHttpLoader\r\n\t});\r\n};\r\n","import { provideTranslocoScope } from '@ngneat/transloco';\r\n\r\nconst languages = ['tr', 'en'];\r\n\r\n/**\r\n * @param loader `(lang: string) => import(`./i18n/${lang}.json`)` to create a relative import to the correct dir\r\n */\r\nfunction i18nLoaderFactory(loader: (lang: string) => Promise<any>) {\r\n\treturn languages.reduce((acc: any, lang) => {\r\n\t\tacc[lang] = () => loader(lang);\r\n\t\treturn acc;\r\n\t}, {});\r\n}\r\n\r\nexport const providei18nScope = (scopeName: string, loader: (lang: string) => Promise<any>) => {\r\n\treturn provideTranslocoScope({\r\n\t\tscope: scopeName,\r\n\t\tloader: i18nLoaderFactory(loader)\r\n\t});\r\n};\r\n","import { InjectionToken } from '@angular/core';\r\n\r\nexport const i18nFolderName = new InjectionToken<string>('i18nFolderName');\r\n","import { NgModule } from '@angular/core';\r\n\r\nimport { TranslocoModule } from '@ngneat/transloco';\r\n\r\nimport { i18nProvider } from './provideI18n';\r\n\r\n@NgModule({\r\n\texports: [TranslocoModule],\r\n\tproviders: [i18nProvider()]\r\n})\r\nexport class i18nModule {}\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
package/i18n/src/loader.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import { Translation, TranslocoLoader } from '@ngneat/transloco';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class TranslocoHttpLoader implements TranslocoLoader {
|
|
4
4
|
private http;
|
|
5
|
-
private folderUrl;
|
|
6
5
|
getTranslation(lang: string): import("rxjs").Observable<Translation>;
|
|
7
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<TranslocoHttpLoader, never>;
|
|
8
7
|
static ɵprov: i0.ɵɵInjectableDeclaration<TranslocoHttpLoader>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aril",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.62",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "~17.1.0",
|
|
6
6
|
"@angular/common": "^17.1.0",
|
|
@@ -177,18 +177,18 @@
|
|
|
177
177
|
"esm": "./esm2022/ui/dxField/aril-ui-dxField.mjs",
|
|
178
178
|
"default": "./fesm2022/aril-ui-dxField.mjs"
|
|
179
179
|
},
|
|
180
|
-
"./ui/field": {
|
|
181
|
-
"types": "./ui/field/index.d.ts",
|
|
182
|
-
"esm2022": "./esm2022/ui/field/aril-ui-field.mjs",
|
|
183
|
-
"esm": "./esm2022/ui/field/aril-ui-field.mjs",
|
|
184
|
-
"default": "./fesm2022/aril-ui-field.mjs"
|
|
185
|
-
},
|
|
186
180
|
"./ui/editor": {
|
|
187
181
|
"types": "./ui/editor/index.d.ts",
|
|
188
182
|
"esm2022": "./esm2022/ui/editor/aril-ui-editor.mjs",
|
|
189
183
|
"esm": "./esm2022/ui/editor/aril-ui-editor.mjs",
|
|
190
184
|
"default": "./fesm2022/aril-ui-editor.mjs"
|
|
191
185
|
},
|
|
186
|
+
"./ui/field": {
|
|
187
|
+
"types": "./ui/field/index.d.ts",
|
|
188
|
+
"esm2022": "./esm2022/ui/field/aril-ui-field.mjs",
|
|
189
|
+
"esm": "./esm2022/ui/field/aril-ui-field.mjs",
|
|
190
|
+
"default": "./fesm2022/aril-ui-field.mjs"
|
|
191
|
+
},
|
|
192
192
|
"./ui/fileUpload": {
|
|
193
193
|
"types": "./ui/fileUpload/index.d.ts",
|
|
194
194
|
"esm2022": "./esm2022/ui/fileUpload/aril-ui-fileUpload.mjs",
|
|
@@ -267,6 +267,18 @@
|
|
|
267
267
|
"esm": "./esm2022/ui/password/aril-ui-password.mjs",
|
|
268
268
|
"default": "./fesm2022/aril-ui-password.mjs"
|
|
269
269
|
},
|
|
270
|
+
"./ui/pdf-viewer": {
|
|
271
|
+
"types": "./ui/pdf-viewer/index.d.ts",
|
|
272
|
+
"esm2022": "./esm2022/ui/pdf-viewer/aril-ui-pdf-viewer.mjs",
|
|
273
|
+
"esm": "./esm2022/ui/pdf-viewer/aril-ui-pdf-viewer.mjs",
|
|
274
|
+
"default": "./fesm2022/aril-ui-pdf-viewer.mjs"
|
|
275
|
+
},
|
|
276
|
+
"./ui/progressbar": {
|
|
277
|
+
"types": "./ui/progressbar/index.d.ts",
|
|
278
|
+
"esm2022": "./esm2022/ui/progressbar/aril-ui-progressbar.mjs",
|
|
279
|
+
"esm": "./esm2022/ui/progressbar/aril-ui-progressbar.mjs",
|
|
280
|
+
"default": "./fesm2022/aril-ui-progressbar.mjs"
|
|
281
|
+
},
|
|
270
282
|
"./ui/radioButton": {
|
|
271
283
|
"types": "./ui/radioButton/index.d.ts",
|
|
272
284
|
"esm2022": "./esm2022/ui/radioButton/aril-ui-radioButton.mjs",
|
|
@@ -279,30 +291,24 @@
|
|
|
279
291
|
"esm": "./esm2022/ui/relativeDateSelector/aril-ui-relativeDateSelector.mjs",
|
|
280
292
|
"default": "./fesm2022/aril-ui-relativeDateSelector.mjs"
|
|
281
293
|
},
|
|
282
|
-
"./ui/pdf-viewer": {
|
|
283
|
-
"types": "./ui/pdf-viewer/index.d.ts",
|
|
284
|
-
"esm2022": "./esm2022/ui/pdf-viewer/aril-ui-pdf-viewer.mjs",
|
|
285
|
-
"esm": "./esm2022/ui/pdf-viewer/aril-ui-pdf-viewer.mjs",
|
|
286
|
-
"default": "./fesm2022/aril-ui-pdf-viewer.mjs"
|
|
287
|
-
},
|
|
288
294
|
"./ui/selectBox": {
|
|
289
295
|
"types": "./ui/selectBox/index.d.ts",
|
|
290
296
|
"esm2022": "./esm2022/ui/selectBox/aril-ui-selectBox.mjs",
|
|
291
297
|
"esm": "./esm2022/ui/selectBox/aril-ui-selectBox.mjs",
|
|
292
298
|
"default": "./fesm2022/aril-ui-selectBox.mjs"
|
|
293
299
|
},
|
|
294
|
-
"./ui/progressbar": {
|
|
295
|
-
"types": "./ui/progressbar/index.d.ts",
|
|
296
|
-
"esm2022": "./esm2022/ui/progressbar/aril-ui-progressbar.mjs",
|
|
297
|
-
"esm": "./esm2022/ui/progressbar/aril-ui-progressbar.mjs",
|
|
298
|
-
"default": "./fesm2022/aril-ui-progressbar.mjs"
|
|
299
|
-
},
|
|
300
300
|
"./ui/switch": {
|
|
301
301
|
"types": "./ui/switch/index.d.ts",
|
|
302
302
|
"esm2022": "./esm2022/ui/switch/aril-ui-switch.mjs",
|
|
303
303
|
"esm": "./esm2022/ui/switch/aril-ui-switch.mjs",
|
|
304
304
|
"default": "./fesm2022/aril-ui-switch.mjs"
|
|
305
305
|
},
|
|
306
|
+
"./ui/table": {
|
|
307
|
+
"types": "./ui/table/index.d.ts",
|
|
308
|
+
"esm2022": "./esm2022/ui/table/aril-ui-table.mjs",
|
|
309
|
+
"esm": "./esm2022/ui/table/aril-ui-table.mjs",
|
|
310
|
+
"default": "./fesm2022/aril-ui-table.mjs"
|
|
311
|
+
},
|
|
306
312
|
"./ui/table-expand": {
|
|
307
313
|
"types": "./ui/table-expand/index.d.ts",
|
|
308
314
|
"esm2022": "./esm2022/ui/table-expand/aril-ui-table-expand.mjs",
|
|
@@ -315,23 +321,17 @@
|
|
|
315
321
|
"esm": "./esm2022/ui/tag/aril-ui-tag.mjs",
|
|
316
322
|
"default": "./fesm2022/aril-ui-tag.mjs"
|
|
317
323
|
},
|
|
318
|
-
"./ui/table": {
|
|
319
|
-
"types": "./ui/table/index.d.ts",
|
|
320
|
-
"esm2022": "./esm2022/ui/table/aril-ui-table.mjs",
|
|
321
|
-
"esm": "./esm2022/ui/table/aril-ui-table.mjs",
|
|
322
|
-
"default": "./fesm2022/aril-ui-table.mjs"
|
|
323
|
-
},
|
|
324
324
|
"./ui/tagBox": {
|
|
325
325
|
"types": "./ui/tagBox/index.d.ts",
|
|
326
326
|
"esm2022": "./esm2022/ui/tagBox/aril-ui-tagBox.mjs",
|
|
327
327
|
"esm": "./esm2022/ui/tagBox/aril-ui-tagBox.mjs",
|
|
328
328
|
"default": "./fesm2022/aril-ui-tagBox.mjs"
|
|
329
329
|
},
|
|
330
|
-
"./ui/
|
|
331
|
-
"types": "./ui/
|
|
332
|
-
"esm2022": "./esm2022/ui/
|
|
333
|
-
"esm": "./esm2022/ui/
|
|
334
|
-
"default": "./fesm2022/aril-ui-
|
|
330
|
+
"./ui/text": {
|
|
331
|
+
"types": "./ui/text/index.d.ts",
|
|
332
|
+
"esm2022": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
333
|
+
"esm": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
334
|
+
"default": "./fesm2022/aril-ui-text.mjs"
|
|
335
335
|
},
|
|
336
336
|
"./ui/textArea": {
|
|
337
337
|
"types": "./ui/textArea/index.d.ts",
|
|
@@ -339,36 +339,36 @@
|
|
|
339
339
|
"esm": "./esm2022/ui/textArea/aril-ui-textArea.mjs",
|
|
340
340
|
"default": "./fesm2022/aril-ui-textArea.mjs"
|
|
341
341
|
},
|
|
342
|
-
"./ui/text": {
|
|
343
|
-
"types": "./ui/text/index.d.ts",
|
|
344
|
-
"esm2022": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
345
|
-
"esm": "./esm2022/ui/text/aril-ui-text.mjs",
|
|
346
|
-
"default": "./fesm2022/aril-ui-text.mjs"
|
|
347
|
-
},
|
|
348
342
|
"./ui/tooltip": {
|
|
349
343
|
"types": "./ui/tooltip/index.d.ts",
|
|
350
344
|
"esm2022": "./esm2022/ui/tooltip/aril-ui-tooltip.mjs",
|
|
351
345
|
"esm": "./esm2022/ui/tooltip/aril-ui-tooltip.mjs",
|
|
352
346
|
"default": "./fesm2022/aril-ui-tooltip.mjs"
|
|
353
347
|
},
|
|
348
|
+
"./ui/toggle-button": {
|
|
349
|
+
"types": "./ui/toggle-button/index.d.ts",
|
|
350
|
+
"esm2022": "./esm2022/ui/toggle-button/aril-ui-toggle-button.mjs",
|
|
351
|
+
"esm": "./esm2022/ui/toggle-button/aril-ui-toggle-button.mjs",
|
|
352
|
+
"default": "./fesm2022/aril-ui-toggle-button.mjs"
|
|
353
|
+
},
|
|
354
354
|
"./ui/translate-input": {
|
|
355
355
|
"types": "./ui/translate-input/index.d.ts",
|
|
356
356
|
"esm2022": "./esm2022/ui/translate-input/aril-ui-translate-input.mjs",
|
|
357
357
|
"esm": "./esm2022/ui/translate-input/aril-ui-translate-input.mjs",
|
|
358
358
|
"default": "./fesm2022/aril-ui-translate-input.mjs"
|
|
359
359
|
},
|
|
360
|
-
"./ui/tree": {
|
|
361
|
-
"types": "./ui/tree/index.d.ts",
|
|
362
|
-
"esm2022": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
363
|
-
"esm": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
364
|
-
"default": "./fesm2022/aril-ui-tree.mjs"
|
|
365
|
-
},
|
|
366
360
|
"./ui/treeSelect": {
|
|
367
361
|
"types": "./ui/treeSelect/index.d.ts",
|
|
368
362
|
"esm2022": "./esm2022/ui/treeSelect/aril-ui-treeSelect.mjs",
|
|
369
363
|
"esm": "./esm2022/ui/treeSelect/aril-ui-treeSelect.mjs",
|
|
370
364
|
"default": "./fesm2022/aril-ui-treeSelect.mjs"
|
|
371
365
|
},
|
|
366
|
+
"./ui/tree": {
|
|
367
|
+
"types": "./ui/tree/index.d.ts",
|
|
368
|
+
"esm2022": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
369
|
+
"esm": "./esm2022/ui/tree/aril-ui-tree.mjs",
|
|
370
|
+
"default": "./fesm2022/aril-ui-tree.mjs"
|
|
371
|
+
},
|
|
372
372
|
"./ui/treeTable": {
|
|
373
373
|
"types": "./ui/treeTable/index.d.ts",
|
|
374
374
|
"esm2022": "./esm2022/ui/treeTable/aril-ui-treeTable.mjs",
|
|
@@ -399,18 +399,18 @@
|
|
|
399
399
|
"esm": "./esm2022/ui-business/enumPicker/aril-ui-business-enumPicker.mjs",
|
|
400
400
|
"default": "./fesm2022/aril-ui-business-enumPicker.mjs"
|
|
401
401
|
},
|
|
402
|
-
"./ui-business/multiple-ref-value": {
|
|
403
|
-
"types": "./ui-business/multiple-ref-value/index.d.ts",
|
|
404
|
-
"esm2022": "./esm2022/ui-business/multiple-ref-value/aril-ui-business-multiple-ref-value.mjs",
|
|
405
|
-
"esm": "./esm2022/ui-business/multiple-ref-value/aril-ui-business-multiple-ref-value.mjs",
|
|
406
|
-
"default": "./fesm2022/aril-ui-business-multiple-ref-value.mjs"
|
|
407
|
-
},
|
|
408
402
|
"./ui-business/image-viewer": {
|
|
409
403
|
"types": "./ui-business/image-viewer/index.d.ts",
|
|
410
404
|
"esm2022": "./esm2022/ui-business/image-viewer/aril-ui-business-image-viewer.mjs",
|
|
411
405
|
"esm": "./esm2022/ui-business/image-viewer/aril-ui-business-image-viewer.mjs",
|
|
412
406
|
"default": "./fesm2022/aril-ui-business-image-viewer.mjs"
|
|
413
407
|
},
|
|
408
|
+
"./ui-business/multiple-ref-value": {
|
|
409
|
+
"types": "./ui-business/multiple-ref-value/index.d.ts",
|
|
410
|
+
"esm2022": "./esm2022/ui-business/multiple-ref-value/aril-ui-business-multiple-ref-value.mjs",
|
|
411
|
+
"esm": "./esm2022/ui-business/multiple-ref-value/aril-ui-business-multiple-ref-value.mjs",
|
|
412
|
+
"default": "./fesm2022/aril-ui-business-multiple-ref-value.mjs"
|
|
413
|
+
},
|
|
414
414
|
"./ui-business/notification-templates-dialog": {
|
|
415
415
|
"types": "./ui-business/notification-templates-dialog/index.d.ts",
|
|
416
416
|
"esm2022": "./esm2022/ui-business/notification-templates-dialog/aril-ui-business-notification-templates-dialog.mjs",
|
|
@@ -441,18 +441,18 @@
|
|
|
441
441
|
"esm": "./esm2022/ui-business/userPicker/aril-ui-business-userPicker.mjs",
|
|
442
442
|
"default": "./fesm2022/aril-ui-business-userPicker.mjs"
|
|
443
443
|
},
|
|
444
|
-
"./util/custom_pages": {
|
|
445
|
-
"types": "./util/custom_pages/index.d.ts",
|
|
446
|
-
"esm2022": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
447
|
-
"esm": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
448
|
-
"default": "./fesm2022/aril-util-custom_pages.mjs"
|
|
449
|
-
},
|
|
450
444
|
"./util/block": {
|
|
451
445
|
"types": "./util/block/index.d.ts",
|
|
452
446
|
"esm2022": "./esm2022/util/block/aril-util-block.mjs",
|
|
453
447
|
"esm": "./esm2022/util/block/aril-util-block.mjs",
|
|
454
448
|
"default": "./fesm2022/aril-util-block.mjs"
|
|
455
449
|
},
|
|
450
|
+
"./util/custom_pages": {
|
|
451
|
+
"types": "./util/custom_pages/index.d.ts",
|
|
452
|
+
"esm2022": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
453
|
+
"esm": "./esm2022/util/custom_pages/aril-util-custom_pages.mjs",
|
|
454
|
+
"default": "./fesm2022/aril-util-custom_pages.mjs"
|
|
455
|
+
},
|
|
456
456
|
"./util/init-event": {
|
|
457
457
|
"types": "./util/init-event/index.d.ts",
|
|
458
458
|
"esm2022": "./esm2022/util/init-event/aril-util-init-event.mjs",
|
|
@@ -477,17 +477,23 @@
|
|
|
477
477
|
"esm": "./esm2022/util/pipes/aril-util-pipes.mjs",
|
|
478
478
|
"default": "./fesm2022/aril-util-pipes.mjs"
|
|
479
479
|
},
|
|
480
|
+
"./util/primitive-extensions": {
|
|
481
|
+
"types": "./util/primitive-extensions/index.d.ts",
|
|
482
|
+
"esm2022": "./esm2022/util/primitive-extensions/aril-util-primitive-extensions.mjs",
|
|
483
|
+
"esm": "./esm2022/util/primitive-extensions/aril-util-primitive-extensions.mjs",
|
|
484
|
+
"default": "./fesm2022/aril-util-primitive-extensions.mjs"
|
|
485
|
+
},
|
|
480
486
|
"./util/pub-sub": {
|
|
481
487
|
"types": "./util/pub-sub/index.d.ts",
|
|
482
488
|
"esm2022": "./esm2022/util/pub-sub/aril-util-pub-sub.mjs",
|
|
483
489
|
"esm": "./esm2022/util/pub-sub/aril-util-pub-sub.mjs",
|
|
484
490
|
"default": "./fesm2022/aril-util-pub-sub.mjs"
|
|
485
491
|
},
|
|
486
|
-
"./util/
|
|
487
|
-
"types": "./util/
|
|
488
|
-
"esm2022": "./esm2022/util/
|
|
489
|
-
"esm": "./esm2022/util/
|
|
490
|
-
"default": "./fesm2022/aril-util-
|
|
492
|
+
"./util/unwrap": {
|
|
493
|
+
"types": "./util/unwrap/index.d.ts",
|
|
494
|
+
"esm2022": "./esm2022/util/unwrap/aril-util-unwrap.mjs",
|
|
495
|
+
"esm": "./esm2022/util/unwrap/aril-util-unwrap.mjs",
|
|
496
|
+
"default": "./fesm2022/aril-util-unwrap.mjs"
|
|
491
497
|
},
|
|
492
498
|
"./util/sync-active-tab-route": {
|
|
493
499
|
"types": "./util/sync-active-tab-route/index.d.ts",
|
|
@@ -495,11 +501,11 @@
|
|
|
495
501
|
"esm": "./esm2022/util/sync-active-tab-route/aril-util-sync-active-tab-route.mjs",
|
|
496
502
|
"default": "./fesm2022/aril-util-sync-active-tab-route.mjs"
|
|
497
503
|
},
|
|
498
|
-
"./
|
|
499
|
-
"types": "./
|
|
500
|
-
"esm2022": "./esm2022/
|
|
501
|
-
"esm": "./esm2022/
|
|
502
|
-
"default": "./fesm2022/aril-
|
|
504
|
+
"./boot/config/api": {
|
|
505
|
+
"types": "./boot/config/api/index.d.ts",
|
|
506
|
+
"esm2022": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
507
|
+
"esm": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
508
|
+
"default": "./fesm2022/aril-boot-config-api.mjs"
|
|
503
509
|
},
|
|
504
510
|
"./boot/config/apps": {
|
|
505
511
|
"types": "./boot/config/apps/index.d.ts",
|
|
@@ -513,12 +519,6 @@
|
|
|
513
519
|
"esm": "./esm2022/boot/config/plugins/aril-boot-config-plugins.mjs",
|
|
514
520
|
"default": "./fesm2022/aril-boot-config-plugins.mjs"
|
|
515
521
|
},
|
|
516
|
-
"./boot/config/api": {
|
|
517
|
-
"types": "./boot/config/api/index.d.ts",
|
|
518
|
-
"esm2022": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
519
|
-
"esm": "./esm2022/boot/config/api/aril-boot-config-api.mjs",
|
|
520
|
-
"default": "./fesm2022/aril-boot-config-api.mjs"
|
|
521
|
-
},
|
|
522
522
|
"./boot/config/translate": {
|
|
523
523
|
"types": "./boot/config/translate/index.d.ts",
|
|
524
524
|
"esm2022": "./esm2022/boot/config/translate/aril-boot-config-translate.mjs",
|