kmaterialize 2.3.3-1.0.3 → 2.3.3-1.0.4
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 +3 -3
- package/components/collapsible/_collapsible.scss +1 -0
- package/dist/css/materialize.colors.min.css +1 -1
- package/dist/css/materialize.css +2 -1
- package/dist/css/materialize.min.css +2 -2
- package/dist/js/materialize.cjs.js +2 -2
- package/dist/js/materialize.d.ts +1 -1
- package/dist/js/materialize.js +2 -2
- package/dist/js/materialize.min.js +2 -2
- package/dist/js/materialize.mjs +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
## Getting started
|
|
16
16
|
Read the [getting started guide](https://materialize.kevinzarshenas.com/getting-started.html) for more information on how to use kmaterialize.
|
|
17
17
|
|
|
18
|
-
- Clone the repo: `git clone https://github.com/
|
|
18
|
+
- Clone the repo: `git clone https://github.com/kekefreedog/kmaterialize.git`
|
|
19
19
|
- Install with [npm](https://www.npmjs.com): `npm install kmaterialize`
|
|
20
20
|
|
|
21
21
|
## Testing
|
|
@@ -31,7 +31,7 @@ This is the core project with all the components. To see how they are used we re
|
|
|
31
31
|
See [Materialize Docs Repo](https://github.com/materializecss/materialize-docs) to see Materialize in Action.
|
|
32
32
|
|
|
33
33
|
### Releases
|
|
34
|
-
Previous releases are available [here](https://github.com/
|
|
34
|
+
Previous releases are available [here](https://github.com/kekefreedog/kmaterialize/releases). You can also find the changelog under each release.
|
|
35
35
|
|
|
36
36
|
## Supported Browsers:
|
|
37
37
|
Materialize is compatible with:
|
|
@@ -49,7 +49,7 @@ We use Jasmine as our testing framework and we're trying to write a robust test
|
|
|
49
49
|
For quick testing install live-server node package globally and run `npm run demo`
|
|
50
50
|
|
|
51
51
|
## Contributing
|
|
52
|
-
Check out the [CONTRIBUTING document](docs/CONTRIBUTING.md) in the root of the repository to learn how you can contribute. You can also browse the [help-wanted](https://github.com/
|
|
52
|
+
Check out the [CONTRIBUTING document](docs/CONTRIBUTING.md) in the root of the repository to learn how you can contribute. You can also browse the [help-wanted](https://github.com/kekefreedog/kmaterialize/labels/help-wanted) tag in our issue tracker to find things to do.
|
|
53
53
|
|
|
54
54
|
## Copyright and license
|
|
55
55
|
Code Copyright 2026 kmaterialize. Code released under the MIT license.
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
.collapsible {
|
|
5
5
|
padding-left: 0;
|
|
6
6
|
list-style-type: none;
|
|
7
|
+
background-color: var(--md-sys-color-surface);
|
|
7
8
|
border-top: 1px solid var(--md-sys-color-outline-variant);
|
|
8
9
|
border-right: 1px solid var(--md-sys-color-outline-variant);
|
|
9
10
|
border-left: 1px solid var(--md-sys-color-outline-variant);
|
package/dist/css/materialize.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Materialize v2.3.3-1.0.
|
|
2
|
+
* Materialize v2.3.3-1.0.4 (https://materializeweb.com)
|
|
3
3
|
* Copyright 2014-2026 Materialize
|
|
4
4
|
* MIT License (https://raw.githubusercontent.com/materializecss/materialize/master/LICENSE)
|
|
5
5
|
*/
|
|
@@ -5453,6 +5453,7 @@ button.btn-floating {
|
|
|
5453
5453
|
.collapsible {
|
|
5454
5454
|
padding-left: 0;
|
|
5455
5455
|
list-style-type: none;
|
|
5456
|
+
background-color: var(--md-sys-color-surface);
|
|
5456
5457
|
border-top: 1px solid var(--md-sys-color-outline-variant);
|
|
5457
5458
|
border-right: 1px solid var(--md-sys-color-outline-variant);
|
|
5458
5459
|
border-left: 1px solid var(--md-sys-color-outline-variant);
|