@trudb/tru-common-lib 0.0.209 → 0.0.211

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 (27) hide show
  1. package/esm2020/lib/base-classes/tru-search-component-config-base.mjs +1 -1
  2. package/esm2020/lib/classes/tru-property-config-decimal.mjs +5 -5
  3. package/esm2020/lib/classes/tru-property-config-foreign-key.mjs +4 -4
  4. package/esm2020/lib/classes/tru-property-config-integer.mjs +3 -3
  5. package/esm2020/lib/classes/tru-property-config-password.mjs +2 -2
  6. package/esm2020/lib/classes/tru-property-config-percentage.mjs +3 -3
  7. package/esm2020/lib/classes/tru-property-config-scientific.mjs +3 -3
  8. package/esm2020/lib/classes/tru-property-config-text-choices.mjs +2 -2
  9. package/esm2020/lib/classes/tru-property-config-text.mjs +4 -4
  10. package/esm2020/lib/classes/tru-property-config-usa-address.mjs +2 -2
  11. package/esm2020/lib/classes/tru-property-config-zip-code.mjs +2 -2
  12. package/fesm2015/trudb-tru-common-lib.mjs +20 -20
  13. package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
  14. package/fesm2020/trudb-tru-common-lib.mjs +20 -20
  15. package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
  16. package/lib/base-classes/tru-search-component-config-base.d.ts +3 -1
  17. package/lib/classes/tru-property-config-decimal.d.ts +4 -4
  18. package/lib/classes/tru-property-config-foreign-key.d.ts +3 -3
  19. package/lib/classes/tru-property-config-integer.d.ts +2 -2
  20. package/lib/classes/tru-property-config-password.d.ts +1 -1
  21. package/lib/classes/tru-property-config-percentage.d.ts +2 -2
  22. package/lib/classes/tru-property-config-scientific.d.ts +2 -2
  23. package/lib/classes/tru-property-config-text-choices.d.ts +1 -1
  24. package/lib/classes/tru-property-config-text.d.ts +3 -3
  25. package/lib/classes/tru-property-config-usa-address.d.ts +1 -1
  26. package/lib/classes/tru-property-config-zip-code.d.ts +1 -1
  27. package/package.json +1 -1
@@ -685,9 +685,9 @@ class TruPredicate {
685
685
  class TruPropertyConfigForeignKey extends TruPropertyConfigBase {
686
686
  constructor() {
687
687
  super();
688
- this.Table = undefined;
689
- this.ForeignTableName = undefined;
690
- this.ChoicesQuery = undefined;
688
+ this.table = undefined;
689
+ this.foreignTableName = undefined;
690
+ this.choicesQuery = undefined;
691
691
  }
692
692
  }
693
693
 
@@ -698,71 +698,71 @@ class TruPropertyConfigCloudFile extends TruPropertyConfigForeignKey {
698
698
  class TruPropertyConfigDecimal extends TruPropertyConfigBase {
699
699
  constructor() {
700
700
  super();
701
- this.DecimalPlaces = undefined;
702
- this.TotalDigits = undefined;
703
- this.MinimumValue = undefined;
704
- this.MaximumValue = undefined;
701
+ this.decimalPlaces = undefined;
702
+ this.totalDigits = undefined;
703
+ this.minimumValue = undefined;
704
+ this.maximumValue = undefined;
705
705
  }
706
706
  }
707
707
 
708
708
  class TruPropertyConfigInteger extends TruPropertyConfigBase {
709
709
  constructor() {
710
710
  super();
711
- this.MinimumValue = undefined;
712
- this.MaximumValue = undefined;
711
+ this.minimumValue = undefined;
712
+ this.maximumValue = undefined;
713
713
  }
714
714
  }
715
715
 
716
716
  class TruPropertyConfigText extends TruPropertyConfigBase {
717
717
  constructor() {
718
718
  super();
719
- this.MaxLength = undefined;
720
- this.MinLength = undefined;
721
- this.Unbounded = undefined;
719
+ this.maxLength = undefined;
720
+ this.minLength = undefined;
721
+ this.unbounded = undefined;
722
722
  }
723
723
  }
724
724
 
725
725
  class TruPropertyConfigPassword extends TruPropertyConfigText {
726
726
  constructor() {
727
727
  super();
728
- this.EncryptionType = undefined;
728
+ this.encryptionType = undefined;
729
729
  }
730
730
  }
731
731
 
732
732
  class TruPropertyConfigPercentage extends TruPropertyConfigBase {
733
733
  constructor() {
734
734
  super();
735
- this.MinimumValue = undefined;
736
- this.MaximumValue = undefined;
735
+ this.minimumValue = undefined;
736
+ this.maximumValue = undefined;
737
737
  }
738
738
  }
739
739
 
740
740
  class TruPropertyConfigScientific extends TruPropertyConfigBase {
741
741
  constructor() {
742
742
  super();
743
- this.MinimumValue = undefined;
744
- this.MaximumValue = undefined;
743
+ this.minimumValue = undefined;
744
+ this.maximumValue = undefined;
745
745
  }
746
746
  }
747
747
 
748
748
  class TruPropertyConfigTextChoices extends TruPropertyConfigText {
749
749
  constructor() {
750
750
  super();
751
- this.Choices = {};
751
+ this.choices = {};
752
752
  }
753
753
  }
754
754
 
755
755
  class TruPropertyConfigUsaAddress extends TruPropertyConfigBase {
756
756
  constructor() {
757
757
  super();
758
- this.RequireZipPlusFour = undefined;
758
+ this.requireZipPlusFour = undefined;
759
759
  }
760
760
  }
761
761
 
762
762
  class TruPropertyConfigZipCode extends TruPropertyConfigBase {
763
763
  constructor() {
764
764
  super();
765
- this.RequireZipPlusFour = undefined;
765
+ this.requireZipPlusFour = undefined;
766
766
  }
767
767
  }
768
768