jsuites 5.13.2 → 6.0.0-beta.0
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/.claude/settings.local.json +11 -0
- package/changelog.md +11 -42
- package/dist/jsuites.css +1878 -1
- package/dist/jsuites.js +13194 -1830
- package/dist/types/dropdown.d.ts +1 -1
- package/package.json +4 -1
package/changelog.md
CHANGED
|
@@ -1,58 +1,27 @@
|
|
|
1
|
-
# 5.12.0
|
|
2
|
-
|
|
3
|
-
## General Improvements
|
|
4
|
-
- Updated ARIA attributes.
|
|
5
|
-
- Made the focus helper more flexible across input types.
|
|
6
|
-
- Improved `jSuites.path`.
|
|
7
|
-
|
|
8
|
-
## AJAX Requests
|
|
9
|
-
- Added optional `X-Requested-With` header.
|
|
10
|
-
- New events: `onerror`, `ontimeout`.
|
|
11
|
-
|
|
12
|
-
## Calendar
|
|
13
|
-
- Added formatting support for calendar inputs.
|
|
14
|
-
|
|
15
|
-
## Dropdown
|
|
16
|
-
- `allowEmpty` now permits empty values in multi-select dropdowns.
|
|
17
|
-
|
|
18
|
-
## Mask
|
|
19
|
-
- Fixed time format handling (`hh`).
|
|
20
|
-
- Added text mask `@`.
|
|
21
|
-
- Miscellaneous fixes.
|
|
22
|
-
|
|
23
|
-
## Validations
|
|
24
|
-
- Added time validation.
|
|
25
|
-
- List validation now accepts an array or comma-separated text.
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
1
|
# 5.8.0
|
|
30
|
-
- Added a `strict` argument for mask rendering (default: `true`).
|
|
31
|
-
- Enabled list validation for ranges.
|
|
32
|
-
|
|
33
2
|
|
|
3
|
+
- Added a strict argument for mask rendering (default: true).
|
|
4
|
+
- Enabled list validation for ranges.
|
|
34
5
|
|
|
35
6
|
# 5.6.5
|
|
36
|
-
- Translated calendar strings.
|
|
37
|
-
|
|
38
7
|
|
|
8
|
+
- Translate calendar strings;
|
|
39
9
|
|
|
40
10
|
# 5.6.4
|
|
41
|
-
- Sanitized HTML pasted into the editor and tags plugins.
|
|
42
|
-
|
|
43
11
|
|
|
12
|
+
- Sanitize HTML from paste on editor and tags plugins;
|
|
44
13
|
|
|
45
14
|
# 5.5.2
|
|
46
|
-
- Replaced `onbeforeinput` with `prompt`.
|
|
47
|
-
|
|
48
15
|
|
|
16
|
+
- Replace onbeforeinput to prompt;
|
|
49
17
|
|
|
50
18
|
# 5.5.1
|
|
51
|
-
- Added `tracking.state` support for a second jSuites instance.
|
|
52
|
-
|
|
53
19
|
|
|
20
|
+
- Add tracking.state to a second jsuites instance.
|
|
54
21
|
|
|
55
22
|
# 5.5.0
|
|
56
|
-
|
|
57
|
-
- Added a new event for
|
|
58
|
-
-
|
|
23
|
+
|
|
24
|
+
- Added a new event for dropdowns: onbeforeinput.
|
|
25
|
+
- Added a new event for tabs: onremoveitem.
|
|
26
|
+
- Implemented global events to prevent double declaration.
|
|
27
|
+
|