Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 22 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
##[0.1.14] - 2025-8-23

### Added
- vue Theme Add registerAll function
- Add `HttpModel` base class for CRUD model requests
- Add `App.getHttpModel(config, params)` helper for quick model fetch
- Add vue example page `examples/vue/httpModel.html` for HttpModel CRUD test

### Changed
- HttpModel private fields unified to `_` prefix and request payload filters private keys
- HttpModel `find` normalizes `withConfig` to boolean when provided
- examples html now keep `.min` for third-party libs and only switch ledap bundles to non-min files

### Fixed
- Fix HttpModel request option key from `parmas` to `params`
- Fix HttpModel primary key config typo (`primaryKey`)
- Fix Model `getAttributeDesc` dict mapping by using field value as dict key
- Fix Model `clone` to copy only business fields (exclude private `_` fields)
- Improve Model change detection with deep compare and deep sync snapshot
- Fix Model default `scenarios` to exclude private fields and include rule-defined attributes
- Fix Model custom validator method resolution to support prototype methods


## [0.1.13]

Expand Down Expand Up @@ -36,7 +58,6 @@
## [0.1.11] - 2025-02-12

#### Changed

- updated packages

##[0.1.10] - 2021-01-20
Expand Down
329 changes: 188 additions & 141 deletions dist/core.js

Large diffs are not rendered by default.

335 changes: 188 additions & 147 deletions dist/index.js

Large diffs are not rendered by default.

2,728 changes: 2,728 additions & 0 deletions dist/ledap.core.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/ledap.core.min.js

Large diffs are not rendered by default.

2,731 changes: 2,731 additions & 0 deletions dist/ledap.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/ledap.min.js

Large diffs are not rendered by default.

Loading