@datarailsshared/datarailsshared 1.6.415 → 1.6.416
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/assets/styles/_storybook-styles.scss +10 -0
- package/datarailsshared-datarailsshared-1.6.416.tgz +0 -0
- package/esm2022/lib/dr-inputs/dr-select/dr-select.component.mjs +4 -3
- package/esm2022/lib/dr-modal/components/dr-modal-container/dr-modal-container.component.mjs +6 -6
- package/esm2022/lib/dr-modal/dr-modal.service.mjs +3 -1
- package/esm2022/lib/dr-modal/dr-modal.slots.mjs +21 -31
- package/fesm2022/datarailsshared-datarailsshared.mjs +31 -39
- package/fesm2022/datarailsshared-datarailsshared.mjs.map +1 -1
- package/lib/dr-inputs/dr-select/dr-select.component.d.ts +2 -1
- package/lib/dr-modal/components/dr-modal-container/dr-modal-container.component.d.ts +2 -2
- package/lib/dr-modal/dr-modal.slots.d.ts +5 -2
- package/package.json +1 -1
- package/datarailsshared-datarailsshared-1.6.415.tgz +0 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnDestroy, Renderer2, TemplateRef } from '@angular/core';
|
|
1
|
+
import { ElementRef, EventEmitter, InjectionToken, OnDestroy, Renderer2, TemplateRef } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { Subject } from 'rxjs';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
+
export declare const DR_SELECT_APPEND_TO: InjectionToken<string>;
|
|
5
6
|
export declare class DrSelectComponent implements ControlValueAccessor, OnDestroy {
|
|
6
7
|
private elementRef;
|
|
7
8
|
private renderer;
|
|
@@ -11,8 +11,8 @@ export declare class DrModalContainerComponent extends CdkDialogContainer {
|
|
|
11
11
|
readonly animationState: import("@angular/core").WritableSignal<DrModalAnimationState>;
|
|
12
12
|
readonly animationClass: import("@angular/core").Signal<string>;
|
|
13
13
|
readonly animationTime: import("@angular/core").Signal<number>;
|
|
14
|
-
readonly
|
|
15
|
-
readonly
|
|
14
|
+
readonly labelledBy: import("@angular/core").WritableSignal<string>;
|
|
15
|
+
readonly describedBy: import("@angular/core").WritableSignal<string>;
|
|
16
16
|
private readonly elementRef;
|
|
17
17
|
protected _contentAttached(): void;
|
|
18
18
|
animateClose(): void;
|
|
@@ -1,17 +1,20 @@
|
|
|
1
|
+
import { DrModalRef } from './dr-modal-ref';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class DrModalHeaderDirective {
|
|
3
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrModalHeaderDirective, never>;
|
|
4
5
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DrModalHeaderDirective, "dr-modal-header, [dr-modal-header], [drModalHeader]", never, {}, {}, never, never, true, never>;
|
|
5
6
|
}
|
|
6
7
|
export declare class DrModalTitleDirective {
|
|
8
|
+
private readonly modalRef;
|
|
7
9
|
protected readonly id: string;
|
|
8
|
-
constructor();
|
|
10
|
+
constructor(modalRef: DrModalRef);
|
|
9
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrModalTitleDirective, never>;
|
|
10
12
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DrModalTitleDirective, "dr-modal-title, [dr-modal-title], [drModalTitle]", never, {}, {}, never, never, true, never>;
|
|
11
13
|
}
|
|
12
14
|
export declare class DrModalSubtitleDirective {
|
|
15
|
+
private readonly modalRef;
|
|
13
16
|
protected readonly id: string;
|
|
14
|
-
constructor();
|
|
17
|
+
constructor(modalRef: DrModalRef);
|
|
15
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrModalSubtitleDirective, never>;
|
|
16
19
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DrModalSubtitleDirective, "dr-modal-subtitle, [dr-modal-subtitle], [drModalSubtitle]", never, {}, {}, never, never, true, never>;
|
|
17
20
|
}
|
package/package.json
CHANGED
|
Binary file
|