monkey-style-guide-v2 0.0.23 → 0.0.26

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.
Files changed (33) hide show
  1. package/assets/scss/theme.scss +3 -0
  2. package/assets/scss/typography/_styles.scss +8 -2
  3. package/esm2022/lib/components/index.mjs +6 -1
  4. package/esm2022/lib/components/input-phone/input-phone.component.mjs +5 -5
  5. package/esm2022/lib/components/modal/components/confirmation.component.mjs +6 -1
  6. package/esm2022/lib/directives/index.mjs +6 -1
  7. package/esm2022/lib/directives/popover.mjs +8 -3
  8. package/esm2022/lib/interfaces/alert.mjs +1 -1
  9. package/esm2022/lib/interfaces/breadcrumb.mjs +1 -1
  10. package/esm2022/lib/interfaces/button.mjs +1 -1
  11. package/esm2022/lib/interfaces/index.mjs +6 -1
  12. package/esm2022/lib/interfaces/popover.mjs +1 -1
  13. package/esm2022/lib/interfaces/sizes.mjs +1 -1
  14. package/esm2022/lib/interfaces/table.mjs +1 -1
  15. package/esm2022/lib/interfaces/toast.mjs +1 -1
  16. package/esm2022/lib/services/dictionary.service.mjs +3 -3
  17. package/esm2022/lib/tokens/index.mjs +9 -4
  18. package/fesm2022/monkey-style-guide-v2.mjs +42 -9
  19. package/fesm2022/monkey-style-guide-v2.mjs.map +1 -1
  20. package/lib/components/index.d.ts +5 -0
  21. package/lib/directives/index.d.ts +5 -0
  22. package/lib/interfaces/alert.d.ts +5 -0
  23. package/lib/interfaces/breadcrumb.d.ts +5 -0
  24. package/lib/interfaces/button.d.ts +5 -0
  25. package/lib/interfaces/index.d.ts +5 -0
  26. package/lib/interfaces/popover.d.ts +5 -0
  27. package/lib/interfaces/sizes.d.ts +5 -0
  28. package/lib/interfaces/table.d.ts +5 -0
  29. package/lib/interfaces/toast.d.ts +5 -0
  30. package/lib/tokens/index.d.ts +8 -3
  31. package/monkey-style-guide-v2-0.0.26.tgz +0 -0
  32. package/package.json +1 -1
  33. package/monkey-style-guide-v2-0.0.23.tgz +0 -0
@@ -1,3 +1,8 @@
1
+ /** ************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ ************************* */
1
6
  export * from './accordion';
2
7
  export * from './action-bar';
3
8
  export * from './alert';
@@ -1,3 +1,8 @@
1
+ /** ************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ ************************* */
1
6
  export * from './badge';
2
7
  export * from './error';
3
8
  export * from './helper';
@@ -1 +1,6 @@
1
+ /** ************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ ************************* */
1
6
  export type MonkeyAlertType = 'default' | 'info' | 'success' | 'alert' | 'error';
@@ -1,3 +1,8 @@
1
+ /** ************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ ************************* */
1
6
  export interface MonkeyBreadcrumb {
2
7
  label: string;
3
8
  path?: string;
@@ -1 +1,6 @@
1
+ /** ************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ ************************* */
1
6
  export type MonkeyButtonType = 'primary' | 'secondary' | 'tertiary';
@@ -1,3 +1,8 @@
1
+ /** ************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ ************************* */
1
6
  export * from './alert';
2
7
  export * from './breadcrumb';
3
8
  export * from './button';
@@ -1,3 +1,8 @@
1
+ /** ************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ ************************* */
1
6
  export type MonkeyPopoverDir = 'rtl' | 'ltr' | 'trtl' | 'tltr' | 'ct' | 'cc' | 'cr' | 'rt' | 'rb' | 'lt' | 'lb';
2
7
  export interface MonkeyPopoverOptions {
3
8
  dir?: MonkeyPopoverDir;
@@ -1 +1,6 @@
1
+ /** ************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ ************************* */
1
6
  export type MonkeySize = 'xs' | 'sm' | 'md' | 'lg';
@@ -1,3 +1,8 @@
1
+ /** ************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ ************************* */
1
6
  export interface MonkeyTableScrollConfig {
2
7
  x?: string;
3
8
  y?: string;
@@ -1,3 +1,8 @@
1
+ /** ************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ ************************* */
1
6
  import { ComponentRef } from '@angular/core';
2
7
  import { MonkeyToastComponent } from '../components';
3
8
  export declare class MonkeyToastRef {
@@ -1,5 +1,10 @@
1
+ /** ************************
2
+ * Copyright Monkey Exchange. All Rights Reserved
3
+ * This style guide was developed by Monkey Exchange Team
4
+ * MIT Licence
5
+ ************************* */
1
6
  import { InjectionToken } from '@angular/core';
2
7
  import { BehaviorSubject } from 'rxjs';
3
- export declare const MONKEY_I18N_WRAPPER: InjectionToken<BehaviorSubject<string>>;
4
- export declare const MONKEY_POPOVER_OPTIONS: InjectionToken<unknown>;
5
- export declare const MONKEY_COUNTRY_CODE: InjectionToken<string>;
8
+ export declare const MECX_I18N_WRAPPER: InjectionToken<BehaviorSubject<string>>;
9
+ export declare const MECX_POPOVER_OPTIONS: InjectionToken<unknown>;
10
+ export declare const MECX_COUNTRY_CODE: InjectionToken<string>;
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monkey-style-guide-v2",
3
- "version": "0.0.23",
3
+ "version": "0.0.26",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.1.2",
6
6
  "@angular/core": "^18.1.2",
Binary file