monkey-style-guide-v2 0.0.23 → 0.0.25
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/esm2022/lib/components/index.mjs +6 -1
- package/esm2022/lib/components/input-phone/input-phone.component.mjs +5 -5
- package/esm2022/lib/components/modal/components/confirmation.component.mjs +6 -1
- package/esm2022/lib/directives/index.mjs +6 -1
- package/esm2022/lib/directives/popover.mjs +8 -3
- package/esm2022/lib/interfaces/alert.mjs +1 -1
- package/esm2022/lib/interfaces/breadcrumb.mjs +1 -1
- package/esm2022/lib/interfaces/button.mjs +1 -1
- package/esm2022/lib/interfaces/index.mjs +6 -1
- package/esm2022/lib/interfaces/popover.mjs +1 -1
- package/esm2022/lib/interfaces/sizes.mjs +1 -1
- package/esm2022/lib/interfaces/table.mjs +1 -1
- package/esm2022/lib/interfaces/toast.mjs +1 -1
- package/esm2022/lib/services/dictionary.service.mjs +3 -3
- package/esm2022/lib/tokens/index.mjs +9 -4
- package/fesm2022/monkey-style-guide-v2.mjs +42 -9
- package/fesm2022/monkey-style-guide-v2.mjs.map +1 -1
- package/lib/components/index.d.ts +5 -0
- package/lib/directives/index.d.ts +5 -0
- package/lib/interfaces/alert.d.ts +5 -0
- package/lib/interfaces/breadcrumb.d.ts +5 -0
- package/lib/interfaces/button.d.ts +5 -0
- package/lib/interfaces/index.d.ts +5 -0
- package/lib/interfaces/popover.d.ts +5 -0
- package/lib/interfaces/sizes.d.ts +5 -0
- package/lib/interfaces/table.d.ts +5 -0
- package/lib/interfaces/toast.d.ts +5 -0
- package/lib/tokens/index.d.ts +8 -3
- package/monkey-style-guide-v2-0.0.25.tgz +0 -0
- package/package.json +1 -1
- 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,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,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 {
|
package/lib/tokens/index.d.ts
CHANGED
|
@@ -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
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const
|
|
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
|
Binary file
|