@datarailsshared/datarailsshared 1.4.55 → 1.4.57

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.
@@ -2,10 +2,12 @@ import { ChangeDetectorRef, EventEmitter } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
3
  export declare class RadioButtonComponent implements ControlValueAccessor {
4
4
  private cdr;
5
- disabled: boolean;
6
5
  name: string;
7
6
  _value: any;
8
7
  valueChange: EventEmitter<any>;
8
+ get disabled(): boolean;
9
+ set disabled(disabled: boolean);
10
+ private _disabled;
9
11
  modelValue: any;
10
12
  get value(): any;
11
13
  onChange: any;
@@ -0,0 +1,3 @@
1
+ export declare class DrLayoutBodyComponent {
2
+ constructor();
3
+ }
@@ -0,0 +1,3 @@
1
+ export declare class DrLayoutHeaderComponent {
2
+ constructor();
3
+ }
@@ -0,0 +1,3 @@
1
+ export declare class DrLayoutComponent {
2
+ constructor();
3
+ }
@@ -0,0 +1,2 @@
1
+ export declare class DrLayoutModule {
2
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datarailsshared/datarailsshared",
3
- "version": "1.4.55",
3
+ "version": "1.4.57",
4
4
  "description": "DataRails shared components",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -36,6 +36,9 @@ export * from './lib/dr-accordion/accordion.component';
36
36
  export * from './lib/dr-accordion/accordion-item.component';
37
37
  export * from './lib/dr-accordion/accordion-item-header.component';
38
38
  export * from './lib/dr-accordion/accordion-item-body.component';
39
+ export * from './lib/dr-layout/dr-layout.component';
40
+ export * from './lib/dr-layout/dr-layout-header.component';
41
+ export * from './lib/dr-layout/dr-layout-body.component';
39
42
  export * from './lib/dr-inputs/dr-model-debounce-change.directive';
40
43
  export * from './lib/models/datePicker';
41
44
  export { TAG_TYPES, ITag, IDateTag, IListTag, ITagForServer } from './lib/models/serverTags';
@@ -54,3 +57,4 @@ export { DrDropdownModule } from './lib/dr-dropdown/dr-dropdown.module';
54
57
  export { DrTabsModule } from './lib/dr-tabs/dr-tabs.module';
55
58
  export { DrAccordionModule } from './lib/dr-accordion/accordion.module';
56
59
  export { DrSharedUtils } from './lib/utils/dr-shared-utils';
60
+ export { DrLayoutModule } from './lib/dr-layout/dr-layout.module';