@kms-ngx-ui/presentational 16.8.1 → 16.8.3

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.
@@ -1,4 +1,4 @@
1
- export * from './types/nullable.type';
2
- export * from './types/attached-file-dto.model';
3
1
  export * from './iconSize.enum';
4
2
  export * from './is-value.function';
3
+ export * from './types/attached-file-dto.model';
4
+ export * from './types/nullable.type';
@@ -1,9 +1,14 @@
1
+ export interface DialogConfig {
2
+ data: DialogData;
3
+ panelClass?: string;
4
+ autoFocus?: boolean;
5
+ }
1
6
  export interface DialogData {
2
- title: string;
7
+ title?: string;
3
8
  message?: string;
9
+ panelClass?: string;
4
10
  buttons?: {
5
11
  primary: string;
6
12
  secondary: string;
7
13
  };
8
- pannelClass?: string;
9
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kms-ngx-ui/presentational",
3
- "version": "16.8.1",
3
+ "version": "16.8.3",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "16.2.12",
6
6
  "@angular/common": "16.2.12",
package/public-api.d.ts CHANGED
@@ -1,14 +1,15 @@
1
- export * from './lib/directives/directives.module';
2
- export * from './lib/directives/size.directive';
3
1
  export * from './lib/kms-ngx-ui-presentational.component';
4
2
  export * from './lib/kms-ngx-ui-presentational.module';
5
3
  export * from './lib/kms-ngx-ui-presentational.service';
6
- export * from './lib/pipes/custom-pipes.module';
4
+ export * from './lib/services/viewport.service';
7
5
  export * from './lib/models/iconSize.enum';
8
6
  export * from './lib/models/salutation.enum';
7
+ export * from './lib/models/types/nullable.type';
9
8
  export * from './lib/ui/back-to-top/back-to-top.component';
10
9
  export * from './lib/ui/checkbox/checkbox.component';
11
10
  export * from './lib/ui/color-input/color-input.component';
11
+ export * from './lib/ui/confirmation-dialog/confirmation-dialog.component';
12
+ export * from './lib/ui/confirmation-dialog/dialog-data.model';
12
13
  export * from './lib/ui/dropdown-from-data/dropdown-from-data.component';
13
14
  export * from './lib/ui/enum-radiogroup/enum-radiogroup.component';
14
15
  export * from './lib/ui/file-input/file-input.component';
@@ -23,10 +24,14 @@ export * from './lib/ui/salutation-dropdown/salutation-dropdown.component';
23
24
  export * from './lib/ui/salutation-radiogroup/salutation-radiogroup.component';
24
25
  export * from './lib/ui/time-input/time-input.component';
25
26
  export * from './lib/ui/tooltip-icon/tooltip-icon.component';
27
+ export * from './lib/ui/tooltip/tooltip.component';
26
28
  export * from './lib/ui/yes-no-radiogroup/yes-no-radiogroup.component';
29
+ export * from './lib/directives/directives.module';
30
+ export * from './lib/directives/size.directive';
27
31
  export * from './lib/directives/sum-of-height.directive';
28
32
  export * from './lib/directives/swipe.directive';
29
33
  export * from './lib/directives/tooltip.directive';
34
+ export * from './lib/pipes/custom-pipes.module';
30
35
  export * from './lib/pipes/integer-currency.pipe';
31
36
  export * from './lib/pipes/safe-html.pipe';
32
37
  export * from './lib/pipes/safe-resource-url.pipe';
@@ -34,6 +39,3 @@ export * from './lib/pipes/safe-url.pipe';
34
39
  export * from './lib/pipes/trim.pipe';
35
40
  export * from './lib/pipes/typeof.pipe';
36
41
  export * from './lib/parent-components/form.component';
37
- export * from './lib/services/viewport.service';
38
- export * from './lib/ui/confirmation-dialog/confirmation-dialog.component';
39
- export * from './lib/ui/tooltip/tooltip.component';
@@ -26,22 +26,27 @@
26
26
  h4 {
27
27
  color: var(--accentColor01) !important;
28
28
  }
29
- .big {
30
- max-width: 1700px;
31
- width: 70vw;
32
- height: 90vh;
33
- }
34
- .middle {
35
- width: 600px;
36
- height: 90vh;
37
- }
38
- .small {
39
- width: 600px;
40
- height: 70vh;
41
- }
42
29
 
43
- .confirmation-dialog {
30
+ // possible sizes
31
+ .size {
44
32
  width: 600px;
45
- height: auto;
33
+
34
+ &-big {
35
+ max-width: 1700px;
36
+ width: 70vw;
37
+ height: 90vh;
38
+ }
39
+
40
+ &-middle {
41
+ height: 90vh;
42
+ }
43
+
44
+ &-small {
45
+ height: 70vh;
46
+ }
47
+
48
+ &-auto {
49
+ height: auto;
50
+ }
46
51
  }
47
52
  }