@netgrif/components-core 6.2.2 → 6.2.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.
Files changed (22) hide show
  1. package/esm2020/assets/i18n/de.json +2 -1
  2. package/esm2020/assets/i18n/en.json +2 -1
  3. package/esm2020/assets/i18n/sk.json +2 -1
  4. package/esm2020/lib/authentication/components/abstract-authentication-overlay.mjs +4 -1
  5. package/esm2020/lib/data-fields/file-field/abstract-file-field.component.mjs +2 -1
  6. package/esm2020/lib/data-fields/i18n-field/i18n-divider-field/abstract-i18n-divider-field.component.mjs +7 -1
  7. package/esm2020/lib/data-fields/i18n-field/models/i18n-field.mjs +5 -5
  8. package/esm2020/lib/data-fields/models/abstract-data-field.mjs +1 -1
  9. package/esm2020/lib/data-fields/multichoice-field/multichoice-autocomplete-field/abstract-multichoice-autocomplete-field-component.component.mjs +5 -2
  10. package/esm2020/lib/side-menu/content-components/new-case/abstract-new-case.component.mjs +13 -2
  11. package/fesm2015/netgrif-components-core.mjs +36 -9
  12. package/fesm2015/netgrif-components-core.mjs.map +1 -1
  13. package/fesm2020/netgrif-components-core.mjs +35 -9
  14. package/fesm2020/netgrif-components-core.mjs.map +1 -1
  15. package/lib/data-fields/i18n-field/i18n-divider-field/abstract-i18n-divider-field.component.d.ts +1 -0
  16. package/lib/data-fields/models/abstract-data-field.d.ts +1 -1
  17. package/lib/data-fields/multichoice-field/multichoice-autocomplete-field/abstract-multichoice-autocomplete-field-component.component.d.ts +1 -0
  18. package/lib/side-menu/content-components/new-case/abstract-new-case.component.d.ts +2 -0
  19. package/package.json +1 -1
  20. package/src/assets/i18n/de.json +2 -1
  21. package/src/assets/i18n/en.json +3 -1
  22. package/src/assets/i18n/sk.json +2 -1
@@ -7,6 +7,7 @@ export declare abstract class AbstractI18nDividerFieldComponent {
7
7
  formControlRef: FormControl;
8
8
  showLargeLayout: WrappedBoolean;
9
9
  getDividerColor(): string;
10
+ isDividerLGBTQ(): boolean;
10
11
  getDividerFontSize(): string;
11
12
  dividerPropertyEnabled(property: string): boolean;
12
13
  static ɵfac: i0.ɵɵFactoryDeclaration<AbstractI18nDividerFieldComponent, never>;
@@ -137,7 +137,7 @@ export declare abstract class DataField<T> {
137
137
  set title(title: string);
138
138
  get title(): string;
139
139
  set placeholder(placeholder: string);
140
- get placeholder(): string;
140
+ get placeholder(): string | undefined;
141
141
  set description(desc: string);
142
142
  get description(): string;
143
143
  set behavior(behavior: Behavior);
@@ -19,6 +19,7 @@ export declare abstract class AbstractMultichoiceAutocompleteFieldComponentCompo
19
19
  change(): void;
20
20
  private _filter;
21
21
  renderSelection: (key: any) => any;
22
+ getValueFromKey(key: string): string | undefined;
22
23
  static ɵfac: i0.ɵɵFactoryDeclaration<AbstractMultichoiceAutocompleteFieldComponentComponent, never>;
23
24
  static ɵcmp: i0.ɵɵComponentDeclaration<AbstractMultichoiceAutocompleteFieldComponentComponent, "ncc-abstract-multichoice-autocomplete-field", never, { "multichoiceField": "multichoiceField"; "formControlRef": "formControlRef"; "showLargeLayout": "showLargeLayout"; }, {}, never, never>;
24
25
  }
@@ -10,6 +10,7 @@ import { TranslateService } from '@ngx-translate/core';
10
10
  import { HotkeysService } from 'angular2-hotkeys';
11
11
  import { MatToolbar } from '@angular/material/toolbar';
12
12
  import { MatOption } from '@angular/material/core';
13
+ import { LoadingEmitter } from '../../../utility/loading-emitter';
13
14
  import * as i0 from "@angular/core";
14
15
  interface Form {
15
16
  value: string;
@@ -32,6 +33,7 @@ export declare abstract class AbstractNewCaseComponent implements OnDestroy {
32
33
  toolbar: MatToolbar;
33
34
  stepper1: any;
34
35
  stepper2: any;
36
+ loadingSubmit: LoadingEmitter;
35
37
  protected _options$: ReplaySubject<Array<Form>>;
36
38
  protected _injectedData: NewCaseInjectionData;
37
39
  protected _hasMultipleNets$: ReplaySubject<boolean>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@netgrif/components-core",
3
- "version": "6.2.2",
3
+ "version": "6.2.3",
4
4
  "description": "Netgrif Application engine frontend core Angular library",
5
5
  "homepage": "https://components.netgrif.com",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -387,7 +387,8 @@
387
387
  },
388
388
  "ldapGroup-list": {
389
389
  "noLdapGroupsWereFound": "Keine LDAP Gruppe wurde gefunden",
390
- "listTitle": "LDAP Gruppen"
390
+ "listTitle": "LDAP Gruppen",
391
+ "count": "Anzahl der Gruppen"
391
392
  },
392
393
  "process-list": {
393
394
  "newestVersion": "Neuste Version",
@@ -387,7 +387,9 @@
387
387
  },
388
388
  "ldapGroup-list": {
389
389
  "noLdapGroupsWereFound": "No LDAP group was found",
390
- "listTitle": "Ldap Groups"
390
+ "listTitle": "LDAP groups",
391
+ "count": "Number of groups"
392
+
391
393
  },
392
394
  "process-list": {
393
395
  "newestVersion": "Newest version",
@@ -387,7 +387,8 @@
387
387
  },
388
388
  "ldapGroup-list": {
389
389
  "noLdapGroupsWereFound": "Žiadna LDAP skupina nebola najdená",
390
- "listTitle": "Ldap Skupiny"
390
+ "listTitle": "LDAP Skupiny",
391
+ "count": "Počet skupín"
391
392
  },
392
393
  "process-list": {
393
394
  "newestVersion": "Najnovšia verzia",