monkey-front-core 21.2.1 → 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,6 +1,6 @@
1
1
  {
2
2
  "name": "monkey-front-core",
3
- "version": "21.2.1",
3
+ "version": "21.2.2",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.4",
6
6
  "@angular/core": "^21.2.4",
@@ -1553,7 +1553,7 @@ declare abstract class MonkeyEcxCommonsActions {
1553
1553
  }
1554
1554
 
1555
1555
  interface IReducer {
1556
- featureKey: string;
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 featureKey = "mecx-core-storage";
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 monkeyecxStorage_reducer_d_featureKey: typeof featureKey;
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 { monkeyecxStorage_reducer_d_featureKey as featureKey, monkeyecxStorage_reducer_d_initialState as initialState, monkeyecxStorage_reducer_d_reducer as reducer };
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): "" | "CPF" | "CNPJ" | "RUT" | "RFC" | "EIN";
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