tiny-essentials 1.24.4 → 1.24.5
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
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
+
<img src="./test/img/banner/tiny-essentials.jpg" alt="banner" />
|
|
2
3
|
<p>
|
|
3
4
|
<a href="https://discord.gg/TgHdvJd"><img src="https://img.shields.io/discord/413193536188579841?color=7289da&logo=discord&logoColor=white" alt="Discord server" /></a>
|
|
4
5
|
<a href="https://www.npmjs.com/package/tiny-essentials"><img src="https://img.shields.io/npm/v/tiny-essentials.svg?maxAge=3600" alt="NPM version" /></a>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# 🚀 Release Note – TinyHtmlElems Update ✨
|
|
2
|
+
|
|
3
|
+
This update addresses missing element mappings within the `TinyHtmlElems` class. The following input element classes, which were previously implemented but not exposed through the static interface, have now been properly added:
|
|
4
|
+
|
|
5
|
+
### ✅ Newly Added Static Element Bindings
|
|
6
|
+
|
|
7
|
+
* `static CheckboxInput = TinyHtmlCheckboxInput;` 🟩
|
|
8
|
+
* `static RadioInput = TinyHtmlRadioInput;` 🔘
|
|
9
|
+
|
|
10
|
+
### 📅 Additional Date & Time Input Types
|
|
11
|
+
|
|
12
|
+
* `static DateInput = TinyHtmlDateInput;` 📆
|
|
13
|
+
* `static DateTimeInput = TinyHtmlDateTimeInput;` 🕘
|
|
14
|
+
* `static MonthInput = TinyHtmlMonthInput;` 🗓️
|
|
15
|
+
* `static TimeInput = TinyHtmlTimeInput;` ⏱️
|
|
16
|
+
* `static WeekInput = TinyHtmlWeekInput;` 🗓️➕
|
|
17
|
+
|
|
18
|
+
**Full Changelog**: https://github.com/JasminDreasond/Tiny-Essentials/compare/1.24.4...1.24.5
|
|
@@ -5,6 +5,13 @@ var TinyHtmlResetInput = require('./input/button/TinyHtmlResetInput.cjs');
|
|
|
5
5
|
var TinyHtmlSubmitInput = require('./input/button/TinyHtmlSubmitInput.cjs');
|
|
6
6
|
var TinyHtmlNumberInput = require('./input/number/TinyHtmlNumberInput.cjs');
|
|
7
7
|
var TinyHtmlRangeInput = require('./input/number/TinyHtmlRangeInput.cjs');
|
|
8
|
+
var TinyHtmlCheckboxInput = require('./input/check/TinyHtmlCheckboxInput.cjs');
|
|
9
|
+
var TinyHtmlRadioInput = require('./input/check/TinyHtmlRadioInput.cjs');
|
|
10
|
+
var TinyHtmlDateInput = require('./input/date/TinyHtmlDateInput.cjs');
|
|
11
|
+
var TinyHtmlDateTimeInput = require('./input/date/TinyHtmlDateTimeInput.cjs');
|
|
12
|
+
var TinyHtmlMonthInput = require('./input/date/TinyHtmlMonthInput.cjs');
|
|
13
|
+
var TinyHtmlTimeInput = require('./input/date/TinyHtmlTimeInput.cjs');
|
|
14
|
+
var TinyHtmlWeekInput = require('./input/date/TinyHtmlWeekInput.cjs');
|
|
8
15
|
var TinyHtmlEmailInput = require('./input/text/TinyHtmlEmailInput.cjs');
|
|
9
16
|
var TinyHtmlPasswordInput = require('./input/text/TinyHtmlPasswordInput.cjs');
|
|
10
17
|
var TinyHtmlSearchInput = require('./input/text/TinyHtmlSearchInput.cjs');
|
|
@@ -100,11 +107,25 @@ class TinyHtmlElems {
|
|
|
100
107
|
static SubmitInput = TinyHtmlSubmitInput;
|
|
101
108
|
|
|
102
109
|
/////////////////////////////////////////////////////
|
|
110
|
+
|
|
103
111
|
static NumberInput = TinyHtmlNumberInput;
|
|
104
112
|
static RangerInput = TinyHtmlRangeInput;
|
|
105
113
|
|
|
106
114
|
//////////////////////////////////////////////////
|
|
107
115
|
|
|
116
|
+
static CheckboxInput = TinyHtmlCheckboxInput;
|
|
117
|
+
static RadioInput = TinyHtmlRadioInput;
|
|
118
|
+
|
|
119
|
+
//////////////////////////////////////////////////
|
|
120
|
+
|
|
121
|
+
static DateInput = TinyHtmlDateInput;
|
|
122
|
+
static DateTimeInput = TinyHtmlDateTimeInput;
|
|
123
|
+
static MonthInput = TinyHtmlMonthInput;
|
|
124
|
+
static TimeInput = TinyHtmlTimeInput;
|
|
125
|
+
static WeekInput = TinyHtmlWeekInput;
|
|
126
|
+
|
|
127
|
+
//////////////////////////////////////////////////
|
|
128
|
+
|
|
108
129
|
static EmailInput = TinyHtmlEmailInput;
|
|
109
130
|
static PasswordInput = TinyHtmlPasswordInput;
|
|
110
131
|
static SearchInput = TinyHtmlSearchInput;
|
|
@@ -163,6 +184,18 @@ export {
|
|
|
163
184
|
TinyHtmlNumberInput,
|
|
164
185
|
TinyHtmlRangeInput,
|
|
165
186
|
//////////////////////////////////////////////////
|
|
187
|
+
|
|
188
|
+
TinyHtmlCheckboxInput;
|
|
189
|
+
TinyHtmlRadioInput;
|
|
190
|
+
|
|
191
|
+
//////////////////////////////////////////////////
|
|
192
|
+
|
|
193
|
+
TinyHtmlDateInput;
|
|
194
|
+
TinyHtmlDateTimeInput;
|
|
195
|
+
TinyHtmlMonthInput;
|
|
196
|
+
TinyHtmlTimeInput;
|
|
197
|
+
TinyHtmlWeekInput;
|
|
198
|
+
|
|
166
199
|
TinyHtmlEmailInput,
|
|
167
200
|
TinyHtmlPasswordInput,
|
|
168
201
|
TinyHtmlSearchInput,
|
|
@@ -11,6 +11,13 @@ declare class TinyHtmlElems {
|
|
|
11
11
|
static SubmitInput: typeof TinyHtmlSubmitInput;
|
|
12
12
|
static NumberInput: typeof TinyHtmlNumberInput;
|
|
13
13
|
static RangerInput: typeof TinyHtmlRangeInput;
|
|
14
|
+
static CheckboxInput: typeof TinyHtmlCheckboxInput;
|
|
15
|
+
static RadioInput: typeof TinyHtmlRadioInput;
|
|
16
|
+
static DateInput: typeof TinyHtmlDateInput;
|
|
17
|
+
static DateTimeInput: typeof TinyHtmlDateTimeInput;
|
|
18
|
+
static MonthInput: typeof TinyHtmlMonthInput;
|
|
19
|
+
static TimeInput: typeof TinyHtmlTimeInput;
|
|
20
|
+
static WeekInput: typeof TinyHtmlWeekInput;
|
|
14
21
|
static EmailInput: typeof TinyHtmlEmailInput;
|
|
15
22
|
static PasswordInput: typeof TinyHtmlPasswordInput;
|
|
16
23
|
static SearchInput: typeof TinyHtmlSearchInput;
|
|
@@ -71,6 +78,13 @@ import TinyHtmlSource from './media/TinyHtmlSource.mjs';
|
|
|
71
78
|
import TinyHtmlButtonInput from './input/button/TinyHtmlButtonInput.mjs';
|
|
72
79
|
import TinyHtmlSubmitInput from './input/button/TinyHtmlSubmitInput.mjs';
|
|
73
80
|
import TinyHtmlRangeInput from './input/number/TinyHtmlRangeInput.mjs';
|
|
81
|
+
import TinyHtmlCheckboxInput from './input/check/TinyHtmlCheckboxInput.mjs';
|
|
82
|
+
import TinyHtmlRadioInput from './input/check/TinyHtmlRadioInput.mjs';
|
|
83
|
+
import TinyHtmlDateInput from './input/date/TinyHtmlDateInput.mjs';
|
|
84
|
+
import TinyHtmlDateTimeInput from './input/date/TinyHtmlDateTimeInput.mjs';
|
|
85
|
+
import TinyHtmlMonthInput from './input/date/TinyHtmlMonthInput.mjs';
|
|
86
|
+
import TinyHtmlTimeInput from './input/date/TinyHtmlTimeInput.mjs';
|
|
87
|
+
import TinyHtmlWeekInput from './input/date/TinyHtmlWeekInput.mjs';
|
|
74
88
|
import TinyHtmlEmailInput from './input/text/TinyHtmlEmailInput.mjs';
|
|
75
89
|
import TinyHtmlPasswordInput from './input/text/TinyHtmlPasswordInput.mjs';
|
|
76
90
|
import TinyHtmlSearchInput from './input/text/TinyHtmlSearchInput.mjs';
|
|
@@ -6,6 +6,15 @@ import TinyHtmlSubmitInput from './input/button/TinyHtmlSubmitInput.mjs';
|
|
|
6
6
|
import TinyHtmlNumberInput from './input/number/TinyHtmlNumberInput.mjs';
|
|
7
7
|
import TinyHtmlRangeInput from './input/number/TinyHtmlRangeInput.mjs';
|
|
8
8
|
//////////////////////////////////////////////////
|
|
9
|
+
import TinyHtmlCheckboxInput from './input/check/TinyHtmlCheckboxInput.mjs';
|
|
10
|
+
import TinyHtmlRadioInput from './input/check/TinyHtmlRadioInput.mjs';
|
|
11
|
+
//////////////////////////////////////////////////
|
|
12
|
+
import TinyHtmlDateInput from './input/date/TinyHtmlDateInput.mjs';
|
|
13
|
+
import TinyHtmlDateTimeInput from './input/date/TinyHtmlDateTimeInput.mjs';
|
|
14
|
+
import TinyHtmlMonthInput from './input/date/TinyHtmlMonthInput.mjs';
|
|
15
|
+
import TinyHtmlTimeInput from './input/date/TinyHtmlTimeInput.mjs';
|
|
16
|
+
import TinyHtmlWeekInput from './input/date/TinyHtmlWeekInput.mjs';
|
|
17
|
+
//////////////////////////////////////////////////
|
|
9
18
|
import TinyHtmlEmailInput from './input/text/TinyHtmlEmailInput.mjs';
|
|
10
19
|
import TinyHtmlPasswordInput from './input/text/TinyHtmlPasswordInput.mjs';
|
|
11
20
|
import TinyHtmlSearchInput from './input/text/TinyHtmlSearchInput.mjs';
|
|
@@ -99,6 +108,15 @@ class TinyHtmlElems {
|
|
|
99
108
|
static NumberInput = TinyHtmlNumberInput;
|
|
100
109
|
static RangerInput = TinyHtmlRangeInput;
|
|
101
110
|
//////////////////////////////////////////////////
|
|
111
|
+
static CheckboxInput = TinyHtmlCheckboxInput;
|
|
112
|
+
static RadioInput = TinyHtmlRadioInput;
|
|
113
|
+
//////////////////////////////////////////////////
|
|
114
|
+
static DateInput = TinyHtmlDateInput;
|
|
115
|
+
static DateTimeInput = TinyHtmlDateTimeInput;
|
|
116
|
+
static MonthInput = TinyHtmlMonthInput;
|
|
117
|
+
static TimeInput = TinyHtmlTimeInput;
|
|
118
|
+
static WeekInput = TinyHtmlWeekInput;
|
|
119
|
+
//////////////////////////////////////////////////
|
|
102
120
|
static EmailInput = TinyHtmlEmailInput;
|
|
103
121
|
static PasswordInput = TinyHtmlPasswordInput;
|
|
104
122
|
static SearchInput = TinyHtmlSearchInput;
|
|
@@ -148,6 +166,18 @@ export {
|
|
|
148
166
|
TinyHtmlNumberInput,
|
|
149
167
|
TinyHtmlRangeInput,
|
|
150
168
|
//////////////////////////////////////////////////
|
|
169
|
+
|
|
170
|
+
TinyHtmlCheckboxInput;
|
|
171
|
+
TinyHtmlRadioInput;
|
|
172
|
+
|
|
173
|
+
//////////////////////////////////////////////////
|
|
174
|
+
|
|
175
|
+
TinyHtmlDateInput;
|
|
176
|
+
TinyHtmlDateTimeInput;
|
|
177
|
+
TinyHtmlMonthInput;
|
|
178
|
+
TinyHtmlTimeInput;
|
|
179
|
+
TinyHtmlWeekInput;
|
|
180
|
+
|
|
151
181
|
TinyHtmlEmailInput,
|
|
152
182
|
TinyHtmlPasswordInput,
|
|
153
183
|
TinyHtmlSearchInput,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tiny-essentials",
|
|
3
|
-
"version": "1.24.
|
|
3
|
+
"version": "1.24.5",
|
|
4
4
|
"description": "Collection of small, essential scripts designed to be used across various projects. These simple utilities are crafted for speed, ease of use, and versatility.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "npm run test:mjs && npm run test:cjs && npm run test:js",
|