@keenthemes/ktui 1.0.10 → 1.0.11
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 +2 -2
- package/dist/ktui.js +0 -4
- package/dist/ktui.min.js.map +1 -1
- package/lib/cjs/components/modal/modal.js +0 -4
- package/lib/cjs/components/modal/modal.js.map +1 -1
- package/lib/esm/components/modal/modal.js +0 -4
- package/lib/esm/components/modal/modal.js.map +1 -1
- package/package.json +1 -1
- package/src/components/alert/alert.css +5 -0
- package/src/components/badge/badge.css +5 -0
- package/src/components/drawer/drawer.css +1 -1
- package/src/components/modal/modal.css +18 -2
- package/src/components/modal/modal.ts +0 -5
- package/src/components/table/table.css +1 -1
package/README.md
CHANGED
|
@@ -225,10 +225,10 @@ For specific cases, you can use the `rtl:*` Tailwind modifier to easily control
|
|
|
225
225
|
|
|
226
226
|
## License
|
|
227
227
|
|
|
228
|
-
KTUI is distributed under the MIT license. See [LICENSE.md](https://github.com/keenthemes/
|
|
228
|
+
KTUI is distributed under the MIT license. See [LICENSE.md](https://github.com/keenthemes/ktui/blob/main/LICENSE.md) for full details.
|
|
229
229
|
|
|
230
230
|
---
|
|
231
231
|
|
|
232
232
|
## Contributing
|
|
233
233
|
|
|
234
|
-
Please see our [CONTRIBUTING.md](https://github.com/keenthemes/
|
|
234
|
+
Please see our [CONTRIBUTING.md](https://github.com/keenthemes/ktui/blob/main/CONTRIBUTING.md) for guidelines if you wish to contribute to KTUI.
|
package/dist/ktui.js
CHANGED
|
@@ -9011,10 +9011,6 @@ var KTModal = /** @class */ (function (_super) {
|
|
|
9011
9011
|
if (this._isOpen || this._isTransitioning) {
|
|
9012
9012
|
return;
|
|
9013
9013
|
}
|
|
9014
|
-
//const beforeScroll = this.fireEvent('beforeScroll', this.el);
|
|
9015
|
-
//this.dispatch('beforeScroll.hs.scrollspy', this.el, this.el);
|
|
9016
|
-
//if (beforeScroll instanceof Promise) beforeScroll.then(() => scrollFn());
|
|
9017
|
-
//else scrollFn();
|
|
9018
9014
|
if (targetElement)
|
|
9019
9015
|
this._targetElement = targetElement;
|
|
9020
9016
|
var payload = { cancel: false };
|