@o3r/configuration 14.1.0-prerelease.4 → 14.1.0-prerelease.6

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": "@o3r/configuration",
3
- "version": "14.1.0-prerelease.4",
3
+ "version": "14.1.0-prerelease.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -48,9 +48,9 @@
48
48
  "@angular/platform-browser-dynamic": "^21.0.0",
49
49
  "@ngrx/entity": "^21.0.0",
50
50
  "@ngrx/store": "^21.0.0",
51
- "@o3r/core": "~14.1.0-prerelease.4",
52
- "@o3r/logger": "~14.1.0-prerelease.4",
53
- "@o3r/schematics": "~14.1.0-prerelease.4",
51
+ "@o3r/core": "~14.1.0-prerelease.6",
52
+ "@o3r/logger": "~14.1.0-prerelease.6",
53
+ "@o3r/schematics": "~14.1.0-prerelease.6",
54
54
  "@schematics/angular": "^21.0.0",
55
55
  "cheerio": "^1.1.2",
56
56
  "express-interceptor": "^1.2.0",
@@ -86,7 +86,7 @@
86
86
  }
87
87
  },
88
88
  "dependencies": {
89
- "@o3r/schematics": "~14.1.0-prerelease.4",
89
+ "@o3r/schematics": "~14.1.0-prerelease.6",
90
90
  "tslib": "^2.6.2"
91
91
  },
92
92
  "engines": {
package/index.d.ts DELETED
@@ -1,570 +0,0 @@
1
- import { SetStateActionPayload, Serializer, Configuration, CustomConfig, DevtoolsCommonOptions, ContextualizationDevtoolsCommonOptions, OtterMessageContent, MessageDataTypes, ConnectContentMessage, RequestMessagesContentMessage, DevtoolsServiceInterface } from '@o3r/core';
2
- export { Configurable, Configuration, CustomConfig, DynamicConfigurable, DynamicConfigurableWithSignal } from '@o3r/core';
3
- import { Observable, Observer, Subject } from 'rxjs';
4
- import * as _ngrx_entity from '@ngrx/entity';
5
- import { EntityState, EntityAdapter, Dictionary } from '@ngrx/entity';
6
- import * as i0 from '@angular/core';
7
- import { InjectionToken, ModuleWithProviders, Signal, InputSignal } from '@angular/core';
8
- import * as _ngrx_store from '@ngrx/store';
9
- import { ActionReducer, Action, ReducerTypes, ActionCreator, Store } from '@ngrx/store';
10
- import * as i2 from '@o3r/logger';
11
- import * as _o3r_configuration from '@o3r/configuration';
12
-
13
- /**
14
- * Interface to define the error messages into component configuration
15
- */
16
- interface ErrorMessages {
17
- /**
18
- * Error message map
19
- */
20
- errorMessages: {
21
- [key: string]: string;
22
- };
23
- }
24
- /**
25
- * Interface to specify that the component has an ID
26
- */
27
- interface Identifiable {
28
- /**
29
- * Identifier
30
- */
31
- id: string;
32
- }
33
- /**
34
- * Get the component and library's names based on the configuration name
35
- * @param configurationName Name of the component as found in the store
36
- * @returns Object containing library and component name.
37
- */
38
- declare function parseConfigurationName(configurationName: string): {
39
- library?: string;
40
- libraryName?: string;
41
- componentName: string;
42
- } | undefined;
43
- /**
44
- * Operator to get the configuration from store for a given component and merge it with the global config
45
- * @param defaultValue Default value of the configuration
46
- */
47
- declare function getConfiguration<T extends Record<string, unknown>>(defaultValue: T): <C extends Partial<T>>(source: Observable<C | undefined>) => Observable<T>;
48
-
49
- /**
50
- * Property override model
51
- */
52
- interface PropertyOverride {
53
- [property: string]: any;
54
- }
55
- /**
56
- * ConfigOverride store state
57
- */
58
- interface ConfigOverrideState {
59
- /** Map of PropertyOverride indexed on component + config name */
60
- configOverrides: Record<string, PropertyOverride>;
61
- }
62
- /**
63
- * Name of the ConfigOverride Store
64
- */
65
- declare const CONFIG_OVERRIDE_STORE_NAME = "configOverride";
66
- /**
67
- * ConfigOverride Store Interface
68
- */
69
- interface ConfigOverrideStore {
70
- /** ConfigOverride state */
71
- [CONFIG_OVERRIDE_STORE_NAME]: ConfigOverrideState;
72
- }
73
-
74
- /**
75
- * Clear all overrides and fill the store with the payload
76
- */
77
- declare const setConfigOverride: _ngrx_store.ActionCreator<"[ConfigOverride] set", (props: SetStateActionPayload<ConfigOverrideState>) => SetStateActionPayload<ConfigOverrideState> & _ngrx_store.Action<"[ConfigOverride] set">>;
78
-
79
- /** Token of the ConfigOverride reducer */
80
- declare const CONFIG_OVERRIDE_REDUCER_TOKEN: InjectionToken<ActionReducer<ConfigOverrideState, Action<string>>>;
81
- /** Provide default reducer for ConfigOverride store */
82
- declare function getDefaultConfigOverrideReducer(): ActionReducer<ConfigOverrideState, Action<string>>;
83
- declare class ConfigOverrideStoreModule {
84
- static forRoot<T extends ConfigOverrideState>(reducerFactory: () => ActionReducer<T, Action>): ModuleWithProviders<ConfigOverrideStoreModule>;
85
- static ɵfac: i0.ɵɵFactoryDeclaration<ConfigOverrideStoreModule, never>;
86
- static ɵmod: i0.ɵɵNgModuleDeclaration<ConfigOverrideStoreModule, never, [typeof _ngrx_store.StoreFeatureModule], never>;
87
- static ɵinj: i0.ɵɵInjectorDeclaration<ConfigOverrideStoreModule>;
88
- }
89
-
90
- /**
91
- * ConfigOverride Store initial value
92
- */
93
- declare const configOverrideInitialState: ConfigOverrideState;
94
- /**
95
- * List of basic actions for ConfigOverride Store
96
- */
97
- declare const configOverrideReducerFeatures: ReducerTypes<ConfigOverrideState, ActionCreator[]>[];
98
- /**
99
- * ConfigOverride Store reducer
100
- */
101
- declare const configOverrideReducer: _ngrx_store.ActionReducer<ConfigOverrideState, _ngrx_store.Action<string>>;
102
-
103
- /** Select ConfigOverride State */
104
- declare const selectConfigOverrideState: _ngrx_store.MemoizedSelector<object, ConfigOverrideState, _ngrx_store.DefaultProjectorFn<ConfigOverrideState>>;
105
- /** Select the array of ConfigOverride */
106
- declare const selectConfigOverride: _ngrx_store.MemoizedSelector<object, Record<string, _o3r_configuration.PropertyOverride>, (s1: ConfigOverrideState) => Record<string, _o3r_configuration.PropertyOverride>>;
107
- /**
108
- * Get the override for given component identifier
109
- * @param componentId
110
- */
111
- declare const selectComponentOverrideConfig: (componentId: string) => _ngrx_store.MemoizedSelector<object, _o3r_configuration.PropertyOverride, (s1: Record<string, _o3r_configuration.PropertyOverride>) => _o3r_configuration.PropertyOverride>;
112
-
113
- /**
114
- * Deserializer
115
- * @param rawObject
116
- */
117
- declare const configOverrideStorageDeserializer: (rawObject: any) => any;
118
- declare const configOverrideStorageSync: Serializer<ConfigOverrideState>;
119
-
120
- interface SetConfigurationEntitiesPayload {
121
- /** Map of configurations to update/insert, this is now Partial due the change of Configuration interface */
122
- entities: {
123
- [id: string]: Partial<Configuration>;
124
- };
125
- }
126
- interface UpsertConfigurationEntityPayload {
127
- /** ID of the item */
128
- id: string;
129
- /** Updated/New configuration object */
130
- configuration: Partial<Configuration>;
131
- }
132
- interface UpdateConfigurationEntityPayload {
133
- /** ID of the item */
134
- id: string;
135
- /** Updated/New configuration partial object */
136
- configuration: Partial<Configuration>;
137
- }
138
- /**
139
- * Upsert one configuration entity
140
- */
141
- declare const upsertConfigurationEntity: _ngrx_store.ActionCreator<"[Configuration] set configuration entity", (props: UpsertConfigurationEntityPayload) => UpsertConfigurationEntityPayload & _ngrx_store.Action<"[Configuration] set configuration entity">>;
142
- /**
143
- * Update one configuration entity
144
- */
145
- declare const updateConfigurationEntity: _ngrx_store.ActionCreator<"[Configuration] update configuration entity", (props: UpdateConfigurationEntityPayload) => UpdateConfigurationEntityPayload & _ngrx_store.Action<"[Configuration] update configuration entity">>;
146
- /**
147
- * Clear all configuration and fill the store with the payload
148
- */
149
- declare const setConfigurationEntities: _ngrx_store.ActionCreator<"[Configuration] set entities", (props: SetConfigurationEntitiesPayload) => SetConfigurationEntitiesPayload & _ngrx_store.Action<"[Configuration] set entities">>;
150
- /**
151
- * Update configuration with known IDs, ignore the new ones
152
- */
153
- declare const updateConfigurationEntities: _ngrx_store.ActionCreator<"[Configuration] update entities", (props: SetConfigurationEntitiesPayload) => SetConfigurationEntitiesPayload & _ngrx_store.Action<"[Configuration] update entities">>;
154
- /**
155
- * Update configuration with known IDs, insert the new ones
156
- */
157
- declare const upsertConfigurationEntities: _ngrx_store.ActionCreator<"[Configuration] upsert entities", (props: SetConfigurationEntitiesPayload) => SetConfigurationEntitiesPayload & _ngrx_store.Action<"[Configuration] upsert entities">>;
158
- /**
159
- * Clear only the entities, keeps the other attributes in the state
160
- */
161
- declare const clearConfigurationEntities: _ngrx_store.ActionCreator<"[Configuration] clear entities", () => _ngrx_store.Action<"[Configuration] clear entities">>;
162
-
163
- /**
164
- * compute the configuration into SetEntitiesPayload
165
- * @param customConfigObject array of configurations
166
- */
167
- declare function computeConfiguration<T extends Configuration>(customConfigObject: CustomConfig<T>[]): SetConfigurationEntitiesPayload;
168
-
169
- /**
170
- * Configuration model
171
- */
172
- interface ConfigurationModel extends Configuration {
173
- id: string;
174
- }
175
- /**
176
- * Configuration store state
177
- */
178
- interface ConfigurationState extends EntityState<ConfigurationModel> {
179
- }
180
- /**
181
- * Name of the Configuration Store
182
- */
183
- declare const CONFIGURATION_STORE_NAME = "configuration";
184
- /**
185
- * Configuration Store Interface
186
- */
187
- interface ConfigurationStore {
188
- /** Configuration state */
189
- [CONFIGURATION_STORE_NAME]: ConfigurationState;
190
- }
191
- /**
192
- * ID of the global configuration
193
- */
194
- declare const globalConfigurationId = "global";
195
-
196
- /** Token of the Configuration reducer */
197
- declare const CONFIGURATION_REDUCER_TOKEN: InjectionToken<ActionReducer<ConfigurationState, Action<string>>>;
198
- /** Provide default reducer for Configuration store */
199
- declare function getDefaultConfigurationReducer(): ActionReducer<ConfigurationState, Action<string>>;
200
- declare class ConfigurationStoreModule {
201
- static forRoot<T extends ConfigurationState>(reducerFactory: () => ActionReducer<T, Action>): ModuleWithProviders<ConfigurationStoreModule>;
202
- static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationStoreModule, never>;
203
- static ɵmod: i0.ɵɵNgModuleDeclaration<ConfigurationStoreModule, never, [typeof _ngrx_store.StoreFeatureModule], never>;
204
- static ɵinj: i0.ɵɵInjectorDeclaration<ConfigurationStoreModule>;
205
- }
206
-
207
- /**
208
- * Configuration Store adapter
209
- */
210
- declare const configurationAdapter: EntityAdapter<ConfigurationModel>;
211
- /**
212
- * Configuration Store initial value
213
- */
214
- declare const configurationInitialState: ConfigurationState;
215
- /**
216
- * List of basic actions for Configuration Store
217
- */
218
- declare const configurationReducerFeatures: ReducerTypes<ConfigurationState, ActionCreator[]>[];
219
- /**
220
- * Configuration Store reducer
221
- */
222
- declare const configurationReducer: _ngrx_store.ActionReducer<ConfigurationState, _ngrx_store.Action<string>>;
223
-
224
- /**
225
- * Select Configuration State
226
- * Note: the usage of createSelector is to avoid warning printing because of potentially undefined feature store
227
- */
228
- declare const selectConfigurationState: _ngrx_store.MemoizedSelector<{
229
- configuration: ConfigurationState;
230
- }, ConfigurationState | undefined, (state: ConfigurationState | undefined) => ConfigurationState | undefined>;
231
- /** Select the array of Configuration ids */
232
- declare const selectConfigurationIds: _ngrx_store.MemoizedSelector<{
233
- configuration: ConfigurationState;
234
- }, string[] | number[], (s1: ConfigurationState | undefined) => string[] | number[]>;
235
- /** Select the array of Configuration */
236
- declare const selectAllConfiguration: _ngrx_store.MemoizedSelector<{
237
- configuration: ConfigurationState;
238
- }, _o3r_configuration.ConfigurationModel[], (s1: ConfigurationState | undefined) => _o3r_configuration.ConfigurationModel[]>;
239
- /** Select the dictionary of Configuration entities */
240
- declare const selectConfigurationEntities: _ngrx_store.MemoizedSelector<{
241
- configuration: ConfigurationState;
242
- }, _ngrx_entity.Dictionary<_o3r_configuration.ConfigurationModel>, (s1: ConfigurationState | undefined) => _ngrx_entity.Dictionary<_o3r_configuration.ConfigurationModel>>;
243
- /** Select the total Configuration count */
244
- declare const selectConfigurationTotal: _ngrx_store.MemoizedSelector<{
245
- configuration: ConfigurationState;
246
- }, number, (s1: ConfigurationState | undefined) => number>;
247
- /**
248
- * Select the configuration for component with id
249
- * @param props property of the selector
250
- * @param props.id id of the component
251
- */
252
- declare const selectConfigurationForComponent: <T extends Configuration>(props: {
253
- id: string;
254
- }) => _ngrx_store.MemoizedSelector<{
255
- configuration: ConfigurationState;
256
- }, T, (s1: _ngrx_entity.Dictionary<_o3r_configuration.ConfigurationModel>) => T>;
257
- /**
258
- * Select the global configuration
259
- */
260
- declare const selectGlobalConfiguration: _ngrx_store.MemoizedSelector<{
261
- configuration: ConfigurationState;
262
- }, Configuration, (s1: Configuration) => Configuration>;
263
-
264
- declare const configurationStorageSync: {
265
- deserialize: (rawObject: any) => ConfigurationState;
266
- };
267
-
268
- /** Option for Configuration devtools service */
269
- interface ConfigurationDevtoolsServiceOptions extends DevtoolsCommonOptions, ContextualizationDevtoolsCommonOptions {
270
- /**
271
- * Default library name to use if not specified in the function call
272
- * @default `@o3r/components`
273
- */
274
- defaultLibraryName: string;
275
- /**
276
- * Default JSON file name if not specified in the function
277
- * @default partial-static-config.json
278
- */
279
- defaultJsonFilename: string;
280
- }
281
- interface ConfigurationsMessage extends OtterMessageContent<'configurations'> {
282
- /** Configurations */
283
- configurations: Dictionary<ConfigurationModel>;
284
- }
285
- interface UpdateConfigMessage extends OtterMessageContent<'updateConfig'> {
286
- /** Configuration ID */
287
- id: string;
288
- /** Configuration value */
289
- configValue: any;
290
- }
291
- type ConfigurationMessageContents = ConfigurationsMessage | UpdateConfigMessage;
292
- /** List of possible DataTypes for Configuration messages */
293
- type ConfigurationMessageDataTypes = MessageDataTypes<ConfigurationMessageContents>;
294
- /** List of all messages for configuration purpose */
295
- type AvailableConfigurationMessageContents = ConfigurationMessageContents | ConnectContentMessage | RequestMessagesContentMessage<ConfigurationMessageDataTypes>;
296
- /**
297
- * Determine if the given message is a Configuration message
298
- * @param message message to check
299
- */
300
- declare const isConfigurationMessage: (message: any) => message is AvailableConfigurationMessageContents;
301
- /**
302
- * Contextualization devtools exposed for configuration in CMS integration
303
- */
304
- interface ConfigurationContextualizationDevtools {
305
- /**
306
- * Replace N configurations in one shot
307
- * @param configs array of configurations to update
308
- */
309
- updateConfigurations: (configurations: CustomConfig<Configuration>[]) => void;
310
- }
311
-
312
- declare class ConfigurationDevtoolsConsoleService implements DevtoolsServiceInterface, ConfigurationContextualizationDevtools {
313
- /** Name of the Window property to access to the devtools */
314
- static readonly windowModuleName = "configuration";
315
- private readonly configurationDevtools;
316
- private readonly options;
317
- constructor();
318
- private downloadJSON;
319
- private copyElementToClipboard;
320
- /**
321
- * Set a specified value of a component configuration
322
- * @param selector Selector for a component configuration
323
- * @param configProperty Name of the configuration property to set
324
- * @param configValue Value of the configuration property to set
325
- */
326
- setDynamicConfig(selector: string | {
327
- library?: string;
328
- componentName: string;
329
- }, configProperty: string, configValue: any): void;
330
- /** @inheritDoc */
331
- activate(): void;
332
- /**
333
- * Display the list of configurations loaded in the store and the library they originate from
334
- * @returns array with the configurations and libraries for example: ["LibComponentsCommonRuntimeConfig from @my-lib/shared-common"]
335
- */
336
- displayComponentsWithConfiguration(): Promise<void>;
337
- /**
338
- * Display the configuration for a specific component
339
- * @param selector Selector for a component configuration. It can be a string in the form library#configurationName (i.e: '@my-lib/shared-components#HeaderContConfig')
340
- * or an object with the configuration and library names (i.e: {library:"@my-lib/shared-components", componentName:'HeaderContConfig'}).
341
- * Note the object input componentName expects a configuration name not a component name.
342
- * @returns Configuration object (i.e: {airlineLogoPath: "img/airlines/icon-BH.svg", displayLanguageSelector: false})
343
- */
344
- displayCurrentConfigurationFor(selector: string | {
345
- library?: string;
346
- componentName: string;
347
- }): Promise<void>;
348
- /**
349
- * Download the JSON file of the whole configuration
350
- * @param fileName Name of the file to download
351
- */
352
- saveConfiguration(fileName?: string): Promise<void>;
353
- /**
354
- * Display the whole configuration of the application
355
- */
356
- displayConfiguration(): Promise<void>;
357
- /**
358
- * Display a bookmark to generate the current configuration
359
- */
360
- displayConfigurationBookmark(): Promise<void>;
361
- /**
362
- * Copy the whole configuration to the clipboard
363
- */
364
- copyConfigurationToClipboard(): Promise<void>;
365
- /**
366
- * Replace N configurations in one shot
367
- * @param configurations array of configurations to update
368
- */
369
- updateConfigurations(configurations: string | CustomConfig<Configuration>[]): void;
370
- static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationDevtoolsConsoleService, never>;
371
- static ɵprov: i0.ɵɵInjectableDeclaration<ConfigurationDevtoolsConsoleService>;
372
- }
373
-
374
- declare class ConfigurationDevtoolsMessageService implements DevtoolsServiceInterface {
375
- private readonly store;
376
- private readonly logger;
377
- private readonly configurationDevtools;
378
- private readonly options;
379
- private readonly sendMessage;
380
- private readonly destroyRef;
381
- constructor();
382
- private sendCurrentConfigurationState;
383
- /**
384
- * Function to trigger a re-send a requested messages to the Otter Chrome DevTools extension
385
- * @param only restricted list of messages to re-send
386
- */
387
- private handleReEmitRequest;
388
- /**
389
- * Function to handle the incoming messages from Otter Chrome DevTools extension
390
- * @param message message coming from the Otter Chrome DevTools extension
391
- */
392
- private handleEvents;
393
- /**
394
- * Function to connect the plugin to the Otter DevTools extension
395
- */
396
- private connectPlugin;
397
- /** @inheritDoc */
398
- activate(): void;
399
- static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationDevtoolsMessageService, never>;
400
- static ɵprov: i0.ɵɵInjectableDeclaration<ConfigurationDevtoolsMessageService>;
401
- }
402
-
403
- declare class ConfigurationDevtoolsModule {
404
- /**
405
- * Initialize Otter Devtools
406
- * @param options
407
- */
408
- static instrument(options: Partial<ConfigurationDevtoolsServiceOptions>): ModuleWithProviders<ConfigurationDevtoolsModule>;
409
- static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationDevtoolsModule, never>;
410
- static ɵmod: i0.ɵɵNgModuleDeclaration<ConfigurationDevtoolsModule, never, [typeof _ngrx_store.StoreModule, typeof ConfigurationStoreModule], never>;
411
- static ɵinj: i0.ɵɵInjectorDeclaration<ConfigurationDevtoolsModule>;
412
- }
413
-
414
- declare class OtterConfigurationDevtools {
415
- protected store: Store<ConfigurationStore>;
416
- private readonly appRef;
417
- private readonly options;
418
- /** Stream of configurations */
419
- readonly configurationEntities$: Observable<CustomConfig[]>;
420
- constructor();
421
- /**
422
- * Get configuration name based on input information
423
- * @param selector Selector for a component configuration. It can be a string in the form library#componentName (i.e: @my-lib/shared-components#HeaderContComponent)
424
- * or an object with the component and library names (i.e: {library:"@my-lib/shared-components", componentName:'HeaderContComponent'})
425
- * @param isFallbackName Determine if the name requested is a fallback name
426
- * @returns string in the format library#componentName (i.e: "@my-lib/shared-components#HeaderContComponent")
427
- */
428
- getComponentConfigName(selector: string | {
429
- library?: string;
430
- componentName: string;
431
- }, isFallbackName?: boolean): string;
432
- /**
433
- * Get the list of components which have a configuration loaded in the store
434
- */
435
- getComponentsWithConfiguration(): Promise<string[]>;
436
- /**
437
- * Set a specified value of a component configuration
438
- * @param selector Selector for a component configuration
439
- * @param configProperty Name of the configuration property to set
440
- * @param configValue Value of the configuration property to set
441
- */
442
- setDynamicConfig(selector: string | {
443
- library?: string;
444
- componentName: string;
445
- }, configProperty: string, configValue: any): void;
446
- /**
447
- * Get the configuration for a specific component
448
- * @param selector Selector for a component configuration. It can be a string in the form library#configurationName (i.e: @my-lib/shared-components#HeaderPresConfig)
449
- * or an object with the configuration and library names (i.e: {library:"@my-lib/shared-components", componentName:'HeaderPresConfig'})
450
- */
451
- getCurrentConfigurationFor(selector: string | {
452
- library?: string;
453
- componentName: string;
454
- }): Promise<Configuration>;
455
- /**
456
- * Get the whole configuration of the application
457
- */
458
- getConfiguration(): Promise<CustomConfig<Partial<Configuration>>[]>;
459
- /**
460
- * Load a json configuration
461
- * @param configurations configurations to load
462
- */
463
- loadConfiguration(configurations: string | CustomConfig<Configuration>[]): void;
464
- static ɵfac: i0.ɵɵFactoryDeclaration<OtterConfigurationDevtools, never>;
465
- static ɵprov: i0.ɵɵInjectableDeclaration<OtterConfigurationDevtools>;
466
- }
467
-
468
- declare const OTTER_CONFIGURATION_DEVTOOLS_DEFAULT_OPTIONS: Readonly<ConfigurationDevtoolsServiceOptions>;
469
- declare const OTTER_CONFIGURATION_DEVTOOLS_OPTIONS: InjectionToken<ConfigurationDevtoolsServiceOptions>;
470
-
471
- declare class ConfigurationBaseServiceModule {
472
- static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationBaseServiceModule, never>;
473
- static ɵmod: i0.ɵɵNgModuleDeclaration<ConfigurationBaseServiceModule, never, [typeof ConfigurationStoreModule, typeof i2.LoggerModule], never>;
474
- static ɵinj: i0.ɵɵInjectorDeclaration<ConfigurationBaseServiceModule>;
475
- }
476
-
477
- /**
478
- * Configuration service
479
- */
480
- declare class ConfigurationBaseService {
481
- private readonly store;
482
- private readonly extendedConfiguration;
483
- /**
484
- * Update a specific component config or add it to the store if does not exist
485
- * @param configuration to edit/add
486
- * @param configurationId Configuration ID
487
- */
488
- upsertConfiguration<T extends Configuration>(configuration: T, configurationId?: string): void;
489
- /**
490
- * Update a specific component config
491
- * @param configuration Partial config to edit
492
- * @param configurationId Configuration ID
493
- */
494
- updateConfiguration<T extends Partial<Configuration>>(configuration: T, configurationId?: string): void;
495
- /**
496
- * This function will get the configuration stored in the data attribute of the html's body tag
497
- * @param configTagName Value used to identify the data attribute where the config is pushed in the index.html
498
- */
499
- getConfigFromBodyTag<T extends Configuration>(configTagName?: string): void;
500
- /**
501
- * Transform the custom configuration in store configuration model
502
- * @param customConfigObject Configuration object (extracted from body tag for static config or downloaded in case of dynamic config)
503
- */
504
- computeConfiguration<T extends Configuration>(customConfigObject: CustomConfig<T>[]): void;
505
- /**
506
- * Complete a stored configuration by adding the missing fields
507
- * @param extension Configuration extension to be included in the store
508
- * @param configurationId Configuration ID to extend
509
- * @param forceUpdate Force update the configuration in the store
510
- */
511
- extendConfiguration<T extends Configuration>(extension: T, configurationId?: string, forceUpdate?: boolean): void;
512
- /**
513
- * Operator to get the configuration from store for a given component and merge it with the global config
514
- * @param id Id of the component
515
- * @param defaultValue Default value of the configuration
516
- */
517
- getComponentConfig<T extends Configuration>(id: string, defaultValue: T): (source: Observable<Partial<T> | undefined>) => Observable<T>;
518
- /**
519
- * Get an observable of the configuration from store for a given component and merge it with the global config + the config overrides from the rules engine
520
- * @param id Id of the component
521
- */
522
- getConfig<T extends Configuration>(id: string): Observable<T>;
523
- static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationBaseService, never>;
524
- static ɵprov: i0.ɵɵInjectableDeclaration<ConfigurationBaseService>;
525
- }
526
-
527
- /**
528
- * Decorator to identify the component's configuration
529
- */
530
- declare function O3rConfig(): (target: any, key: string) => void;
531
-
532
- declare class ConfigurationObserver<T extends Configuration> implements Observer<Partial<T> | undefined>, Pick<Subject<T>, 'asObservable'> {
533
- /** Configuration ID */
534
- configId: string;
535
- /** Inner observable */
536
- private readonly observable;
537
- /** Inner subscriber */
538
- private readonly subscriber;
539
- /** @inheritdoc */
540
- closed?: boolean;
541
- constructor(
542
- /** Configuration ID */
543
- configId: string, defaultConfig: T, configurationService?: ConfigurationBaseService);
544
- /** @inheritdoc */
545
- next(value?: Partial<T>): void;
546
- /** @inheritdoc */
547
- error(err: any): void;
548
- /** @inheritdoc */
549
- complete(): void;
550
- /**
551
- * @inheritdoc
552
- */
553
- asObservable(): Observable<T>;
554
- }
555
-
556
- /** Configuration signal */
557
- type ConfigurationSignal<T> = Signal<T> & {
558
- configId: string;
559
- };
560
- /**
561
- * Get a configuration signal
562
- * @param configInput
563
- * @param configId
564
- * @param defaultConfig
565
- */
566
- declare function configSignal<T extends Configuration>(configInput: InputSignal<Partial<T> | undefined>, configId: string, defaultConfig: T): ConfigurationSignal<T>;
567
-
568
- export { CONFIGURATION_REDUCER_TOKEN, CONFIGURATION_STORE_NAME, CONFIG_OVERRIDE_REDUCER_TOKEN, CONFIG_OVERRIDE_STORE_NAME, ConfigOverrideStoreModule, ConfigurationBaseService, ConfigurationBaseServiceModule, ConfigurationDevtoolsConsoleService, ConfigurationDevtoolsMessageService, ConfigurationDevtoolsModule, ConfigurationObserver, ConfigurationStoreModule, O3rConfig, OTTER_CONFIGURATION_DEVTOOLS_DEFAULT_OPTIONS, OTTER_CONFIGURATION_DEVTOOLS_OPTIONS, OtterConfigurationDevtools, clearConfigurationEntities, computeConfiguration, configOverrideInitialState, configOverrideReducer, configOverrideReducerFeatures, configOverrideStorageDeserializer, configOverrideStorageSync, configSignal, configurationAdapter, configurationInitialState, configurationReducer, configurationReducerFeatures, configurationStorageSync, getConfiguration, getDefaultConfigOverrideReducer, getDefaultConfigurationReducer, globalConfigurationId, isConfigurationMessage, parseConfigurationName, selectAllConfiguration, selectComponentOverrideConfig, selectConfigOverride, selectConfigOverrideState, selectConfigurationEntities, selectConfigurationForComponent, selectConfigurationIds, selectConfigurationState, selectConfigurationTotal, selectGlobalConfiguration, setConfigOverride, setConfigurationEntities, updateConfigurationEntities, updateConfigurationEntity, upsertConfigurationEntities, upsertConfigurationEntity };
569
- export type { AvailableConfigurationMessageContents, ConfigOverrideState, ConfigOverrideStore, ConfigurationContextualizationDevtools, ConfigurationDevtoolsServiceOptions, ConfigurationMessageDataTypes, ConfigurationModel, ConfigurationSignal, ConfigurationState, ConfigurationStore, ConfigurationsMessage, ErrorMessages, Identifiable, PropertyOverride, SetConfigurationEntitiesPayload, UpdateConfigMessage, UpdateConfigurationEntityPayload, UpsertConfigurationEntityPayload };
570
- //# sourceMappingURL=index.d.ts.map
package/index.d.ts.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sources":["../src/core/configuration.ts","../src/stores/config-override/config-override.state.ts","../src/stores/config-override/config-override.actions.ts","../src/stores/config-override/config-override-module.ts","../src/stores/config-override/config-override.reducer.ts","../src/stores/config-override/config-override.selectors.ts","../src/stores/config-override/config-override.sync.ts","../src/stores/configuration/configuration.actions.ts","../src/stores/configuration/configuration.helpers.ts","../src/stores/configuration/configuration.state.ts","../src/stores/configuration/configuration-module.ts","../src/stores/configuration/configuration.reducer.ts","../src/stores/configuration/configuration.selectors.ts","../src/stores/configuration/configuration.sync.ts","../src/devkit/configuration-devtools-interface.ts","../src/devkit/configuration-devtools-console-service.ts","../src/devkit/configuration-devtools-message-service.ts","../src/devkit/configuration-devtools-module.ts","../src/devkit/configuration-devtools.ts","../src/devkit/configuration-devtools-token.ts","../src/services/configuration/configuration-base-module.ts","../src/services/configuration/configuration-base-service.ts","../src/tools/configuration-decorators.ts","../src/tools/configuration-observer.ts","../src/tools/configuration-signal.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":[],"mappings":";;;;;;;;;;;;AAYA;;AAEG;;AAED;;AAEG;AACH;AAAiB;;AAClB;AAED;;AAEG;;AAED;;AAEG;;AAEJ;AAED;;;;AAIG;AACH,iBAAA,sBAAA;;;;AAAoI;AAUpI;;;AAGG;AACH,iBAAA,gBAAA,WAAA,MAAA,gDAAA,OAAA,aAAA,UAAA,oBAAA,UAAA;;ACnDA;;AAEG;;AAED;AACD;AAED;;AAEG;;;AAGD,qBAAA,MAAA,SAAA,gBAAA;AACD;AAED;;AAEG;AACH,cAAA,0BAAA;AAEA;;AAEG;;;AAGD,KAAA,0BAAA,GAAA,mBAAA;AACD;;ACZD;;AAEG;AACH,cAAA,iBAAA,EAA8B,WAAA,2IAAA,WAAA,CAAA,MAAA;;ACC9B;AACA,cAAA,6BAAA,EAAA,cAAA,CAAA,aAAA,CAAA,mBAAA,EAAA,MAAA;AAEA;AACA,iBAAA,+BAAA,IAAA,aAAA,CAAA,mBAAA,EAAA,MAAA;AAIA,cAAA,yBAAA;AASgB,6BAAA,mBAAA,wBAAA,aAAA,IAAA,MAAA,IAAA,mBAAA,CAAA,yBAAA;;;;AAQf;;AChCD;;AAEG;AACH,cAAA,0BAAA,EAAA,mBAAA;AAEA;;AAEG;AACH,cAAA,6BAAA,EAAA,YAAA,CAAA,mBAAA,EAAA,aAAA;AAIA;;AAEG;AACH,cAAA,qBAAA,EAAkC,WAAA,oCAAA,WAAA,CAAA,MAAA;;ACjBlC;AACA,cAAA,yBAAA,EAAsC,WAAA,+CAAA,WAAA,CAAA,kBAAA,CAAA,mBAAA;AAEtC;AACA,cAAA,oBAAA,EAAiC,WAAA,CAAA,gBAAA,SAAA,MAAA,SAAA,kBAAA,CAAA,gBAAA,QAAA,mBAAA,KAAA,MAAA,SAAA,kBAAA,CAAA,gBAAA;AAEjC;;;AAGG;AACH,cAAA,6BAAA;;ACTA;;;AAGG;AACH,cAAA,iCAAA;AAOA,cAAA,yBAAA,EAAA,UAAA,CAAA,mBAAA;;;;ACXE;;;AACD;;;;;AAMC,mBAAA,OAAA,CAAA,aAAA;AACD;;;;;AAMC,mBAAA,OAAA,CAAA,aAAA;AACD;AAUD;;AAEG;AACH,cAAA,yBAAA,EAAsC,WAAA,2IAAA,WAAA,CAAA,MAAA;AAEtC;;AAEG;AACH,cAAA,yBAAA,EAAsC,WAAA,8IAAA,WAAA,CAAA,MAAA;AAEtC;;AAEG;AACH,cAAA,wBAAA,EAAqC,WAAA,6HAAA,WAAA,CAAA,MAAA;AAErC;;AAEG;AACH,cAAA,2BAAA,EAAwC,WAAA,gIAAA,WAAA,CAAA,MAAA;AAExC;;AAEG;AACH,cAAA,2BAAA,EAAwC,WAAA,gIAAA,WAAA,CAAA,MAAA;AAExC;;AAEG;AACH,cAAA,0BAAA,EAAuC,WAAA,uDAAA,WAAA,CAAA,MAAA;;ACpDvC;;;AAGG;AACH,iBAAA,oBAAA,WAAA,aAAA,sBAAA,YAAA,QAAA,+BAAA;;ACRA;;AAEG;AACG,UAAA,kBAAA,SAAA,aAAA;;AAEL;AAED;;AAEG;;AAEF;AAED;;AAEG;AACH,cAAA,wBAAA;AAEA;;AAEG;;;AAGD,KAAA,wBAAA,GAAA,kBAAA;AACD;AAED;;AAEG;AACH,cAAA,qBAAA;;AClBA;AACA,cAAA,2BAAA,EAAA,cAAA,CAAA,aAAA,CAAA,kBAAA,EAAA,MAAA;AAEA;AACA,iBAAA,8BAAA,IAAA,aAAA,CAAA,kBAAA,EAAA,MAAA;AAIA,cAAA,wBAAA;AASgB,6BAAA,kBAAA,wBAAA,aAAA,IAAA,MAAA,IAAA,mBAAA,CAAA,wBAAA;;;;AAQf;;AC3BD;;AAEG;AACH,cAAA,oBAAA,EAAA,aAAA,CAAA,kBAAA;AAIA;;AAEG;AACH,cAAA,yBAAA,EAAA,kBAAA;AAEA;;AAEG;AACH,cAAA,4BAAA,EAAA,YAAA,CAAA,kBAAA,EAAA,aAAA;AAiBA;;AAEG;AACH,cAAA,oBAAA,EAAiC,WAAA,mCAAA,WAAA,CAAA,MAAA;;AClCjC;;;AAGG;AACH,cAAA,wBAAA,EAAqC,WAAA,CAAA,gBAAA;;;AAKrC;AACA,cAAA,sBAAA,EAAmC,WAAA,CAAA,gBAAA;;;AAEnC;AACA,cAAA,sBAAA,EAAmC,WAAA,CAAA,gBAAA;;;AAEnC;AACA,cAAA,2BAAA,EAAwC,WAAA,CAAA,gBAAA;;;AAExC;AACA,cAAA,wBAAA,EAAqC,WAAA,CAAA,gBAAA;;;AAErC;;;;AAIG;AACH,cAAA,+BAAA,aAAA,aAAA;;AAA8F,MAAA,WAAA,CAAA,gBAAA;;;AAG9F;;AAEG;AACH,cAAA,yBAAA,EAAsC,WAAA,CAAA,gBAAA;;;;ACzCtC,cAAA,wBAAA;;;;ACSA;AACM,UAAA,mCAAA,SAAA,qBAAA,EAAA,sCAAA;AACJ;;;AAGG;;AAEH;;;AAGG;;AAEJ;;;AAIC,oBAAA,UAAA,CAAA,kBAAA;AACD;;;;;;AAOA;AAED,KAAA,4BAAA,GAAA,qBAAA,GAAA,mBAAA;AAGA;;AAGA;AACM,KAAA,qCAAA,GAAA,4BAAA,GAAA,qBAAA,GAAA,6BAAA,CAAA,6BAAA;AAIN;;;AAGG;AACH,cAAA,sBAAA,+BAAA,qCAAA;AAQA;;AAEG;;AAED;;;AAGG;;AAEJ;;AChDD,cAAA,mCAAA,YAAA,wBAAA,EAAA,sCAAA;;AAKE;AAEA;AACA;;AAkBA;AAQA;AASA;;;;;AAKG;AACI;;;;;;AAaP;;;AAGG;;AAMH;;;;;;AAMG;AACU;;;AAA6F,QAAA,OAAA;AAK1G;;;AAGG;;AAMH;;AAEG;;AAMH;;AAEG;;AAQH;;AAEG;;AAMH;;;AAGG;;;;AAIJ;;AC9GD,cAAA,mCAAA,YAAA,wBAAA;AAIE;AACA;AACA;AACA;AAEA;AACA;;;AAmBA;;;AAGG;AACH;AAMA;;;AAGG;;AA0BH;;AAEG;AACH;;;;;AAiBD;;ACvGD,cAAA,2BAAA;AAaE;;;AAGG;;;;;AAYJ;;ACZD,cAAA,0BAAA;;AAGE;AACA;;AAGA,qCAAA,UAAA,CAAA,YAAA;;AAuBA;;;;;;AAMG;AACI;;;AAAqF;AAU5F;;AAEG;AACI,sCAAA,OAAA;AAcP;;;;;AAKG;AACI;;;;AAUP;;;;AAIG;AACI;;;;AAcP;;AAEG;;AAKH;;;AAGG;;;;AAKJ;;ACtJD,cAAA,4CAAA,EAAA,QAAA,CAAA,mCAAA;AAOA,cAAA,oCAAA,EAAA,cAAA,CAAA,mCAAA;;ACJA,cAAA,8BAAA;;;;AAG8C;;ACgC9C;;AAEG;AACH,cAAA,wBAAA;AAIE;AAEA;AAEA;;;;AAIG;;AAKH;;;;AAIG;AACI,kCAAA,OAAA,CAAA,aAAA;AAIP;;;AAGG;AACI,mCAAA,aAAA;AAQP;;;AAGG;;AAKH;;;;;AAKG;AACI,kCAAA,aAAA;AAYP;;;;AAIG;;AAgBH;;;AAGG;AACI,wBAAA,aAAA,eAAA,UAAA;;;AAUR;;ACnHD;;AAEG;AAEH,iBAAA,SAAA;;AChBA,cAAA,qBAAA,WAAA,aAAA,aAAA,QAAA,CAAA,OAAA,kBAAA,IAAA,CAAA,OAAA;;AAYW;;AAVT;;AAGA;;;;;;;;;AA4BO;;AAMA;AAKP;;AAEG;AACI,oBAAA,UAAA;AAGR;;AC/CD;AACM,KAAA,mBAAA,MAAA,MAAA;;;AAEN;;;;;AAKG;AACH,iBAAA,YAAA,WAAA,aAAA,eAAA,WAAA,CAAA,OAAA,uDAAA,mBAAA;;;;"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"bootstrap-config-middleware.js","sourceRoot":"","sources":["../../middlewares/bootstrap-config-middleware.ts"],"names":[],"mappings":";;;AAAA,oGAAoG;AACpG,aAAa;AACb,mCAAmC;AACnC,6GAA6G;AAC7G,aAAa;AACb,0DAA0D;AAE1D;;GAEG;AACI,MAAM,yBAAyB,GAAG,GAAG,EAAE,CAAC,kBAAkB,CAAC,CAAC,IAA0B,EAAE,GAAyB,EAAE,EAAE,CAAC,CAAC;IAC5H,eAAe,EAAE,GAAG,EAAE,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,cAAc,CAAC,CAAC;IACjE,SAAS,EAAE,CAAC,IAAY,EAAE,IAA4B,EAAE,EAAE;QACxD,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAEhC,IAAI,CAAC,MAAM,CAAC,CAAC,IAAI,CAAC,sBAAsB,EAAE,IAAI,CAAC,SAAS,CAAC,EAAE,kBAAkB,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;QAExF,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC,CAAC;IACpB,CAAC;CACF,CAAC,CAAC,CAAC;AATS,QAAA,yBAAyB,6BASlC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../middlewares/index.ts"],"names":[],"mappings":";;;AAAA,wEAA8C"}
@@ -1,38 +0,0 @@
1
- import { RulesEngineAction, RulesEngineActionHandler } from '@o3r/core';
2
- import * as i0 from '@angular/core';
3
- import * as i1 from '@o3r/configuration';
4
-
5
- /** ActionUpdateConfigurationBlock */
6
- declare const RULES_ENGINE_CONFIGURATION_UPDATE_ACTION_TYPE = "UPDATE_CONFIG";
7
- /**
8
- * Content of action that updates a Configuration
9
- */
10
- interface ActionUpdateConfigBlock extends RulesEngineAction {
11
- actionType: typeof RULES_ENGINE_CONFIGURATION_UPDATE_ACTION_TYPE;
12
- library: string;
13
- component: string;
14
- property: string;
15
- }
16
-
17
- /**
18
- * Service to handle async Configuration actions
19
- */
20
- declare class ConfigurationRulesEngineActionHandler implements RulesEngineActionHandler<ActionUpdateConfigBlock> {
21
- private readonly store;
22
- /** @inheritdoc */
23
- readonly supportingActions: readonly ["UPDATE_CONFIG"];
24
- /** @inheritdoc */
25
- executeActions(actions: ActionUpdateConfigBlock[]): void | Promise<void>;
26
- static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationRulesEngineActionHandler, never>;
27
- static ɵprov: i0.ɵɵInjectableDeclaration<ConfigurationRulesEngineActionHandler>;
28
- }
29
-
30
- declare class ConfigurationRulesEngineActionModule {
31
- static ɵfac: i0.ɵɵFactoryDeclaration<ConfigurationRulesEngineActionModule, never>;
32
- static ɵmod: i0.ɵɵNgModuleDeclaration<ConfigurationRulesEngineActionModule, never, [typeof i1.ConfigurationStoreModule], never>;
33
- static ɵinj: i0.ɵɵInjectorDeclaration<ConfigurationRulesEngineActionModule>;
34
- }
35
-
36
- export { ConfigurationRulesEngineActionHandler, ConfigurationRulesEngineActionModule, RULES_ENGINE_CONFIGURATION_UPDATE_ACTION_TYPE };
37
- export type { ActionUpdateConfigBlock };
38
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sources":["../../src/rules-engine/configuration-interfaces.ts","../../src/rules-engine/configuration-handler-action.ts","../../src/rules-engine/configuration-rules-engine-module.ts"],"sourcesContent":[null,null,null],"names":[],"mappings":";;;;AAIA;AACA,cAAA,6CAAA;AAEA;;AAEG;AACG,UAAA,uBAAA,SAAA,iBAAA;;;;;AAKL;;ACQD;;AAEG;AACH,cAAA,qCAAA,YAAA,wBAAA,CAAA,uBAAA;AAEE;;AAGA;;;;;AAqBD;;AC1CD,cAAA,oCAAA;;;;AAQoD;;;;"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../schematics/configuration-to-component/index.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../schematics/configuration-to-component/schema.ts"],"names":[],"mappings":""}
@@ -1 +0,0 @@
1
- {"version":3,"file":"devtools-registration.js","sourceRoot":"","sources":["../../../../schematics/ng-add/helpers/devtools-registration.ts"],"names":[],"mappings":";;;AAAA,qCAEiB;AACjB,kCAAkC;AAClC,2DAEoC;AACpC,gDAEyB;AAKzB,MAAM,mBAAmB,GAAG,6BAA6B,CAAC;AAC1D,MAAM,4BAA4B,GAAG,qCAAqC,CAAC;AAC3E,MAAM,4BAA4B,GAAG,qCAAqC,CAAC;AAC3E,MAAM,YAAY,GAAW,IAAI,CAAC,KAAK,CAAC,IAAA,sBAAY,EAAC,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,cAAc,CAAC,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC;AAE5I;;;GAGG;AACI,MAAM,gBAAgB,GAAG,CAAC,OAA8B,EAAE,EAAE;IACjE,OAAO,IAAA,kBAAK,EAAC;QACX,IAAA,0CAA6B,EAAC;YAC5B,UAAU,EAAE,mBAAmB;YAC/B,WAAW,EAAE,YAAY;YACzB,WAAW,EAAE,4BAA4B;YACzC,WAAW,EAAE,OAAO,CAAC,WAAW;SACjC,CAAC;QACF,IAAA,0CAA6B,EAAC;YAC5B,UAAU,EAAE,mBAAmB;YAC/B,WAAW,EAAE,YAAY;YACzB,WAAW,EAAE,4BAA4B;YACzC,WAAW,EAAE,OAAO,CAAC,WAAW;SACjC,CAAC;KACH,CAAC,CAAC;AACL,CAAC,CAAC;AAfW,QAAA,gBAAgB,oBAe3B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../schematics/ng-add/index.ts"],"names":[],"mappings":";;;AAAA,8BAA8B;AAC9B,kCAAkC;AAClC,2DAGoC;AACpC,gDAKyB;AACzB,2EAEyC;AAKzC;;GAEG;AACH,MAAM,qBAAqB,GAAG;IAC5B,eAAe;IACf,mCAAmC;IACnC,cAAc;IACd,aAAa;IACb,MAAM;CACP,CAAC;AAEF;;GAEG;AACH,MAAM,wBAAwB,GAAG;IAC/B,MAAM;CACP,CAAC;AAEF;;;GAGG;AACH,SAAS,OAAO,CAAC,OAA8B;IAC7C,MAAM,eAAe,GAAG,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,cAAc,CAAC,CAAC;IAC5E,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,EAAE,CAAC,YAAY,CAAC,eAAe,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC;IACvF,MAAM,wBAAwB,GAAG,EAAE,cAAc,EAAE,SAAS,EAAE,CAAC;IAE/D,OAAO,GAAG,EAAE,CAAC,IAAA,kBAAK,EAAC;QACjB,CAAC,CAAC,EAAE,OAAO,EAAE,EAAE;YACb,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,6DAA6D,CAAC,CAAC;YACnF,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,gJAAgJ,CAAC,CAAC;QACxK,CAAC;QACD,IAAA,gDAAmC,EAAC,WAAW,CAAC;QAChD,IAAA,4CAA+B,EAAC;YAC9B,qBAAqB,EAAE,wBAAwB;YAC/C,+BAA+B,EAAE,wBAAwB;YACzD,+BAA+B,EAAE,wBAAwB;SAC1D,EAAE,OAAO,CAAC,WAAW,CAAC;QACvB,IAAA,kCAAqB,EAAC,OAAO,EAAE,eAAe,EAAE,EAAE,qBAAqB,EAAE,wBAAwB,EAAE,CAAC;QACpG,GAAG,EAAE,CAAC,IAAA,wCAAgB,EAAC,OAAO,CAAC;KAChC,CAAC,CAAC;AACL,CAAC;AAED;;;GAGG;AACI,MAAM,KAAK,GAAG,CAAC,OAA8B,EAAE,EAAE,CAAC,IAAA,iCAAoB,EAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAAC;AAAnF,QAAA,KAAK,SAA8E"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../schematics/ng-add/schema.ts"],"names":[],"mappings":""}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../schematics/ng-update/v10-3/index.ts"],"names":[],"mappings":";;;AAIA,gDAGyB;AAEzB,MAAM,oBAAoB,GAAG,qBAAqB,CAAC;AAEnD,gGAAgG;AAChG,SAAS,aAAa;IACpB,OAAO,CAAC,IAAU,EAAE,EAAE;QACpB,MAAM,KAAK,GAAG,IAAA,4BAAe,EAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;QACtF,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,EAAE,EAAE;YAClC,MAAM,GAAG,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC;YAC/B,IAAI,oBAAoB,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC;gBACnC,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,GAAG,CAAC,UAAU,CAAC,oBAAoB,EAAE,WAAW,CAAC,CAAC,CAAC;YAC1E,CAAC;QACH,CAAC,CAAC,CAAC;IACL,CAAC,CAAC;AACJ,CAAC;AAED;;GAEG;AACH,gGAAgG;AACnF,QAAA,WAAW,GAAG,IAAA,iCAAoB,EAAC,aAAa,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../schematics/ng-update/v11-6/index.ts"],"names":[],"mappings":";;;AAIA,gDAGyB;AAEzB,MAAM,MAAM,GAAG,4FAA4F,CAAC;AAE5G,SAAS,YAAY;IACnB,OAAO,CAAC,IAAU,EAAE,EAAE;QACpB,MAAM,KAAK,GAAG,IAAA,4BAAe,EAAC,IAAI,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,aAAa,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;QAC3F,KAAK,CAAC,OAAO,CAAC,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,EAAE,EAAE;YAClC,MAAM,GAAG,GAAG,OAAO,CAAC,QAAQ,EAAE,CAAC;YAC/B,MAAM,UAAU,GAAG,GAAG,CAAC,UAAU,CAAC,MAAM,EAAE,6CAA6C,CAAC,CAAC;YACzF,IAAI,UAAU,KAAK,GAAG,EAAE,CAAC;gBACvB,IAAI,CAAC,SAAS,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;YACnC,CAAC;QACH,CAAC,CAAC,CAAC;IACL,CAAC,CAAC;AACJ,CAAC;AAED;;GAEG;AACU,QAAA,UAAU,GAAG,IAAA,iCAAoB,EAAC,YAAY,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../schematics/ng-update/v12-0/index.ts"],"names":[],"mappings":";;;AAAA,2DAKoC;AACpC,gDAIyB;AAEzB,+HAA+H;AAC/H,MAAM,2BAA2B,GAAmB;IAClD,oBAAoB,EAAE;QACpB,wBAAwB,EAAE;YACxB,UAAU,EAAE,WAAW;YACvB,QAAQ,EAAE,uBAAuB;SAClC;KACF;CACF,CAAC;AAEF;;GAEG;AACH,mGAAmG;AACnG,SAAS,aAAa;IACpB,OAAO,CAAC,IAAU,EAAE,OAAyB,EAAE,EAAE;QAC/C,MAAM,WAAW,GAAW;YAC1B,IAAA,0BAAa,EAAC,2BAA2B,CAAC;SAC3C,CAAC;QAEF,OAAO,IAAA,kBAAK,EAAC,WAAW,CAAC,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IAC3C,CAAC,CAAC;AACJ,CAAC;AAED;;GAEG;AACH,gGAAgG;AACnF,QAAA,WAAW,GAAG,IAAA,iCAAoB,EAAC,aAAa,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../schematics/use-config-signal/index.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../schematics/use-config-signal/schema.ts"],"names":[],"mappings":""}