@burnsred/entity 0.6.6 → 1.0.1

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 (105) hide show
  1. package/README.md +174 -1
  2. package/dist/cleaner/as-boolean.d.ts +7 -0
  3. package/dist/cleaner/as-boolean.js +10 -0
  4. package/dist/cleaner/as-boolean.js.map +1 -0
  5. package/dist/cleaner/as-date.d.ts +1 -0
  6. package/dist/cleaner/as-date.js +5 -0
  7. package/dist/cleaner/as-date.js.map +1 -0
  8. package/dist/cleaner/as-integer.d.ts +1 -0
  9. package/dist/cleaner/as-integer.js +5 -0
  10. package/dist/cleaner/as-integer.js.map +1 -0
  11. package/dist/cleaner/as-number.d.ts +1 -0
  12. package/dist/cleaner/as-number.js +5 -0
  13. package/dist/cleaner/as-number.js.map +1 -0
  14. package/dist/cleaner/as-string.d.ts +1 -0
  15. package/dist/cleaner/as-string.js +4 -0
  16. package/dist/cleaner/as-string.js.map +1 -0
  17. package/dist/cleaner/collapse-spaces.d.ts +4 -0
  18. package/dist/cleaner/collapse-spaces.js +7 -0
  19. package/dist/cleaner/collapse-spaces.js.map +1 -0
  20. package/dist/cleaner/index.d.ts +7 -0
  21. package/dist/cleaner/index.js +8 -0
  22. package/dist/cleaner/index.js.map +1 -0
  23. package/dist/cleaner/trim.d.ts +1 -0
  24. package/dist/cleaner/trim.js +4 -0
  25. package/dist/cleaner/trim.js.map +1 -0
  26. package/dist/entity/Entity.d.ts +20 -0
  27. package/dist/entity/Entity.js +63 -0
  28. package/dist/entity/Entity.js.map +1 -0
  29. package/dist/entity/index.d.ts +8 -0
  30. package/dist/entity/index.js +9 -0
  31. package/dist/entity/index.js.map +1 -0
  32. package/dist/field/BooleanField.d.ts +7 -0
  33. package/dist/field/BooleanField.js +8 -0
  34. package/dist/field/BooleanField.js.map +1 -0
  35. package/dist/field/CharField.d.ts +7 -0
  36. package/dist/field/CharField.js +8 -0
  37. package/dist/field/CharField.js.map +1 -0
  38. package/dist/field/DateField.d.ts +9 -0
  39. package/dist/field/DateField.js +19 -0
  40. package/dist/field/DateField.js.map +1 -0
  41. package/dist/field/DateTimeField.d.ts +9 -0
  42. package/dist/field/DateTimeField.js +14 -0
  43. package/dist/field/DateTimeField.js.map +1 -0
  44. package/dist/field/EntityField.d.ts +24 -0
  45. package/dist/field/EntityField.js +63 -0
  46. package/dist/field/EntityField.js.map +1 -0
  47. package/dist/field/Field.d.ts +42 -0
  48. package/dist/field/Field.js +97 -0
  49. package/dist/field/Field.js.map +1 -0
  50. package/dist/field/IdField.d.ts +15 -0
  51. package/dist/field/IdField.js +23 -0
  52. package/dist/field/IdField.js.map +1 -0
  53. package/dist/field/IntegerField.d.ts +6 -0
  54. package/dist/field/IntegerField.js +9 -0
  55. package/dist/field/IntegerField.js.map +1 -0
  56. package/dist/field/NumberField.d.ts +7 -0
  57. package/dist/field/NumberField.js +8 -0
  58. package/dist/field/NumberField.js.map +1 -0
  59. package/dist/field/TextField.d.ts +4 -0
  60. package/dist/field/TextField.js +5 -0
  61. package/dist/field/TextField.js.map +1 -0
  62. package/dist/field/index.d.ts +68 -0
  63. package/dist/field/index.js +12 -0
  64. package/dist/field/index.js.map +1 -0
  65. package/dist/index.d.ts +67 -0
  66. package/dist/index.js +5 -0
  67. package/dist/index.js.map +1 -0
  68. package/dist/validator/entity-valid.d.ts +9 -0
  69. package/dist/validator/entity-valid.js +12 -0
  70. package/dist/validator/entity-valid.js.map +1 -0
  71. package/dist/validator/index.d.ts +2 -0
  72. package/dist/validator/index.js +3 -0
  73. package/dist/validator/index.js.map +1 -0
  74. package/dist/validator/value-range.d.ts +8 -0
  75. package/dist/validator/value-range.js +24 -0
  76. package/dist/validator/value-range.js.map +1 -0
  77. package/package.json +21 -37
  78. package/CHANGELOG.md +0 -116
  79. package/LICENSE +0 -21
  80. package/dist/development.js +0 -1377
  81. package/dist/development.js.map +0 -1
  82. package/dist/entity/src/cleaner/remove-multi-space.test.d.ts +0 -1
  83. package/dist/entity/src/cleaner/slice-to-max-length.test.d.ts +0 -1
  84. package/dist/entity/src/entity/entity.test.d.ts +0 -1
  85. package/dist/entity/src/entity/sample-todo-entity.d.ts +0 -19
  86. package/dist/entity/src/entity/sample-useQuery.d.ts +0 -1
  87. package/dist/entity/src/field/field-any.test.d.ts +0 -1
  88. package/dist/entity/src/field/field-boolean.test.d.ts +0 -1
  89. package/dist/entity/src/field/field-char.test.d.ts +0 -1
  90. package/dist/entity/src/field/field-date.test.d.ts +0 -1
  91. package/dist/entity/src/field/field-datetime.test.d.ts +0 -1
  92. package/dist/entity/src/field/field-entity.test.d.ts +0 -1
  93. package/dist/entity/src/field/field-enum.test.d.ts +0 -1
  94. package/dist/entity/src/field/field-id.test.d.ts +0 -1
  95. package/dist/entity/src/field/field-integer.test.d.ts +0 -1
  96. package/dist/entity/src/field/field-number.test.d.ts +0 -1
  97. package/dist/entity/src/field/field-text.test.d.ts +0 -1
  98. package/dist/entity/src/field/field.test.d.ts +0 -1
  99. package/dist/entity/src/types.d.ts +0 -223
  100. package/dist/entity/src/validator/allow-blank.test.d.ts +0 -1
  101. package/dist/entity/src/validator/is-required.test.d.ts +0 -1
  102. package/dist/entity/src/validator/may-not-be-blank.test.d.ts +0 -1
  103. package/dist/legacy.js +0 -30
  104. package/dist/production.min.js +0 -1
  105. package/dist/production.min.js.map +0 -1
package/CHANGELOG.md DELETED
@@ -1,116 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [0.6.6](https://github.com/burnsred/burnsred-entity-library/compare/v0.6.5...v0.6.6) (2026-02-11)
7
-
8
- **Note:** Version bump only for package @burnsred/entity
9
-
10
-
11
-
12
-
13
-
14
- ## [0.6.5](https://github.com/burnsred/burnsred-entity-library/compare/v0.6.5-dev.3...v0.6.5) (2024-06-20)
15
-
16
- **Note:** Version bump only for package @burnsred/entity
17
-
18
-
19
-
20
-
21
-
22
- ## [0.6.5-dev.3](https://github.com/burnsred/burnsred-entity-library/compare/v0.6.5-dev.2...v0.6.5-dev.3) (2024-06-19)
23
-
24
- **Note:** Version bump only for package @burnsred/entity
25
-
26
-
27
-
28
-
29
-
30
- ## [0.6.5-dev.2](https://github.com/burnsred/burnsred-entity-library/compare/v0.6.5-dev.1...v0.6.5-dev.2) (2024-06-18)
31
-
32
- **Note:** Version bump only for package @burnsred/entity
33
-
34
-
35
-
36
-
37
-
38
- ## [0.6.4](https://github.com/burnsred/burnsred-entity-library/compare/v0.6.4-dev.2...v0.6.4) (2024-05-30)
39
-
40
- **Note:** Version bump only for package @burnsred/entity
41
-
42
-
43
-
44
-
45
-
46
- ## [0.6.4-dev.2](https://github.com/burnsred/burnsred-entity-library/compare/v0.6.4-dev.1...v0.6.4-dev.2) (2024-05-30)
47
-
48
- **Note:** Version bump only for package @burnsred/entity
49
-
50
-
51
-
52
-
53
-
54
- ## [0.6.4-dev.0](https://github.com/burnsred/burnsred-entity-library/compare/v0.6.3...v0.6.4-dev.0) (2024-05-30)
55
-
56
- **Note:** Version bump only for package @burnsred/entity
57
-
58
-
59
-
60
-
61
-
62
- ## [0.6.3](https://github.com/burnsred/burnsred-entity-library/compare/v0.6.2...v0.6.3) (2024-04-22)
63
-
64
- **Note:** Version bump only for package @burnsred/entity
65
-
66
- ## [0.6.2](https://github.com/burnsred/burnsred-entity-library/compare/v0.5.2...v0.6.2) (2019-05-15)
67
-
68
- ### Bug Fixes
69
-
70
- - deploy ([28349bb](https://github.com/burnsred/burnsred-entity-library/commit/28349bb))
71
-
72
- ## [0.5.2](https://github.com/gnowth/entity/compare/v0.5.1...v0.5.2) (2019-05-14)
73
-
74
- ### Bug Fixes
75
-
76
- - change license to MIT ([#154](https://github.com/gnowth/entity/issues/154)) ([78d85be](https://github.com/gnowth/entity/commit/78d85be))
77
-
78
- ## [0.5.1](https://github.com/gnowth/entity/compare/v0.5.0...v0.5.1) (2019-03-20)
79
-
80
- ### Bug Fixes
81
-
82
- - build import and lodash replacement ([#139](https://github.com/gnowth/entity/issues/139)) ([0f937b7](https://github.com/gnowth/entity/commit/0f937b7))
83
-
84
- # [0.5.0](https://github.com/gnowth/entity/compare/v0.4.0...v0.5.0) (2019-03-19)
85
-
86
- ### Features
87
-
88
- - add mock get api ([#106](https://github.com/gnowth/entity/issues/106)) ([e27d63b](https://github.com/gnowth/entity/commit/e27d63b))
89
- - added mock to entity ([#112](https://github.com/gnowth/entity/issues/112)) ([358bdee](https://github.com/gnowth/entity/commit/358bdee))
90
- - added UIPortal ([#137](https://github.com/gnowth/entity/issues/137)) ([08105b8](https://github.com/gnowth/entity/commit/08105b8))
91
- - PopupShadow allows a dirtier value of parent Form ([#81](https://github.com/gnowth/entity/issues/81)) ([4813d6b](https://github.com/gnowth/entity/commit/4813d6b))
92
- - widgetcheckbox, with other fixes ([#129](https://github.com/gnowth/entity/issues/129)) ([3c7810a](https://github.com/gnowth/entity/commit/3c7810a))
93
-
94
- ### Performance Improvements
95
-
96
- - allow lodash plugin to optimise ([#132](https://github.com/gnowth/entity/issues/132)) ([3c04468](https://github.com/gnowth/entity/commit/3c04468))
97
-
98
- # [0.4.0](https://github.com/gnowth/entity/compare/v0.2.0...v0.4.0) (2019-01-27)
99
-
100
- ### Bug Fixes
101
-
102
- - github requiring ssh from circleci ([3d86a88](https://github.com/gnowth/entity/commit/3d86a88))
103
-
104
- ### Performance Improvements
105
-
106
- - split code in vender/route ([#45](https://github.com/gnowth/entity/issues/45)) ([96b2067](https://github.com/gnowth/entity/commit/96b2067))
107
-
108
- # [0.2.0](https://github.com/gnowth/entity/compare/v0.1.1...v0.2.0) (2018-11-16)
109
-
110
- ### Features
111
-
112
- - added widgetList, field getKey ([#21](https://github.com/gnowth/entity/issues/21)) ([3ffb626](https://github.com/gnowth/entity/commit/3ffb626))
113
-
114
- ## 0.1.1 (2018-11-11)
115
-
116
- **Note:** Version bump only for package @entity/core
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2019-present Thierry Wong and Burnsred
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.