mithril-materialized 1.1.1 → 1.1.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/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/option.d.ts +4 -0
- package/package.json +8 -8
package/dist/option.d.ts
CHANGED
|
@@ -24,6 +24,10 @@ export interface IInputOption<T extends string | number> {
|
|
|
24
24
|
img?: string;
|
|
25
25
|
/** Select group label */
|
|
26
26
|
group?: string;
|
|
27
|
+
/** Optional class name */
|
|
28
|
+
className?: string;
|
|
29
|
+
/** Optional description */
|
|
30
|
+
description?: string;
|
|
27
31
|
}
|
|
28
32
|
export interface IOptions<T extends string | number> extends Attributes {
|
|
29
33
|
/** Element ID */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mithril-materialized",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "A materialize library for mithril.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -34,17 +34,17 @@
|
|
|
34
34
|
"author": "Erik Vullings <erik.vullings@gmail.com> (http://www.tno.nl)",
|
|
35
35
|
"license": "MIT",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"
|
|
38
|
-
"
|
|
37
|
+
"materialize-css": "^1.0.0",
|
|
38
|
+
"mithril": "^2.2.2"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/materialize-css": "^1.0.
|
|
42
|
-
"@types/mithril": "^2.
|
|
41
|
+
"@types/materialize-css": "^1.0.14",
|
|
42
|
+
"@types/mithril": "^2.2.6",
|
|
43
43
|
"js-yaml": "^4.1.0",
|
|
44
44
|
"microbundle": "^0.15.1",
|
|
45
|
-
"rimraf": "^5.0.
|
|
45
|
+
"rimraf": "^5.0.5",
|
|
46
46
|
"tslib": "^2.6.2",
|
|
47
|
-
"typedoc": "^0.25.
|
|
48
|
-
"typescript": "^5.
|
|
47
|
+
"typedoc": "^0.25.7",
|
|
48
|
+
"typescript": "^5.3.3"
|
|
49
49
|
}
|
|
50
50
|
}
|