@recursyve/nice-ui-kit.v2 14.0.0-beta.122 → 14.0.0-beta.124
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/esm2020/lib/components/date-range-picker/date-range-picker.component.mjs +32 -11
- package/esm2020/lib/components/translation-form/components/textarea/translation-form-textarea.component.mjs +4 -3
- package/esm2020/lib/components/translation-form/components/textfield/translation-form-textfield.component.mjs +4 -3
- package/esm2020/lib/components/translation-form/components/translation-form.component.mjs +4 -3
- package/esm2020/lib/components/translation-form/directives/translation-context.directive.mjs +7 -1
- package/fesm2015/recursyve-nice-ui-kit.v2.mjs +43 -16
- package/fesm2015/recursyve-nice-ui-kit.v2.mjs.map +1 -1
- package/fesm2020/recursyve-nice-ui-kit.v2.mjs +43 -16
- package/fesm2020/recursyve-nice-ui-kit.v2.mjs.map +1 -1
- package/lib/components/date-range-picker/date-range-picker.component.d.ts +1 -2
- package/lib/components/translation-form/directives/translation-context.directive.d.ts +1 -0
- package/package.json +1 -1
|
@@ -8,7 +8,6 @@ export interface NiceDateRangePickerValue {
|
|
|
8
8
|
}
|
|
9
9
|
export declare class NiceDateRangePickerComponent implements OnInit, ControlValueAccessor {
|
|
10
10
|
readonly HeaderComponent: typeof HeaderComponent;
|
|
11
|
-
private picker;
|
|
12
11
|
min: Date;
|
|
13
12
|
max: Date;
|
|
14
13
|
nowIsMax: boolean;
|
|
@@ -19,7 +18,7 @@ export declare class NiceDateRangePickerComponent implements OnInit, ControlValu
|
|
|
19
18
|
}>;
|
|
20
19
|
now: Date;
|
|
21
20
|
value: NiceDateRangePickerValue;
|
|
22
|
-
private
|
|
21
|
+
private propagate;
|
|
23
22
|
ngOnInit(): void;
|
|
24
23
|
writeValue(value: NiceDateRangePickerValue): void;
|
|
25
24
|
registerOnChange(fn: (value: NiceDateRangePickerValue) => void): void;
|
|
@@ -10,6 +10,7 @@ export declare class TranslationContextDirective implements OnInit, OnDestroy {
|
|
|
10
10
|
ngOnInit(): void;
|
|
11
11
|
ngOnDestroy(): void;
|
|
12
12
|
updateLanguage(language: string): void;
|
|
13
|
+
reset(): void;
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<TranslationContextDirective, never>;
|
|
14
15
|
static ɵdir: i0.ɵɵDirectiveDeclaration<TranslationContextDirective, "[niceTranslationContext]", never, {}, {}, never, never, false>;
|
|
15
16
|
}
|