material-inspired-component-library 4.0.0 → 4.0.1
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/components/accordion/README.md +22 -3
- package/components/divider/index.scss +2 -2
- package/components/list/README.md +18 -16
- package/components/list/index.scss +93 -68
- package/components/menu/README.md +2 -1
- package/components/menu/index.scss +6 -18
- package/components/select/README.md +7 -2
- package/components/select/index.scss +2 -3
- package/components/sidesheet/README.md +13 -19
- package/components/sidesheet/index.scss +15 -16
- package/dist/divider.css +1 -1
- package/dist/list.css +1 -1
- package/dist/menu.css +1 -1
- package/dist/micl.css +1 -1
- package/dist/select.css +1 -1
- package/dist/sidesheet.css +1 -1
- package/docs/accordion.html +30 -16
- package/docs/index.html +11 -8
- package/docs/list.html +52 -44
- package/docs/menu.html +2 -1
- package/docs/micl.css +1 -1
- package/docs/sidesheet.html +3 -2
- package/package.json +2 -4
package/docs/sidesheet.html
CHANGED
|
@@ -79,14 +79,14 @@
|
|
|
79
79
|
</dialog>
|
|
80
80
|
<button type="button" class="micl-button-outlined-m" popovertarget="mysidesheet2">Open Standard Sheet<br>without dividers</button>
|
|
81
81
|
|
|
82
|
-
<dialog id="mysidesheet3" class="micl-sidesheet" closedby="closerequest" aria-labelledby="title1">
|
|
82
|
+
<dialog id="mysidesheet3" class="micl-sidesheet" closedby="closerequest" aria-labelledby="title1" tabindex="-1">
|
|
83
83
|
<div class="micl-sidesheet__headline">
|
|
84
84
|
<button class="micl-iconbutton-standard-s material-symbols-outlined">arrow_back</button>
|
|
85
85
|
<h2 id="title3">Title</h2>
|
|
86
86
|
<button class="micl-iconbutton-standard-s material-symbols-outlined" popovertarget="mysidesheet3">close</button>
|
|
87
87
|
</div>
|
|
88
88
|
<div class="micl-sidesheet__content">
|
|
89
|
-
<p class="md-sys-typescale-body-medium"
|
|
89
|
+
<p class="md-sys-typescale-body-medium">Make your selection:</p>
|
|
90
90
|
<div class="switch">
|
|
91
91
|
<label for="cb01" class="md-sys-typescale-body-medium">Selection A</label>
|
|
92
92
|
<input type="checkbox" id="cb01" class="micl-switch">
|
|
@@ -108,6 +108,7 @@
|
|
|
108
108
|
<input type="checkbox" id="cb05" class="micl-switch">
|
|
109
109
|
</div>
|
|
110
110
|
</div>
|
|
111
|
+
<hr class="micl-divider">
|
|
111
112
|
<div class="micl-sidesheet__actions">
|
|
112
113
|
<button type="button" class="micl-button-filled-s">Save</button>
|
|
113
114
|
<button type="button" class="micl-button-outlined-s">Cancel</button>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "material-inspired-component-library",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "The Material-Inspired Component Library (MICL) offers a collection of beautifully crafted components leveraging native HTML markup, designed to align with the Material Design 3 guidelines.",
|
|
5
5
|
"author": "MICL Hermana <micl.hermana@proton.me> (https://github.com/henkpb/micl)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -47,9 +47,7 @@
|
|
|
47
47
|
"main": "dist/micl.js",
|
|
48
48
|
"types": "dist/micl.d.ts",
|
|
49
49
|
"scripts": {
|
|
50
|
-
"build": "webpack"
|
|
51
|
-
"start": "echo 'No start script yet'",
|
|
52
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
50
|
+
"build": "webpack"
|
|
53
51
|
},
|
|
54
52
|
"sideEffects": false,
|
|
55
53
|
"devDependencies": {
|