igniteui-webcomponents-grids 4.3.0-beta.2 → 4.3.0-beta.4

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 (48) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +102 -94
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/esm2015/lib/ColumnFilterCondition_combined.js +101 -94
  4. package/esm2015/lib/ComboEditorView.js +1 -0
  5. package/esm5/lib/ColumnFilterCondition_combined.js +101 -94
  6. package/esm5/lib/ComboEditorView.js +1 -0
  7. package/fesm2015/igniteui-webcomponents-grids.js +102 -94
  8. package/fesm5/igniteui-webcomponents-grids.js +102 -94
  9. package/grids/3rdpartylicenses.txt +201 -0
  10. package/grids/combined.js +54960 -81
  11. package/grids/index.d.ts +1 -3
  12. package/grids/lib/igc-base-toolbar-directive.d.ts +0 -4
  13. package/grids/lib/igc-cell-type.d.ts +6 -0
  14. package/grids/lib/igc-column-component.d.ts +1 -65
  15. package/grids/lib/igc-column-group-component.d.ts +0 -24
  16. package/grids/lib/igc-column-layout-component.d.ts +0 -26
  17. package/grids/lib/igc-column-pipe-args.d.ts +1 -0
  18. package/grids/lib/igc-data-clone-strategy.d.ts +5 -0
  19. package/grids/lib/igc-dimensions-change.d.ts +0 -1
  20. package/grids/lib/igc-display-density-base.d.ts +3 -5
  21. package/grids/lib/igc-grid-action-button-component.d.ts +0 -1
  22. package/grids/lib/igc-grid-actions-base-directive.d.ts +0 -11
  23. package/grids/lib/igc-grid-base-directive.d.ts +59 -554
  24. package/grids/lib/igc-grid-component.d.ts +3 -86
  25. package/grids/lib/igc-grid-editing-actions-component.d.ts +0 -16
  26. package/grids/lib/igc-paginator-component.d.ts +0 -16
  27. package/grids/lib/igc-pivot-aggregator.d.ts +1 -0
  28. package/grids/lib/igc-pivot-configuration-changed-event-args.d.ts +23 -0
  29. package/grids/lib/igc-pivot-configuration.d.ts +1 -0
  30. package/grids/lib/igc-pivot-dimension-strategy.d.ts +2 -1
  31. package/grids/lib/igc-pivot-grid-component.d.ts +16 -53
  32. package/grids/lib/igc-pivot-keys.d.ts +1 -0
  33. package/grids/lib/igc-pivot-value.d.ts +1 -0
  34. package/grids/lib/igc-sorting-options.d.ts +1 -0
  35. package/grids/lib/igc-tree-grid-component.d.ts +12 -35
  36. package/grids/styles.css +1 -1
  37. package/grids/themes/dark/bootstrap.css +1 -1
  38. package/grids/themes/dark/fluent.css +1 -1
  39. package/grids/themes/dark/indigo.css +1 -1
  40. package/grids/themes/dark/material.css +1 -1
  41. package/grids/themes/light/bootstrap.css +1 -1
  42. package/grids/themes/light/fluent.css +1 -1
  43. package/grids/themes/light/indigo.css +1 -1
  44. package/grids/themes/light/material.css +1 -1
  45. package/package.json +4 -4
  46. package/grids/lib/igc-grid-filtering-row-component.d.ts +0 -16
  47. package/grids/lib/igc-mrl-column-size-info.d.ts +0 -18
  48. package/grids/lib/igc-mrl-resize-column-info.d.ts +0 -18
@@ -11223,8 +11223,13 @@ let Pager = /*@__PURE__*/ (() => {
11223
11223
  this.b.isSectionSummaryRowsAtBottom = true;
11224
11224
  break;
11225
11225
  }
11226
+ this.ad = 0;
11226
11227
  this.b7();
11227
11228
  this.b6();
11229
+ this.b1();
11230
+ if (this.n != null) {
11231
+ this.n.v();
11232
+ }
11228
11233
  }
11229
11234
  }
11230
11235
  bj(a, b) {
@@ -23468,112 +23473,114 @@ let DefinitionBase = /*@__PURE__*/ (() => {
23468
23473
  return d;
23469
23474
  }
23470
23475
  u(a, b) {
23471
- let c = b != null ? b.value.toString() : stringEmpty();
23476
+ let c = b != null && b.value != null ? b.value.toString() : stringEmpty();
23472
23477
  let d = a.g;
23473
23478
  if (a.i == 4) {
23474
23479
  d = 1;
23475
23480
  }
23476
23481
  let e = b.value;
23477
- switch (d) {
23478
- case 10:
23479
- if (a.w != null) {
23480
- let override_ = a.w;
23481
- let val_ = typeGetValue(e);
23482
- c = (override_.format(val_));
23483
- }
23484
- else {
23485
- c = (typeGetValue(e)).toString();
23486
- }
23487
- break;
23488
- case 8:
23489
- if (a.w != null) {
23490
- let override_ = a.w;
23491
- let val_ = e;
23492
- c = (override_.format(val_));
23493
- }
23494
- else {
23482
+ if (e != null) {
23483
+ switch (d) {
23484
+ case 10:
23485
+ if (a.w != null) {
23486
+ let override_ = a.w;
23487
+ let val_ = typeGetValue(e);
23488
+ c = (override_.format(val_));
23489
+ }
23490
+ else {
23491
+ c = (typeGetValue(e)).toString();
23492
+ }
23493
+ break;
23494
+ case 8:
23495
+ if (a.w != null) {
23496
+ let override_ = a.w;
23497
+ let val_ = e;
23498
+ c = (override_.format(val_));
23499
+ }
23500
+ else {
23501
+ c = e.toString();
23502
+ }
23503
+ break;
23504
+ case 5:
23505
+ if (a.w != null) {
23506
+ let override_ = a.w;
23507
+ let val_ = e;
23508
+ c = (override_.format(val_));
23509
+ }
23510
+ else {
23511
+ let summaryValue_ = e;
23512
+ let maxFractionDigits_ = a.u;
23513
+ c = (parseFloat(summaryValue_.toFixed(maxFractionDigits_)).toString());
23514
+ }
23515
+ break;
23516
+ case 1:
23517
+ if (a.w != null) {
23518
+ let override_ = a.w;
23519
+ let val_ = typeGetValue(e);
23520
+ c = (override_.format(val_));
23521
+ }
23522
+ else {
23523
+ c = (typeGetValue(e)).toString();
23524
+ }
23525
+ break;
23526
+ case 3:
23527
+ if (a.w != null) {
23528
+ let override_ = a.w;
23529
+ let val_ = typeGetValue(e);
23530
+ c = (override_.format(val_));
23531
+ }
23532
+ else {
23533
+ c = typeGetValue(e).toString();
23534
+ }
23535
+ break;
23536
+ case 4:
23537
+ if (a.w != null) {
23538
+ let override_ = a.w;
23539
+ let val_ = typeGetValue(e);
23540
+ c = (override_.format(val_));
23541
+ }
23542
+ else {
23543
+ c = typeGetValue(e).toString();
23544
+ }
23545
+ break;
23546
+ case 7:
23547
+ if (a.w != null) {
23548
+ let override_ = a.w;
23549
+ let val_ = e;
23550
+ c = (override_.format(val_));
23551
+ }
23552
+ else {
23553
+ let summaryValue_ = e;
23554
+ let maxFractionDigits_ = a.u;
23555
+ c = (parseFloat(summaryValue_.toFixed(maxFractionDigits_)).toString());
23556
+ }
23557
+ break;
23558
+ case 6:
23559
+ if (a.w != null) {
23560
+ let override_ = a.w;
23561
+ let val_ = e;
23562
+ c = (override_.format(val_));
23563
+ }
23564
+ else {
23565
+ let summaryValue_ = e;
23566
+ let maxFractionDigits_ = a.u;
23567
+ c = (parseFloat(summaryValue_.toFixed(maxFractionDigits_)).toString());
23568
+ }
23569
+ break;
23570
+ case 0:
23571
+ case 2:
23572
+ case 11:
23495
23573
  c = e.toString();
23496
- }
23497
- break;
23498
- case 5:
23499
- if (a.w != null) {
23500
- let override_ = a.w;
23501
- let val_ = e;
23502
- c = (override_.format(val_));
23503
- }
23504
- else {
23505
- let summaryValue_ = e;
23506
- let maxFractionDigits_ = a.u;
23507
- c = (parseFloat(summaryValue_.toFixed(maxFractionDigits_)).toString());
23508
- }
23509
- break;
23510
- case 1:
23511
- if (a.w != null) {
23512
- let override_ = a.w;
23513
- let val_ = typeGetValue(e);
23514
- c = (override_.format(val_));
23515
- }
23516
- else {
23517
- c = (typeGetValue(e)).toString();
23518
- }
23519
- break;
23520
- case 3:
23521
- if (a.w != null) {
23522
- let override_ = a.w;
23523
- let val_ = typeGetValue(e);
23524
- c = (override_.format(val_));
23525
- }
23526
- else {
23527
- c = typeGetValue(e).toString();
23528
- }
23529
- break;
23530
- case 4:
23531
- if (a.w != null) {
23532
- let override_ = a.w;
23533
- let val_ = typeGetValue(e);
23534
- c = (override_.format(val_));
23535
- }
23536
- else {
23537
- c = typeGetValue(e).toString();
23538
- }
23539
- break;
23540
- case 7:
23541
- if (a.w != null) {
23542
- let override_ = a.w;
23543
- let val_ = e;
23544
- c = (override_.format(val_));
23545
- }
23546
- else {
23547
- let summaryValue_ = e;
23548
- let maxFractionDigits_ = a.u;
23549
- c = (parseFloat(summaryValue_.toFixed(maxFractionDigits_)).toString());
23550
- }
23551
- break;
23552
- case 6:
23553
- if (a.w != null) {
23554
- let override_ = a.w;
23555
- let val_ = e;
23556
- c = (override_.format(val_));
23557
- }
23558
- else {
23559
- let summaryValue_ = e;
23560
- let maxFractionDigits_ = a.u;
23561
- c = (parseFloat(summaryValue_.toFixed(maxFractionDigits_)).toString());
23562
- }
23563
- break;
23564
- case 0:
23565
- case 2:
23566
- case 11:
23567
- c = e.toString();
23568
- break;
23574
+ break;
23575
+ }
23569
23576
  }
23570
23577
  let f = a.ac != null ? a.ac : a.l != null ? a.l.displayName : stringEmpty();
23571
- if (a.f != null) {
23578
+ if (a.f != null && e != null) {
23572
23579
  c = a.f.i(e);
23573
23580
  }
23574
23581
  let g = stringIsNullOrWhiteSpace(a.ae) ? a.af : a.ae;
23575
23582
  let h = g + " " + f + " = " + c;
23576
- if (a.e != null) {
23583
+ if (a.e != null && e != null) {
23577
23584
  h = a.e.i(e);
23578
23585
  }
23579
23586
  let i = a.o(b, c, h);
@@ -47484,6 +47491,7 @@ let ComboEditorView = /*@__PURE__*/ (() => {
47484
47491
  this.attachEvents();
47485
47492
  if (this.ac) {
47486
47493
  this.onEditStarted();
47494
+ window.setTimeout(() => this.aa.select(), 0);
47487
47495
  this.ac = false;
47488
47496
  }
47489
47497
  }, false);
@@ -12726,8 +12726,13 @@ var Pager = /** @class */ /*@__PURE__*/ (function (_super) {
12726
12726
  this.b.isSectionSummaryRowsAtBottom = true;
12727
12727
  break;
12728
12728
  }
12729
+ this.ad = 0;
12729
12730
  this.b7();
12730
12731
  this.b6();
12732
+ this.b1();
12733
+ if (this.n != null) {
12734
+ this.n.v();
12735
+ }
12731
12736
  }
12732
12737
  };
12733
12738
  Pager.prototype.bj = function (a, b) {
@@ -26521,112 +26526,114 @@ var DefinitionBase = /** @class */ /*@__PURE__*/ (function (_super) {
26521
26526
  return d;
26522
26527
  };
26523
26528
  DefinitionBase.prototype.u = function (a, b) {
26524
- var c = b != null ? b.value.toString() : stringEmpty();
26529
+ var c = b != null && b.value != null ? b.value.toString() : stringEmpty();
26525
26530
  var d = a.g;
26526
26531
  if (a.i == 4) {
26527
26532
  d = 1;
26528
26533
  }
26529
26534
  var e = b.value;
26530
- switch (d) {
26531
- case 10:
26532
- if (a.w != null) {
26533
- var override_ = a.w;
26534
- var val_ = typeGetValue(e);
26535
- c = (override_.format(val_));
26536
- }
26537
- else {
26538
- c = (typeGetValue(e)).toString();
26539
- }
26540
- break;
26541
- case 8:
26542
- if (a.w != null) {
26543
- var override_ = a.w;
26544
- var val_ = e;
26545
- c = (override_.format(val_));
26546
- }
26547
- else {
26535
+ if (e != null) {
26536
+ switch (d) {
26537
+ case 10:
26538
+ if (a.w != null) {
26539
+ var override_ = a.w;
26540
+ var val_ = typeGetValue(e);
26541
+ c = (override_.format(val_));
26542
+ }
26543
+ else {
26544
+ c = (typeGetValue(e)).toString();
26545
+ }
26546
+ break;
26547
+ case 8:
26548
+ if (a.w != null) {
26549
+ var override_ = a.w;
26550
+ var val_ = e;
26551
+ c = (override_.format(val_));
26552
+ }
26553
+ else {
26554
+ c = e.toString();
26555
+ }
26556
+ break;
26557
+ case 5:
26558
+ if (a.w != null) {
26559
+ var override_ = a.w;
26560
+ var val_ = e;
26561
+ c = (override_.format(val_));
26562
+ }
26563
+ else {
26564
+ var summaryValue_ = e;
26565
+ var maxFractionDigits_ = a.u;
26566
+ c = (parseFloat(summaryValue_.toFixed(maxFractionDigits_)).toString());
26567
+ }
26568
+ break;
26569
+ case 1:
26570
+ if (a.w != null) {
26571
+ var override_ = a.w;
26572
+ var val_ = typeGetValue(e);
26573
+ c = (override_.format(val_));
26574
+ }
26575
+ else {
26576
+ c = (typeGetValue(e)).toString();
26577
+ }
26578
+ break;
26579
+ case 3:
26580
+ if (a.w != null) {
26581
+ var override_ = a.w;
26582
+ var val_ = typeGetValue(e);
26583
+ c = (override_.format(val_));
26584
+ }
26585
+ else {
26586
+ c = typeGetValue(e).toString();
26587
+ }
26588
+ break;
26589
+ case 4:
26590
+ if (a.w != null) {
26591
+ var override_ = a.w;
26592
+ var val_ = typeGetValue(e);
26593
+ c = (override_.format(val_));
26594
+ }
26595
+ else {
26596
+ c = typeGetValue(e).toString();
26597
+ }
26598
+ break;
26599
+ case 7:
26600
+ if (a.w != null) {
26601
+ var override_ = a.w;
26602
+ var val_ = e;
26603
+ c = (override_.format(val_));
26604
+ }
26605
+ else {
26606
+ var summaryValue_ = e;
26607
+ var maxFractionDigits_ = a.u;
26608
+ c = (parseFloat(summaryValue_.toFixed(maxFractionDigits_)).toString());
26609
+ }
26610
+ break;
26611
+ case 6:
26612
+ if (a.w != null) {
26613
+ var override_ = a.w;
26614
+ var val_ = e;
26615
+ c = (override_.format(val_));
26616
+ }
26617
+ else {
26618
+ var summaryValue_ = e;
26619
+ var maxFractionDigits_ = a.u;
26620
+ c = (parseFloat(summaryValue_.toFixed(maxFractionDigits_)).toString());
26621
+ }
26622
+ break;
26623
+ case 0:
26624
+ case 2:
26625
+ case 11:
26548
26626
  c = e.toString();
26549
- }
26550
- break;
26551
- case 5:
26552
- if (a.w != null) {
26553
- var override_ = a.w;
26554
- var val_ = e;
26555
- c = (override_.format(val_));
26556
- }
26557
- else {
26558
- var summaryValue_ = e;
26559
- var maxFractionDigits_ = a.u;
26560
- c = (parseFloat(summaryValue_.toFixed(maxFractionDigits_)).toString());
26561
- }
26562
- break;
26563
- case 1:
26564
- if (a.w != null) {
26565
- var override_ = a.w;
26566
- var val_ = typeGetValue(e);
26567
- c = (override_.format(val_));
26568
- }
26569
- else {
26570
- c = (typeGetValue(e)).toString();
26571
- }
26572
- break;
26573
- case 3:
26574
- if (a.w != null) {
26575
- var override_ = a.w;
26576
- var val_ = typeGetValue(e);
26577
- c = (override_.format(val_));
26578
- }
26579
- else {
26580
- c = typeGetValue(e).toString();
26581
- }
26582
- break;
26583
- case 4:
26584
- if (a.w != null) {
26585
- var override_ = a.w;
26586
- var val_ = typeGetValue(e);
26587
- c = (override_.format(val_));
26588
- }
26589
- else {
26590
- c = typeGetValue(e).toString();
26591
- }
26592
- break;
26593
- case 7:
26594
- if (a.w != null) {
26595
- var override_ = a.w;
26596
- var val_ = e;
26597
- c = (override_.format(val_));
26598
- }
26599
- else {
26600
- var summaryValue_ = e;
26601
- var maxFractionDigits_ = a.u;
26602
- c = (parseFloat(summaryValue_.toFixed(maxFractionDigits_)).toString());
26603
- }
26604
- break;
26605
- case 6:
26606
- if (a.w != null) {
26607
- var override_ = a.w;
26608
- var val_ = e;
26609
- c = (override_.format(val_));
26610
- }
26611
- else {
26612
- var summaryValue_ = e;
26613
- var maxFractionDigits_ = a.u;
26614
- c = (parseFloat(summaryValue_.toFixed(maxFractionDigits_)).toString());
26615
- }
26616
- break;
26617
- case 0:
26618
- case 2:
26619
- case 11:
26620
- c = e.toString();
26621
- break;
26627
+ break;
26628
+ }
26622
26629
  }
26623
26630
  var f = a.ac != null ? a.ac : a.l != null ? a.l.displayName : stringEmpty();
26624
- if (a.f != null) {
26631
+ if (a.f != null && e != null) {
26625
26632
  c = a.f.i(e);
26626
26633
  }
26627
26634
  var g = stringIsNullOrWhiteSpace(a.ae) ? a.af : a.ae;
26628
26635
  var h = g + " " + f + " = " + c;
26629
- if (a.e != null) {
26636
+ if (a.e != null && e != null) {
26630
26637
  h = a.e.i(e);
26631
26638
  }
26632
26639
  var i = a.o(b, c, h);
@@ -53847,6 +53854,7 @@ var ComboEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
53847
53854
  _this.attachEvents();
53848
53855
  if (_this.ac) {
53849
53856
  _this.onEditStarted();
53857
+ window.setTimeout(function () { return _this.aa.select(); }, 0);
53850
53858
  _this.ac = false;
53851
53859
  }
53852
53860
  }, false);
@@ -370,6 +370,207 @@ PERFORMANCE OF THIS SOFTWARE.
370
370
  Package: igniteui-trial-watermark
371
371
  License: "Apache-2.0"
372
372
 
373
+ Apache License
374
+ Version 2.0, January 2004
375
+ http://www.apache.org/licenses/
376
+
377
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
378
+
379
+ 1. Definitions.
380
+
381
+ "License" shall mean the terms and conditions for use, reproduction,
382
+ and distribution as defined by Sections 1 through 9 of this document.
383
+
384
+ "Licensor" shall mean the copyright owner or entity authorized by
385
+ the copyright owner that is granting the License.
386
+
387
+ "Legal Entity" shall mean the union of the acting entity and all
388
+ other entities that control, are controlled by, or are under common
389
+ control with that entity. For the purposes of this definition,
390
+ "control" means (i) the power, direct or indirect, to cause the
391
+ direction or management of such entity, whether by contract or
392
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
393
+ outstanding shares, or (iii) beneficial ownership of such entity.
394
+
395
+ "You" (or "Your") shall mean an individual or Legal Entity
396
+ exercising permissions granted by this License.
397
+
398
+ "Source" form shall mean the preferred form for making modifications,
399
+ including but not limited to software source code, documentation
400
+ source, and configuration files.
401
+
402
+ "Object" form shall mean any form resulting from mechanical
403
+ transformation or translation of a Source form, including but
404
+ not limited to compiled object code, generated documentation,
405
+ and conversions to other media types.
406
+
407
+ "Work" shall mean the work of authorship, whether in Source or
408
+ Object form, made available under the License, as indicated by a
409
+ copyright notice that is included in or attached to the work
410
+ (an example is provided in the Appendix below).
411
+
412
+ "Derivative Works" shall mean any work, whether in Source or Object
413
+ form, that is based on (or derived from) the Work and for which the
414
+ editorial revisions, annotations, elaborations, or other modifications
415
+ represent, as a whole, an original work of authorship. For the purposes
416
+ of this License, Derivative Works shall not include works that remain
417
+ separable from, or merely link (or bind by name) to the interfaces of,
418
+ the Work and Derivative Works thereof.
419
+
420
+ "Contribution" shall mean any work of authorship, including
421
+ the original version of the Work and any modifications or additions
422
+ to that Work or Derivative Works thereof, that is intentionally
423
+ submitted to Licensor for inclusion in the Work by the copyright owner
424
+ or by an individual or Legal Entity authorized to submit on behalf of
425
+ the copyright owner. For the purposes of this definition, "submitted"
426
+ means any form of electronic, verbal, or written communication sent
427
+ to the Licensor or its representatives, including but not limited to
428
+ communication on electronic mailing lists, source code control systems,
429
+ and issue tracking systems that are managed by, or on behalf of, the
430
+ Licensor for the purpose of discussing and improving the Work, but
431
+ excluding communication that is conspicuously marked or otherwise
432
+ designated in writing by the copyright owner as "Not a Contribution."
433
+
434
+ "Contributor" shall mean Licensor and any individual or Legal Entity
435
+ on behalf of whom a Contribution has been received by Licensor and
436
+ subsequently incorporated within the Work.
437
+
438
+ 2. Grant of Copyright License. Subject to the terms and conditions of
439
+ this License, each Contributor hereby grants to You a perpetual,
440
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
441
+ copyright license to reproduce, prepare Derivative Works of,
442
+ publicly display, publicly perform, sublicense, and distribute the
443
+ Work and such Derivative Works in Source or Object form.
444
+
445
+ 3. Grant of Patent License. Subject to the terms and conditions of
446
+ this License, each Contributor hereby grants to You a perpetual,
447
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
448
+ (except as stated in this section) patent license to make, have made,
449
+ use, offer to sell, sell, import, and otherwise transfer the Work,
450
+ where such license applies only to those patent claims licensable
451
+ by such Contributor that are necessarily infringed by their
452
+ Contribution(s) alone or by combination of their Contribution(s)
453
+ with the Work to which such Contribution(s) was submitted. If You
454
+ institute patent litigation against any entity (including a
455
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
456
+ or a Contribution incorporated within the Work constitutes direct
457
+ or contributory patent infringement, then any patent licenses
458
+ granted to You under this License for that Work shall terminate
459
+ as of the date such litigation is filed.
460
+
461
+ 4. Redistribution. You may reproduce and distribute copies of the
462
+ Work or Derivative Works thereof in any medium, with or without
463
+ modifications, and in Source or Object form, provided that You
464
+ meet the following conditions:
465
+
466
+ (a) You must give any other recipients of the Work or
467
+ Derivative Works a copy of this License; and
468
+
469
+ (b) You must cause any modified files to carry prominent notices
470
+ stating that You changed the files; and
471
+
472
+ (c) You must retain, in the Source form of any Derivative Works
473
+ that You distribute, all copyright, patent, trademark, and
474
+ attribution notices from the Source form of the Work,
475
+ excluding those notices that do not pertain to any part of
476
+ the Derivative Works; and
477
+
478
+ (d) If the Work includes a "NOTICE" text file as part of its
479
+ distribution, then any Derivative Works that You distribute must
480
+ include a readable copy of the attribution notices contained
481
+ within such NOTICE file, excluding those notices that do not
482
+ pertain to any part of the Derivative Works, in at least one
483
+ of the following places: within a NOTICE text file distributed
484
+ as part of the Derivative Works; within the Source form or
485
+ documentation, if provided along with the Derivative Works; or,
486
+ within a display generated by the Derivative Works, if and
487
+ wherever such third-party notices normally appear. The contents
488
+ of the NOTICE file are for informational purposes only and
489
+ do not modify the License. You may add Your own attribution
490
+ notices within Derivative Works that You distribute, alongside
491
+ or as an addendum to the NOTICE text from the Work, provided
492
+ that such additional attribution notices cannot be construed
493
+ as modifying the License.
494
+
495
+ You may add Your own copyright statement to Your modifications and
496
+ may provide additional or different license terms and conditions
497
+ for use, reproduction, or distribution of Your modifications, or
498
+ for any such Derivative Works as a whole, provided Your use,
499
+ reproduction, and distribution of the Work otherwise complies with
500
+ the conditions stated in this License.
501
+
502
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
503
+ any Contribution intentionally submitted for inclusion in the Work
504
+ by You to the Licensor shall be under the terms and conditions of
505
+ this License, without any additional terms or conditions.
506
+ Notwithstanding the above, nothing herein shall supersede or modify
507
+ the terms of any separate license agreement you may have executed
508
+ with Licensor regarding such Contributions.
509
+
510
+ 6. Trademarks. This License does not grant permission to use the trade
511
+ names, trademarks, service marks, or product names of the Licensor,
512
+ except as required for reasonable and customary use in describing the
513
+ origin of the Work and reproducing the content of the NOTICE file.
514
+
515
+ 7. Disclaimer of Warranty. Unless required by applicable law or
516
+ agreed to in writing, Licensor provides the Work (and each
517
+ Contributor provides its Contributions) on an "AS IS" BASIS,
518
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
519
+ implied, including, without limitation, any warranties or conditions
520
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
521
+ PARTICULAR PURPOSE. You are solely responsible for determining the
522
+ appropriateness of using or redistributing the Work and assume any
523
+ risks associated with Your exercise of permissions under this License.
524
+
525
+ 8. Limitation of Liability. In no event and under no legal theory,
526
+ whether in tort (including negligence), contract, or otherwise,
527
+ unless required by applicable law (such as deliberate and grossly
528
+ negligent acts) or agreed to in writing, shall any Contributor be
529
+ liable to You for damages, including any direct, indirect, special,
530
+ incidental, or consequential damages of any character arising as a
531
+ result of this License or out of the use or inability to use the
532
+ Work (including but not limited to damages for loss of goodwill,
533
+ work stoppage, computer failure or malfunction, or any and all
534
+ other commercial damages or losses), even if such Contributor
535
+ has been advised of the possibility of such damages.
536
+
537
+ 9. Accepting Warranty or Additional Liability. While redistributing
538
+ the Work or Derivative Works thereof, You may choose to offer,
539
+ and charge a fee for, acceptance of support, warranty, indemnity,
540
+ or other liability obligations and/or rights consistent with this
541
+ License. However, in accepting such obligations, You may act only
542
+ on Your own behalf and on Your sole responsibility, not on behalf
543
+ of any other Contributor, and only if You agree to indemnify,
544
+ defend, and hold each Contributor harmless for any liability
545
+ incurred by, or claims asserted against, such Contributor by reason
546
+ of your accepting any such warranty or additional liability.
547
+
548
+ END OF TERMS AND CONDITIONS
549
+
550
+ APPENDIX: How to apply the Apache License to your work.
551
+
552
+ To apply the Apache License to your work, attach the following
553
+ boilerplate notice, with the fields enclosed by brackets "[]"
554
+ replaced with your own identifying information. (Don't include
555
+ the brackets!) The text should be enclosed in the appropriate
556
+ comment syntax for the file format. We also recommend that a
557
+ file or class name and description of purpose be included on the
558
+ same "printed page" as the copyright notice for easier
559
+ identification within third-party archives.
560
+
561
+ Copyright [yyyy] [name of copyright owner]
562
+
563
+ Licensed under the Apache License, Version 2.0 (the "License");
564
+ you may not use this file except in compliance with the License.
565
+ You may obtain a copy of the License at
566
+
567
+ http://www.apache.org/licenses/LICENSE-2.0
568
+
569
+ Unless required by applicable law or agreed to in writing, software
570
+ distributed under the License is distributed on an "AS IS" BASIS,
571
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
572
+ See the License for the specific language governing permissions and
573
+ limitations under the License.
373
574
 
374
575
  --------------------------------------------------------------------------------
375
576
  Package: uuid