diff --git a/README.md b/README.md index f743975..f964141 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,6 @@ pnpm add -D @compotes/nuxt > Vue 3/Nuxt 3 packages will arrive soon stay tuned! - ## 🙋‍♂️ Why ? A lot of components library are already shipped with styles but as a Front End developer, I always wants to override a lot. Futhermore, there are not always accessible or they are shipped with jQuery. diff --git a/docs/demo/drilldown.md b/docs/demo/drilldown.md index 92321b6..612818a 100644 --- a/docs/demo/drilldown.md +++ b/docs/demo/drilldown.md @@ -104,4 +104,4 @@ Item - \ No newline at end of file + diff --git a/docs/guide/drag.md b/docs/guide/drag.md index 7a00409..ea50b7b 100644 --- a/docs/guide/drag.md +++ b/docs/guide/drag.md @@ -86,4 +86,4 @@ drag.addEventListener('c.drag.init', (e) => { // [!code focus:3] - `c.drag.init`: On component init - `c.drag.start`: On component drag start - `c.drag.end`: On component drag end -- `c.drag.destroy`: On component destroy \ No newline at end of file +- `c.drag.destroy`: On component destroy diff --git a/docs/guide/drilldown.md b/docs/guide/drilldown.md index 7ce6e55..6bc7eb1 100644 --- a/docs/guide/drilldown.md +++ b/docs/guide/drilldown.md @@ -161,4 +161,4 @@ drilldownElement.addEventListener('c.drilldown.init', (e) => { - `c.drilldown.next`: On next - `c.drilldown.back`: On back - `c.drilldown.reset`: On reset -- `c.drilldown.destroy`: On component destroy \ No newline at end of file +- `c.drilldown.destroy`: On component destroy diff --git a/docs/guide/index.md b/docs/guide/index.md index 3c8d491..fe87ac3 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -73,4 +73,3 @@ Only the main css files is compiled and minified. The other parts are not. You n ``` 5. That's it! Check each component for details about structure, advice for accessibility, options and more! - diff --git a/docs/index.md b/docs/index.md index 519578d..e672c51 100644 --- a/docs/index.md +++ b/docs/index.md @@ -24,4 +24,3 @@ features: icon: 📠 details: Typescript for better world --- - diff --git a/packages/core/src/components/drag.ts b/packages/core/src/components/drag.ts index 66e23f4..7ece553 100644 --- a/packages/core/src/components/drag.ts +++ b/packages/core/src/components/drag.ts @@ -101,7 +101,7 @@ export default class Drag extends Parent { */ public get isDraggable() { return this.el.clientHeight !== this.el.scrollHeight - || this.el.clientWidth !== this.el.scrollWidth + || this.el.clientWidth !== this.el.scrollWidth } /**