monkey-front-core 21.2.0 → 21.2.2
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monkey-front-core",
|
|
3
|
-
"version": "21.2.
|
|
3
|
+
"version": "21.2.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^21.2.4",
|
|
6
6
|
"@angular/core": "^21.2.4",
|
|
7
|
-
"@angular/cdk": "^21.2.
|
|
7
|
+
"@angular/cdk": "^21.2.2",
|
|
8
8
|
"@angular/animations": "^21.2.4",
|
|
9
9
|
"@angular/platform-browser": "^21.2.4",
|
|
10
10
|
"@angular/router": "^21.2.4",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"@angular/service-worker": "^21.2.4",
|
|
13
13
|
"@datadog/browser-logs": "^6.31.0",
|
|
14
14
|
"@datadog/browser-rum": "^6.31.0",
|
|
15
|
+
"@ngx-translate/core": "^17.0.0",
|
|
15
16
|
"@ngrx/data": "^21.0.1",
|
|
16
17
|
"@ngrx/effects": "^21.0.1",
|
|
17
18
|
"@ngrx/entity": "^21.0.1",
|
|
@@ -1553,7 +1553,7 @@ declare abstract class MonkeyEcxCommonsActions {
|
|
|
1553
1553
|
}
|
|
1554
1554
|
|
|
1555
1555
|
interface IReducer {
|
|
1556
|
-
|
|
1556
|
+
featureName: string;
|
|
1557
1557
|
selectAll: any;
|
|
1558
1558
|
}
|
|
1559
1559
|
declare abstract class MonkeyEcxCommonsSelectors {
|
|
@@ -1683,7 +1683,7 @@ declare namespace monkeyecxSeeder_reducer_d {
|
|
|
1683
1683
|
};
|
|
1684
1684
|
}
|
|
1685
1685
|
|
|
1686
|
-
declare const
|
|
1686
|
+
declare const featureName = "mecx-core-storage";
|
|
1687
1687
|
interface State {
|
|
1688
1688
|
control: {
|
|
1689
1689
|
isLoading: boolean;
|
|
@@ -1694,11 +1694,11 @@ declare const initialState: State;
|
|
|
1694
1694
|
declare const reducer: _ngrx_store.ActionReducer<State, _ngrx_store.Action<string>>;
|
|
1695
1695
|
|
|
1696
1696
|
type monkeyecxStorage_reducer_d_State = State;
|
|
1697
|
-
declare const
|
|
1697
|
+
declare const monkeyecxStorage_reducer_d_featureName: typeof featureName;
|
|
1698
1698
|
declare const monkeyecxStorage_reducer_d_initialState: typeof initialState;
|
|
1699
1699
|
declare const monkeyecxStorage_reducer_d_reducer: typeof reducer;
|
|
1700
1700
|
declare namespace monkeyecxStorage_reducer_d {
|
|
1701
|
-
export {
|
|
1701
|
+
export { monkeyecxStorage_reducer_d_featureName as featureName, monkeyecxStorage_reducer_d_initialState as initialState, monkeyecxStorage_reducer_d_reducer as reducer };
|
|
1702
1702
|
export type { monkeyecxStorage_reducer_d_State as State };
|
|
1703
1703
|
}
|
|
1704
1704
|
|
|
@@ -1774,7 +1774,7 @@ type LogParams = {
|
|
|
1774
1774
|
};
|
|
1775
1775
|
declare class MonkeyEcxUtils {
|
|
1776
1776
|
static persistNullEmptyUndefined(tp: any): boolean;
|
|
1777
|
-
static getDocumentType(doc: string, country?: string): "" | "
|
|
1777
|
+
static getDocumentType(doc: string, country?: string): "" | "RUT" | "RFC" | "EIN" | "CPF" | "CNPJ";
|
|
1778
1778
|
static getDocumentMask(type: DocumentType, country?: string): CountryMasks;
|
|
1779
1779
|
static getDocumentPlaceholder(type: DocumentType, country?: string): string;
|
|
1780
1780
|
static formatDocumentWithMask(doc: string, withType?: boolean, country?: string): string;
|
|
Binary file
|