![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
ngmodeloptions
Advanced tools
Directive to bring functionality similar to the new Angular 1.3 ngModelOptions to Angular 1.2, for those stuck supporting IE8 and/or legacy code.
Works well with all input types (text, number, date, radio, checkbox, select) and doesn't break Angular validation.
###Example Include the module
angular.module("myApp", ["modelOptions"]);
Pass some options
<input type="text"
ng-model="my.model"
ng-model-options="{ debounce: 1000 }" />
Supports the same syntax as official ngModelOptions
<textarea ng-model="my.model"
ng-model-options="{ updateOn: 'default blur', debounce: {'default': 2000, 'blur': 500} }">
</textarea>
###Limitations
Currently only supports the debounce
and updateOn
options.
####Select
With select
elements, the first blank dummy option is not removed when this directive is used. With IE8, the removal of this inital blank option when a valid option is selected never worked in Angular anyway, so it's best to add a disabled option <option ng-disabled="true" value=""></option>
to the select
element to solve both problems.
####Events
Some event listeners are turned off for elements to prevent automattic model updates. e.g. angular uses the click
event to update model for radio
and checkbox
. When using this directive, ng-click
will no longer work on radio
or checkbox
inputs. Similarly ng-change
will no longer work if using this directive on a select
element. To get around this use alternative events, e.g. on a checkbox
use ng-change
instead of ng-click
or just $watch
for changes on the model instead.
FAQs
ngModelOptions for AngularJS 1.2
The npm package ngmodeloptions receives a total of 10 weekly downloads. As such, ngmodeloptions popularity was classified as not popular.
We found that ngmodeloptions demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.