@rangertechnologies/ngnxt 2.1.283 → 2.1.284

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,8 +1,6 @@
1
1
  import { EventEmitter } from '@angular/core';
2
- import { DomSanitizer } from '@angular/platform-browser';
3
2
  import * as i0 from "@angular/core";
4
3
  export declare class IconSelectorComponent {
5
- private sanitizer;
6
4
  allIcons: [];
7
5
  themeColor: string;
8
6
  height: string;
@@ -24,12 +22,10 @@ export declare class IconSelectorComponent {
24
22
  filteredIcons: any[];
25
23
  searchQuery: string;
26
24
  showDropdown: boolean;
27
- constructor(sanitizer: DomSanitizer);
28
25
  ngOnInit(): void;
29
26
  filterIcons(): void;
30
27
  selectIcon(icon: any): void;
31
28
  toggleDropdown(): void;
32
- getSVG(icon: any): import("@angular/platform-browser").SafeHtml;
33
29
  static ɵfac: i0.ɵɵFactoryDeclaration<IconSelectorComponent, never>;
34
30
  static ɵcmp: i0.ɵɵComponentDeclaration<IconSelectorComponent, "nxt-icon-selector", never, { "allIcons": { "alias": "allIcons"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "height": { "alias": "height"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "selectedIcon": { "alias": "selectedIcon"; "required": false; }; "cdnIconURL": { "alias": "cdnIconURL"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelFont": { "alias": "labelFont"; "required": false; }; "labelWeight": { "alias": "labelWeight"; "required": false; }; "inputWeight": { "alias": "inputWeight"; "required": false; }; "labelSize": { "alias": "labelSize"; "required": false; }; "labelColor": { "alias": "labelColor"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "required": { "alias": "required"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "question": { "alias": "question"; "required": false; }; "options": { "alias": "options"; "required": false; }; }, { "iconSelected": "iconSelected"; }, never, never, true, never>;
35
31
  }
@@ -7,6 +7,7 @@ interface ListView {
7
7
  labelPath: any;
8
8
  order: number;
9
9
  isDefault: boolean;
10
+ isSelected: boolean;
10
11
  system: boolean;
11
12
  conditions: ListViewFilter[];
12
13
  columns: ListViewColumn[];
@@ -58,6 +59,7 @@ export declare class ListViewFilterComponent implements OnInit {
58
59
  label: string;
59
60
  labelPath: string;
60
61
  isDefault: boolean;
62
+ isSelected: boolean;
61
63
  system: boolean;
62
64
  order: number;
63
65
  conditions: any[];
@@ -52,6 +52,7 @@ export declare class BookletComponent implements OnInit {
52
52
  answerList: any[];
53
53
  dataBind: any;
54
54
  allEvents: any[];
55
+ isEditVal: boolean;
55
56
  questionbookComponent: QuestionbookComponent;
56
57
  constructor(sfService: SalesforceService, dataService: DataService, storageService: StorageService, sanitizer: DomSanitizer, changeService: ChangeService, http: HttpClient, translationService: TranslationService);
57
58
  ngOnInit(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rangertechnologies/ngnxt",
3
- "version": "2.1.283",
3
+ "version": "2.1.284",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.2.14",
6
6
  "@angular/core": "^19.2.14"
package/public-api.d.ts CHANGED
@@ -9,6 +9,8 @@ export * from './lib/components/datatable/datatable.component';
9
9
  export * from './lib/components/button/nxt-button.component';
10
10
  export * from './lib/pages/pdfDesigner/pdf-designer/pdf-designer.component';
11
11
  export * from './lib/components/nxt-input/nxt-input.component';
12
+ export * from './lib/components/custom-dropdown/custom-dropdown.component';
13
+ export * from './lib/components/file-upload/file-upload.component';
12
14
  export * from './lib/components/list-view-filter/list-view-filter.component';
13
15
  export * from './lib/components/search-box/search-box.component';
14
16
  export * from './lib/components/icon-selector/icon-selector.component';
@@ -1,10 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
3
- import * as i0 from "@angular/core";
4
- export declare class SvgPipe implements PipeTransform {
5
- private sanitizer;
6
- constructor(sanitizer: DomSanitizer);
7
- transform(icon: any): SafeHtml;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<SvgPipe, never>;
9
- static ɵpipe: i0.ɵɵPipeDeclaration<SvgPipe, "svg", true>;
10
- }