bootstrap-input-spinner 4.0.1 → 4.0.3
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.
- package/README.md +15 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,20 +1,25 @@
|
|
|
1
1
|
# bootstrap-input-spinner
|
|
2
2
|
|
|
3
|
-
A Bootstrap
|
|
3
|
+
A Bootstrap extension to create input spinner elements for number input.
|
|
4
4
|
|
|
5
|
-
> Note: bootstrap-input-spinner is now a ES6 module. You find the old ES5 version
|
|
6
|
-
|
|
7
|
-
**[Demo page with examples](http://shaack.com/projekte/bootstrap-input-spinner/)**
|
|
5
|
+
> Note: bootstrap-input-spinner is now a ES6 module. You find the old ES5 version in the folder `es5-deprecated`. The ES5 version is not maintained anymore and will be removed in the future.
|
|
8
6
|
|
|
9
7
|

|
|
10
8
|
*Examples with floating-point and german localization*
|
|
11
9
|
|
|
12
|
-
|
|
10
|
+
## References
|
|
11
|
+
|
|
12
|
+
- [Demo pages with usage examples](http://shaack.com/projekte/bootstrap-input-spinner/)
|
|
13
|
+
- [GitHub repository](https://github.com/shaack/bootstrap-input-spinner/)
|
|
14
|
+
- [npm package](https://www.npmjs.com/package/bootstrap-input-spinner)
|
|
15
|
+
|
|
16
|
+
### Older version, Bootstrap 4 compatible
|
|
17
|
+
|
|
18
|
+
> The current is compatible with **Bootstrap 5**, but we remain a Bootstrap 4 compatible version with the branch
|
|
13
19
|
> <a href="https://github.com/shaack/bootstrap-input-spinner/tree/bootstrap4-compatible">bootstrap4-compatible</a>.
|
|
14
20
|
> npm package versions 3.x are Bootstrap 5 compatible, versions 2.x Bootstrap 4 compatible.
|
|
15
21
|
|
|
16
|
-
-
|
|
17
|
-
- **[Bootstrap 4 compatible npm package](https://www.npmjs.com/package/bootstrap-input-spinner/v/2.1.2)**
|
|
22
|
+
- [Bootstrap 4 compatible npm package](https://www.npmjs.com/package/bootstrap-input-spinner/v/2.1.2)
|
|
18
23
|
|
|
19
24
|
## Features
|
|
20
25
|
|
|
@@ -291,11 +296,7 @@ For older browsers (IE 9 or so), that doesn't support `Intl`, when you get an er
|
|
|
291
296
|
**"Intl is not defined"** (See [issue #34](https://github.com/shaack/bootstrap-input-spinner/issues/34)), just use a
|
|
292
297
|
shim or polyfill like [Intl.js](https://github.com/andyearnshaw/Intl.js), and it works.
|
|
293
298
|
|
|
294
|
-
|
|
299
|
+
---
|
|
295
300
|
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
- [bootstrap-show-notification](https://shaack.com/projekte/bootstrap-show-notification/) – Show notifications, dynamically
|
|
299
|
-
- [bootstrap-detect-breakpoint](https://www.npmjs.com/package/bootstrap-detect-breakpoint) – Read the curr. BS BP from JS
|
|
300
|
-
- [auto-resize-textarea](https://shaack.com/projekte/auto-resize-textarea/) – Auto resize textareas by its content
|
|
301
|
-
- [external-links-blank](https://www.npmjs.com/package/external-links-blank) – Open all external links `_blank`
|
|
301
|
+
Find more high quality modules from [shaack.com](https://shaack.com)
|
|
302
|
+
on [our projects page](https://shaack.com/works).
|
package/package.json
CHANGED