@smart-webcomponents-angular/window 15.0.23 → 16.0.2

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/index.d.ts CHANGED
@@ -169,6 +169,11 @@ export interface ThreeDChartProperties {
169
169
  * Default value: null
170
170
  */
171
171
  toolTipFormatFunction?: {(value?: any, index?: number, series?: any): string};
172
+ /**
173
+ * Tooltip data formatting settings for the values in the serie.
174
+ * Default value: [object Object]
175
+ */
176
+ toolTipFormatSettings?: ThreeDChartFormatSettings;
172
177
  /**
173
178
  * Tooltip line color. By default it is set to the hovered item's color
174
179
  * Default value: null
@@ -1896,6 +1901,16 @@ export interface BarcodeProperties {
1896
1901
  * Default value: ""
1897
1902
  */
1898
1903
  value?: string;
1904
+ /**
1905
+ * Sets or gets the width of the barcode. If the width is set to 0, the width of the barcode is calculated automatically.
1906
+ * Default value: 0
1907
+ */
1908
+ width?: number;
1909
+ /**
1910
+ * Sets or gets the height of the barcode. If the height is set to 0, the height of the barcode is calculated automatically.
1911
+ * Default value: 0
1912
+ */
1913
+ height?: number;
1899
1914
  }
1900
1915
  /**
1901
1916
  Barcodes encodes text value in a specific pattern.
@@ -9437,6 +9452,11 @@ export interface DropDownListProperties {
9437
9452
  * Default value: startsWithIgnoreCase
9438
9453
  */
9439
9454
  filterMode?: FilterMode | string;
9455
+ /**
9456
+ * A callback that should return a condition that will be used for custom item filtering. Used in conjunction with filterMode 'custom'
9457
+ * Default value: null
9458
+ */
9459
+ filterCallback?: any;
9440
9460
  /**
9441
9461
  * If enabled, the items will be grouped by their first letter. Can't be applied if the dataSource already contains groups.
9442
9462
  * Default value: false
@@ -10428,6 +10448,11 @@ export interface Editor extends BaseElement, EditorProperties {
10428
10448
  * instance - The toast item that is the target of the operation.
10429
10449
  */
10430
10450
  onMessageOpen?: ((this: any, ev: Event) => any) | ((this: any, ev: CustomEvent<any>) => any) | null;
10451
+ /**
10452
+ * Adds a new Toolbar item. Example: editor.addToolbarItem({ name: &#039;customButton2&#039;, width: 100, template: &#039;&lt;smart-button&gt;Button2&lt;/smart-button&gt;&#039; })
10453
+ * @param {any} itemName. The toolbar item to be added
10454
+ */
10455
+ addToolbarItem(itemName: any): void;
10431
10456
  /**
10432
10457
  * Blurs the content of the Editor.
10433
10458
  */
@@ -10494,6 +10519,12 @@ export interface Editor extends BaseElement, EditorProperties {
10494
10519
  * Hides the last shown message.
10495
10520
  */
10496
10521
  hideLastMessage(): void;
10522
+ /**
10523
+ * Inserts a new Toolbar item. Example: editor.insertToolbarItem({ name: &#039;customButton2&#039;, width: 100, template: &#039;&lt;smart-button&gt;Button2&lt;/smart-button&gt;&#039; })
10524
+ * @param {any} itemName. The toolbar item to be added
10525
+ * @param {number} index. The toolbar item's index
10526
+ */
10527
+ insertToolbarItem(itemName: any, index: number): void;
10497
10528
  /**
10498
10529
  * Shows a custom message inside the Editor.
10499
10530
  * @param {string} message. The text message to be displayed.
@@ -10533,6 +10564,11 @@ export interface Editor extends BaseElement, EditorProperties {
10533
10564
  * @param {boolean} value?. Determines whether to enter or leave split mode. By default the argument is not passed and the mode is toggled.
10534
10565
  */
10535
10566
  previewMode(value?: boolean): void;
10567
+ /**
10568
+ * Removes a Toolbar item. Example: editor.removeToolbarItem(0)
10569
+ * @param {number} index. The toolbar item's index
10570
+ */
10571
+ removeToolbarItem(index: number): void;
10536
10572
  /**
10537
10573
  * Sets Editor into Full Screen Mode. If enabled the Editor is positioned above the page content and fills the screen.
10538
10574
  * @param {boolean} value?. Determines whether to enter or leave split mode. By default the argument is not passed and the mode is toggled.
@@ -12606,12 +12642,12 @@ export interface FormProperties {
12606
12642
  * Callback function for handling status changes. The status could be 'disabled', 'invalid', 'pending', 'valid'.
12607
12643
  * Default value: null
12608
12644
  */
12609
- onStatusChanges?: any;
12645
+ onStatusChanges?: {(value: string): void};
12610
12646
  /**
12611
- * Callback function for handling value changes
12647
+ * Callback function for handling value changes. The function argument is the form's value as a JSON object.
12612
12648
  * Default value: null
12613
12649
  */
12614
- onValueChanges?: any;
12650
+ onValueChanges?: {(value: any): void};
12615
12651
  /**
12616
12652
  * Sets or Gets the labels position.
12617
12653
  * Default value: left
@@ -13025,21 +13061,31 @@ export interface FormGroupProperties {
13025
13061
  * Default value: 1
13026
13062
  */
13027
13063
  columns?: number;
13064
+ /**
13065
+ * Sets the Form control data field. The control's inner input's name is set to the dataField value and in the FormGroup it is accessible through the dataField value.
13066
+ * Default value: ""
13067
+ */
13068
+ dataField?: string;
13069
+ /**
13070
+ * Gets or Sets the Form control's label.
13071
+ * Default value: ""
13072
+ */
13073
+ label?: string;
13028
13074
  /**
13029
13075
  *
13030
13076
  * Default value: null
13031
13077
  */
13032
13078
  controls?: Control[];
13033
13079
  /**
13034
- * Callback function for handling status changes
13080
+ * Callback function for handling status changes. The function argument is a string which could be: 'valid', 'invalid', 'disabled', 'pending'
13035
13081
  * Default value: null
13036
13082
  */
13037
- onStatusChanges?: any;
13083
+ onStatusChanges?: {(value: string): void};
13038
13084
  /**
13039
- * Callback function for handling value changes
13085
+ * Callback function for handling value changes. The function argument is the form's value as a JSON object.
13040
13086
  * Default value: null
13041
13087
  */
13042
- onValueChanges?: any;
13088
+ onValueChanges?: {(value: any): void};
13043
13089
  /**
13044
13090
  * Sets or Gets the labels position.
13045
13091
  * Default value: left
@@ -13273,6 +13319,11 @@ export interface GanttChartProperties {
13273
13319
  * Default value: false
13274
13320
  */
13275
13321
  columnResizeFeedback?: boolean;
13322
+ /**
13323
+ * Gantt's current time. By default it is the today's date.
13324
+ * Default value:
13325
+ */
13326
+ currentTime?: string | Date;
13276
13327
  /**
13277
13328
  * Enables/Disables the current time indicator. Current time indicator shows the current time in the appropriate view cells.
13278
13329
  * Default value: false
@@ -13368,6 +13419,11 @@ export interface GanttChartProperties {
13368
13419
  * Default value: false
13369
13420
  */
13370
13421
  filterRow?: boolean;
13422
+ /**
13423
+ * Determines the view start day. Sunday is 0, Monday is 1, Saturday is 6. By default it's Sunday.
13424
+ * Default value: -1
13425
+ */
13426
+ firstDayOfWeek?: number;
13371
13427
  /**
13372
13428
  * Groups the tasks inside the Task timeline according to the resources they are assigned to. Unassigned tasks are placed in a default group labeled 'Unassigned'.
13373
13429
  * Default value: false
@@ -13384,10 +13440,20 @@ export interface GanttChartProperties {
13384
13440
  */
13385
13441
  hideDateMarkers?: boolean;
13386
13442
  /**
13387
- * By default the Timeline has a two level header - timeline details and timeline header. This property hides the header details container( the top container ).
13443
+ * By default the Timeline has a three level header - timeline details, timeline second details and timeline header. This property hides the header container( the bottom container ).
13444
+ * Default value: false
13445
+ */
13446
+ hideTimelineHeader?: boolean;
13447
+ /**
13448
+ * By default the Timeline has a three level header - timeline details, timeline second details and timeline header. This property hides the header details container( the top container ).
13388
13449
  * Default value: false
13389
13450
  */
13390
13451
  hideTimelineHeaderDetails?: boolean;
13452
+ /**
13453
+ * By default the Timeline has a three level header - timeline details and timeline header. This property hides the second header details container( the middle container ).
13454
+ * Default value: true
13455
+ */
13456
+ hideTimelineSecondHeaderDetails?: boolean;
13391
13457
  /**
13392
13458
  * Shows the selection column of the Task/Resource Table. When applied a checkbox column is displayed that allows to select tasks/resources.
13393
13459
  * Default value: false
@@ -13453,6 +13519,11 @@ export interface GanttChartProperties {
13453
13519
  * Default value: short
13454
13520
  */
13455
13521
  monthFormat?: MonthFormat | string;
13522
+ /**
13523
+ * Determines the scale in Month view.
13524
+ * Default value: week
13525
+ */
13526
+ monthScale?: MonthScale | string;
13456
13527
  /**
13457
13528
  * Determines the nonworking days of the week from 0 to 6, where 0 is the first day of the week and 6 is the last day. Nonworking days will be displayed with colored cells inside the timeline and will not affect the dateEnd of the tasks unless the adjustToNonworkingTime property is enabled.
13458
13529
  * Default value:
@@ -13463,6 +13534,11 @@ export interface GanttChartProperties {
13463
13534
  * Default value:
13464
13535
  */
13465
13536
  nonworkingHours?: number[] | number[][];
13537
+ /**
13538
+ * A function that can be used to completly customize the task element. The function has five arguments: task - the task object.segment - the task current segment object. If the task has only one segment, the task object is passed again.taskElement - the task's html element.segmentElement - the task's segment html element.labelElement - the task's segment label html element.
13539
+ * Default value: null
13540
+ */
13541
+ onTaskRender?: any;
13466
13542
  /**
13467
13543
  * A function that can be used to completly customize the popup Window that is used to interact width tasks by changing their properties. The function as three arguments: target - the target popup Window that is about to be opened.type - the type of the window. The type determines the purpose of the window. Three possible values: 'task' (task editing), 'confirm' ( confirmation window), 'connection' (used when deleting a connection between tasks). item - the connection/task object that is the target of the window.
13468
13544
  * Default value: null
@@ -13478,6 +13554,11 @@ export interface GanttChartProperties {
13478
13554
  * Default value: null
13479
13555
  */
13480
13556
  progressLabelFormatFunction?: any;
13557
+ /**
13558
+ * Determines the format of the dates the timeline header when they represent quarters.
13559
+ * Default value: short
13560
+ */
13561
+ quarterFormat?: QuarterFormat | string;
13481
13562
  /**
13482
13563
  * A getter that returns a flat structure as an array of all resources inside the element.
13483
13564
  * Default value: null
@@ -14385,6 +14466,11 @@ export interface GanttChartTask {
14385
14466
  * Default value: null
14386
14467
  */
14387
14468
  formatFunction?: any;
14469
+ /**
14470
+ * Project, Task or Milestone format function. The function gets passed the following arguments: task, segment, taskElement, segmentElement, labelElement. task - the task object.segment - the task current segment object. If the task has only one segment, the task object is passed again.taskElement - the task's html element.segmentElement - the task's segment html element.labelElement - the task's segment label html element.
14471
+ * Default value: null
14472
+ */
14473
+ onRender?: any;
14388
14474
  /**
14389
14475
  * Project, Task or Milestone max start date.
14390
14476
  * Default value:
@@ -14647,6 +14733,10 @@ export declare type GanttDayFormat = '2-digit' | 'numeric' | 'long' | 'short' |
14647
14733
  export declare type Duration = 'day' | 'hour' | 'minute' | 'second' | 'milisecond';
14648
14734
  /**Determines the format of the dates inside the timeline header when they represent hours. */
14649
14735
  export declare type HourFormat = 'default' | '2-digit' | 'numeric';
14736
+ /**Determines the scale in Month view. */
14737
+ export declare type MonthScale = 'day' | 'week';
14738
+ /**Determines the format of the dates the timeline header when they represent quarters. */
14739
+ export declare type QuarterFormat = 'numeric' | 'long' | 'short';
14650
14740
  /**Determines how the capacity of the resources will be visualized inside the resource timeline. By default, the capacity is measured in hours depending on the <b>view</b> property of the element. */
14651
14741
  export declare type GanttChartResourceTimelineMode = 'diagram' | 'histogram' | 'custom';
14652
14742
  /**Determines how the resources will be displayed inside the resource Timeline. */
@@ -14661,7 +14751,7 @@ month - the timeline shows the days of the month.
14661
14751
  year - the timeline shows the months of the year.
14662
14752
  resource - displays the current tasks by grouping them according to the resources they have assigned. The unassigned tasks will be placed in a separate group called 'Unassigned'.
14663
14753
  <br /> The timeline has a header section that contains the labels of each cell according to the date inside them. The header is splitted in two sections in order to give a more detailed information of the dates. */
14664
- export declare type GanttChartView = 'day' | 'week' | 'month' | 'year';
14754
+ export declare type GanttChartView = 'day' | 'week' | 'month' | 'quarter' | 'year';
14665
14755
  /**Determines the format of the dates inside the timeline header when they represent weeks. */
14666
14756
  export declare type WeekFormat = 'long' | 'numeric';
14667
14757
  export interface GaugeProperties {
@@ -16423,6 +16513,16 @@ export interface GridAppearance {
16423
16513
  * Default value: true
16424
16514
  */
16425
16515
  showRowLines?: boolean;
16516
+ /**
16517
+ * Shows lines between columns in column groups.
16518
+ * Default value: true
16519
+ */
16520
+ showColumnGroupLines?: boolean;
16521
+ /**
16522
+ * Shows lines between cells in column groups.
16523
+ * Default value: true
16524
+ */
16525
+ showColumnGroupCellLines?: boolean;
16426
16526
  /**
16427
16527
  * Shows column groups in the Hide columns panel. Column groups and columns are shown in a tree-like structure. When the property is set to false, the column groups are not displayed and the column labels contain the column group name.
16428
16528
  * Default value: false
@@ -16444,10 +16544,10 @@ export interface GridAppearance {
16444
16544
  */
16445
16545
  showFrozenColumnBackground?: boolean;
16446
16546
  /**
16447
- * Shows filtered row background, when the Grid has frozen rows.
16448
- * Default value: true
16547
+ * Shows the selection on top of all other styles.
16548
+ * Default value: false
16449
16549
  */
16450
- showFrozenRowBackground?: boolean;
16550
+ showSelectionOnTop?: boolean;
16451
16551
  /**
16452
16552
  * Shows column sort button.
16453
16553
  * Default value: true
@@ -16748,6 +16848,11 @@ export interface GridColumn {
16748
16848
  * Default value: default
16749
16849
  */
16750
16850
  filterMenuMode?: GridColumnFilterMenuMode | string;
16851
+ /**
16852
+ * Sets or gets the column's filter editor. The value is an object with the following possible options: template: string, condition: string, onInit: any - callback function for init purposes, min: number, max: number, minLength: number, maxLength: number
16853
+ * Default value: null
16854
+ */
16855
+ filterEditor?: any;
16751
16856
  /**
16752
16857
  * Sets or gets the column's format function.
16753
16858
  * Default value: null
@@ -18165,6 +18270,11 @@ export interface GridStateSettings {
18165
18270
  * Default value: false
18166
18271
  */
18167
18272
  autoSave?: boolean;
18273
+ /**
18274
+ * Enables or disables auto-load of the Grid's state on page reload.
18275
+ * Default value: false
18276
+ */
18277
+ autoLoad?: boolean;
18168
18278
  /**
18169
18279
  * Enables or disables save/load of the grid state.
18170
18280
  * Default value: true
@@ -19749,10 +19859,10 @@ export interface Kanban extends BaseElement, KanbanProperties {
19749
19859
  */
19750
19860
  getSelectedTasks(id: number): any;
19751
19861
  /**
19752
- * Gets the Kanban's state.
19753
- * @returns
19862
+ * Gets the Kanban's state. Returns an object with the following type: { collapsed: {}, dataSource: [], filtering: { filters: [], operator: string }, selection: { selected: [], selectionStart?: number | string, selectionInColumn: string, swimlane: string }, sorting: { dataFields: [], dataTypes: [], orderBy: [] }, tabs: [], visibility: { taskActions: boolean, taskComments: boolean, taskDue: boolean, taskPriority: boolean, taskProgress: boolean, taskTags: boolean, taskUserIcon: boolean } }
19863
+ * @returns {any}
19754
19864
  */
19755
- getState(): { collapsed: {}, dataSource: [], filtering: { filters: [], operator: string }, selection: { selected: [], selectionStart: number | string, selectionInColumn: string, swimlane: string }, sorting: { dataFields: [], dataTypes: [], orderBy: [] }, tabs: [], visibility: { taskActions: boolean, taskComments: boolean, taskDue: boolean, taskPriority: boolean, taskProgress: boolean, taskTags: boolean, taskUserIcon: boolean } };
19865
+ getState(): any;
19756
19866
  /**
19757
19867
  * Loads the Kanban's state.
19758
19868
  * @param state?. An object returned by one of the methods getState or saveState. If not passed, gets saved state from the browser's localStorage.
@@ -25300,6 +25410,11 @@ export interface QRcodeProperties {
25300
25410
  * Default value: "H"
25301
25411
  */
25302
25412
  errorLevel?: string;
25413
+ /**
25414
+ * Sets color to the transparent parts of the embedded image. Background remains transparent if set to empty string.
25415
+ * Default value: ""
25416
+ */
25417
+ imageBackgroundColor?: string;
25303
25418
  /**
25304
25419
  * Sets the height of the embedded image.
25305
25420
  * Default value: 15
@@ -25360,6 +25475,16 @@ export interface QRcodeProperties {
25360
25475
  * Default value: ""
25361
25476
  */
25362
25477
  value?: string;
25478
+ /**
25479
+ * Sets or gets the width of the QR Code. If the width is set to 0, the width of the QR Code is calculated automatically.
25480
+ * Default value: 0
25481
+ */
25482
+ width?: number;
25483
+ /**
25484
+ * Sets or gets the height of the QR Code. If the height is set to 0, the height of the QR Code is calculated automatically.
25485
+ * Default value: 0
25486
+ */
25487
+ height?: number;
25363
25488
  }
25364
25489
  /**
25365
25490
  QR Codes encode text values in a two-dimensional pattern.
@@ -26133,6 +26258,11 @@ export interface SchedulerProperties {
26133
26258
  * Default value: #D50000,#E67C73,#F4511E,#F6BF26,#33B679,#0B8043,#039BE5,#3F51B5,#7986CB,#8E24AA,#616161,
26134
26259
  */
26135
26260
  colorScheme?: string[];
26261
+ /**
26262
+ * Determines the current time of the Scheduler to use for the current time indicator functionality. By default the current time is Today.
26263
+ * Default value: new Date()
26264
+ */
26265
+ currentTime?: string | Date;
26136
26266
  /**
26137
26267
  * Enables/Disables the current time indicator. Current time indicator shows the current time in the appropriate view cells.
26138
26268
  * Default value: false
@@ -26489,7 +26619,7 @@ export interface SchedulerProperties {
26489
26619
  */
26490
26620
  restrictedHours?: any;
26491
26621
  /**
26492
- * Defines an array of dates and hours that are not allowed to have events on. Events that overlap restricted Hours or start/end on them will not be displayed. Each array item is an Object and requires 2 fields - date and hours. For example: { date: new Date(2022, 10, 1), hours: [[0, 6], 12, [20, 23]] }. The hours define a range of restricted hours similartly to the restricted hours property, the date defines a date where the restricted hours will be applied.
26622
+ * Defines an array of dates and hours that are not allowed to have events on. Events that overlap restricted Hours or start/end on them will not be displayed. Each array item is an Object and requires 2 fields - date and hours. For example: { date: new Date(2023, 10, 1), hours: [[0, 6], 12, [20, 23]] }. The hours define a range of restricted hours similartly to the restricted hours property, the date defines a date where the restricted hours will be applied.
26493
26623
  * Default value:
26494
26624
  */
26495
26625
  restricted?: any;
@@ -29448,6 +29578,10 @@ export interface Table extends BaseElement, TableProperties {
29448
29578
  * @param {string | number} row. The id of the cell's row.
29449
29579
  */
29450
29580
  removeRow(row: string | number): void;
29581
+ /**
29582
+ * Resets the Table's state. Information about columns, expanded rows, selected rows, applied fitering, grouping, and sorted columns is cleared, based on the value of the <strong>stateSettings</strong> property.
29583
+ */
29584
+ resetState(): void;
29451
29585
  /**
29452
29586
  * Saves the Table's state. Information about columns, expanded rows, selected rows, applied fitering, grouping, and sorted columns is saved, based on the value of the <strong>stateSettings</strong> property.
29453
29587
  * @returns {any}
@@ -30477,6 +30611,11 @@ export interface TextAreaProperties {
30477
30611
  * Default value: false
30478
30612
  */
30479
30613
  readonly?: boolean;
30614
+ /**
30615
+ * Determines whether ot not the user can resize the Textarea.
30616
+ * Default value: none
30617
+ */
30618
+ resize?: TextAreaResize | string;
30480
30619
  /**
30481
30620
  * Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts.
30482
30621
  * Default value: false
@@ -30507,6 +30646,11 @@ export interface TextAreaProperties {
30507
30646
  * Default value: false
30508
30647
  */
30509
30648
  unfocusable?: boolean;
30649
+ /**
30650
+ * Sets the TextArea users. Expects an array of objects. Each object should have an id and name properties. When you press the 'at' key, you can enter an user from a dropdown.
30651
+ * Default value: []
30652
+ */
30653
+ users?: any[];
30510
30654
  /**
30511
30655
  * Sets or gets the value of the element.
30512
30656
  * Default value: ""
@@ -30544,6 +30688,11 @@ export interface TextArea extends BaseElement, TextAreaProperties {
30544
30688
  * Ensures that the active ( selected ) item is always visible.
30545
30689
  */
30546
30690
  ensureVisible(): void;
30691
+ /**
30692
+ * Returns an array of users mentioned in the Textarea's value.
30693
+ * @returns {any[]}
30694
+ */
30695
+ getMentions(): any[];
30547
30696
  /**
30548
30697
  * Opens the drop down.
30549
30698
  */
@@ -30566,6 +30715,8 @@ declare global {
30566
30715
 
30567
30716
  /**Determines the auto complete query mode. This property also determines the matching algorithm for the autocomplete operation. */
30568
30717
  export declare type TextAreaQueryMode = 'contains' | 'containsIgnoreCase' | 'doesNotContain' | 'doesNotContainIgnoreCase' | 'equals' | 'equalsIgnoreCase' | 'startsWith' | 'startsWithIgnoreCase' | 'endsWith' | 'endsWithIgnoreCase';
30718
+ /**Determines whether ot not the user can resize the Textarea. */
30719
+ export declare type TextAreaResize = 'none' | 'horizontal' | 'vertical' | 'both';
30569
30720
  export interface TextBoxProperties {
30570
30721
  /**
30571
30722
  * Sets or gets the animation mode. Animation is disabled when the property is set to 'none'
package/package.json CHANGED
@@ -1,15 +1,14 @@
1
1
  {
2
2
  "name": "@smart-webcomponents-angular/window",
3
- "version": "15.0.23",
3
+ "version": "16.0.2",
4
4
  "preferGlobal": true,
5
5
  "keywords": [
6
6
  "angular",
7
7
  "angular window",
8
- "angular 11 window",
9
- "angular 12 window",
10
8
  "angular 13 window",
11
9
  "angular 14 window",
12
10
  "angular 15 window",
11
+ "angular 16 window",
13
12
  "window",
14
13
  "angular window component",
15
14
  "window for angular",
@@ -23,24 +22,24 @@
23
22
  "tslib": "^2.3.0"
24
23
  },
25
24
  "devDependencies": {
26
- "@angular/animations": "12 - 14",
27
- "@angular/common": "12 - 14",
28
- "@angular/compiler": "12 - 14",
29
- "@angular/core": "12 - 14",
30
- "@angular/forms": "12 - 14",
31
- "@angular/platform-browser": "12 - 14",
25
+ "@angular/animations": "13 - 16",
26
+ "@angular/common": "13 - 16",
27
+ "@angular/compiler": "13 - 16",
28
+ "@angular/core": "13 - 16",
29
+ "@angular/forms": "13 - 16",
30
+ "@angular/platform-browser": "12 - 16",
32
31
  "core-js": "^2.6.9",
33
32
  "rxjs": "^6.5.3",
34
33
  "systemjs": "0.19.43",
35
34
  "zone.js": "~0.11.4",
36
- "@angular-devkit/core": "12 - 14",
37
- "@angular-devkit/schematics": "12 - 14",
38
- "@angular/bazel": "12 - 14",
39
- "@angular/compiler-cli": "12 - 14",
40
- "@angular/platform-browser-dynamic": "12 - 14",
41
- "@angular/platform-server": "12 - 14",
42
- "@angular/router": "12 - 14",
43
- "typescript": "~4.4.2"
35
+ "@angular-devkit/core": "13 - 16",
36
+ "@angular-devkit/schematics": "13 - 16",
37
+ "@angular/bazel": "13 - 16",
38
+ "@angular/compiler-cli": "13 - 16",
39
+ "@angular/platform-browser-dynamic": "13 - 16",
40
+ "@angular/platform-server": "13 - 16",
41
+ "@angular/router": "13 - 16",
42
+ "typescript": "~4.9.5"
44
43
  },
45
44
  "author": "jQWidgets <support@jqwidgets.com> (https://www.htmlelements.com/)",
46
45
  "license": "SEE LICENSE IN https://www.htmlelements.com/license/",
@@ -52,8 +51,8 @@
52
51
  "es2015": "./fesm2015/smart-webcomponents-angular-window.mjs",
53
52
  "es2020": "./fesm2020/smart-webcomponents-angular-window.mjs",
54
53
  "esm2020": "./esm2020/window/smart-webcomponents-angular-window.mjs",
55
- "typings": "./window/smart-webcomponents-angular-window.d.ts",
56
- "types": "./window/smart-webcomponents-angular-window.d.ts",
54
+ "typings": "./window/index.d.ts",
55
+ "types": "./window/index.d.ts",
57
56
  "sideEffects": true,
58
57
  "scripts": {
59
58
  "start": "node start.js",
@@ -1,5 +1,5 @@
1
1
 
2
- /* Smart UI v15.0.23 (2023-02-10)
2
+ /* Smart UI v16.0.2 (2023-08-04)
3
3
  Copyright (c) 2011-2023 jQWidgets.
4
4
  License: https://htmlelements.com/license/ */ //
5
5
 
@@ -1,5 +1,5 @@
1
1
 
2
- /* Smart UI v15.0.23 (2023-02-10)
2
+ /* Smart UI v16.0.2 (2023-08-04)
3
3
  Copyright (c) 2011-2023 jQWidgets.
4
4
  License: https://htmlelements.com/license/ */ //
5
5
 
@@ -1,5 +1,5 @@
1
1
 
2
- /* Smart UI v15.0.23 (2023-02-10)
2
+ /* Smart UI v16.0.2 (2023-08-04)
3
3
  Copyright (c) 2011-2023 jQWidgets.
4
4
  License: https://htmlelements.com/license/ */ //
5
5