monkey-style-guide 21.0.0 → 21.0.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.
- package/README.md +5 -5
- package/assets/scss/directives/_styles.scss +1 -1
- package/assets/scss/partials/_breakpoints.scss +4 -4
- package/fesm2022/monkey-style-guide.mjs +259 -254
- package/fesm2022/monkey-style-guide.mjs.map +1 -1
- package/monkey-style-guide-21.0.2.tgz +0 -0
- package/package.json +11 -11
- package/types/monkey-style-guide.d.ts +3 -1
- package/monkey-style-guide-21.0.0.tgz +0 -0
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monkey-style-guide",
|
|
3
|
-
"version": "21.0.
|
|
3
|
+
"version": "21.0.2",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/animations": "^21.0
|
|
6
|
-
"@angular/cdk": "^21.0
|
|
7
|
-
"@angular/common": "^21.0
|
|
8
|
-
"@angular/core": "^21.0
|
|
9
|
-
"@angular/forms": "^21.0
|
|
10
|
-
"@angular/platform-browser": "^21.0
|
|
11
|
-
"@angular/router": "^21.0
|
|
12
|
-
"rxjs": "~7.8.
|
|
13
|
-
"ngx-mask": "^
|
|
5
|
+
"@angular/animations": "^21.1.0",
|
|
6
|
+
"@angular/cdk": "^21.1.0",
|
|
7
|
+
"@angular/common": "^21.1.0",
|
|
8
|
+
"@angular/core": "^21.1.0",
|
|
9
|
+
"@angular/forms": "^21.1.0",
|
|
10
|
+
"@angular/platform-browser": "^21.1.0",
|
|
11
|
+
"@angular/router": "^21.1.0",
|
|
12
|
+
"rxjs": "~7.8.2",
|
|
13
|
+
"ngx-mask": "^20.0.3",
|
|
14
14
|
"libphonenumber-js": "^1.12.9"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"date-fns": "^4.1.0",
|
|
18
|
-
"tslib": "^2.
|
|
18
|
+
"tslib": "^2.8.1"
|
|
19
19
|
},
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"module": "fesm2022/monkey-style-guide.mjs",
|
|
@@ -200,6 +200,7 @@ declare class MonkeyFormFieldComponent implements AfterContentInit, AfterContent
|
|
|
200
200
|
hideAction: boolean;
|
|
201
201
|
enableClear: boolean;
|
|
202
202
|
size: MonkeySize;
|
|
203
|
+
noFooterSpace: boolean;
|
|
203
204
|
displayOnly: i0.InputSignal<boolean>;
|
|
204
205
|
onDisplayOnlyChange: i0.OutputEmitterRef<boolean>;
|
|
205
206
|
private _formFieldControl;
|
|
@@ -261,9 +262,10 @@ declare class MonkeyFormFieldComponent implements AfterContentInit, AfterContent
|
|
|
261
262
|
onOpenCalendar(event: MouseEvent): void;
|
|
262
263
|
onCancelDisplayOnly(event: MouseEvent): void;
|
|
263
264
|
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFormFieldComponent, never>;
|
|
264
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyFormFieldComponent, "monkey-form-field", ["monkeyFormField"], { "id": { "alias": "id"; "required": false; }; "hideAction": { "alias": "hideAction"; "required": false; }; "enableClear": { "alias": "enableClear"; "required": false; }; "size": { "alias": "size"; "required": false; }; "displayOnly": { "alias": "displayOnly"; "required": false; "isSignal": true; }; }, { "onDisplayOnlyChange": "onDisplayOnlyChange"; }, ["_formFieldControl"], ["monkey-display", "monkey-helper", "monkey-prefix", "*", "monkey-suffix", "monkey-error", "monkey-info", "monkey-label"], false, never>;
|
|
265
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyFormFieldComponent, "monkey-form-field", ["monkeyFormField"], { "id": { "alias": "id"; "required": false; }; "hideAction": { "alias": "hideAction"; "required": false; }; "enableClear": { "alias": "enableClear"; "required": false; }; "size": { "alias": "size"; "required": false; }; "noFooterSpace": { "alias": "noFooterSpace"; "required": false; }; "displayOnly": { "alias": "displayOnly"; "required": false; "isSignal": true; }; }, { "onDisplayOnlyChange": "onDisplayOnlyChange"; }, ["_formFieldControl"], ["monkey-display", "monkey-helper", "monkey-prefix", "*", "monkey-suffix", "monkey-error", "monkey-info", "monkey-label"], false, never>;
|
|
265
266
|
static ngAcceptInputType_hideAction: unknown;
|
|
266
267
|
static ngAcceptInputType_enableClear: unknown;
|
|
268
|
+
static ngAcceptInputType_noFooterSpace: unknown;
|
|
267
269
|
}
|
|
268
270
|
|
|
269
271
|
type IconName = 'clear' | 'calendar' | 'arrowDown' | 'arrowRight' | 'check' | 'minus' | 'loading' | 'searchFail' | 'search' | 'addPlus' | 'googleMaps' | 'location' | 'edit';
|
|
Binary file
|