marz-ui 1.0.1 → 1.0.2
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.js +9 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import "./styles/style.css";
|
|
2
|
+
import { MarzButton as x } from "./components/button/index.js";
|
|
3
|
+
import { MarzInput as w } from "./components/input/index.js";
|
|
4
|
+
import { MarzSidepanel as f } from "./components/sidepanel/index.js";
|
|
4
5
|
class c extends HTMLElement {
|
|
5
6
|
constructor() {
|
|
6
7
|
super(), this.currentPage = 1, this.totalPages = 1, this.attachShadow({ mode: "open" }), this.container = document.createElement("div"), this.container.className = "pagination-container", this.shadowRoot.appendChild(this.getStyles()), this.shadowRoot.appendChild(this.container), this.render();
|
|
@@ -562,13 +563,13 @@ class p extends HTMLElement {
|
|
|
562
563
|
}
|
|
563
564
|
}
|
|
564
565
|
customElements.get("marz-markdown-editor") || customElements.define("marz-markdown-editor", p);
|
|
565
|
-
const
|
|
566
|
+
const g = "1.0.0";
|
|
566
567
|
export {
|
|
567
568
|
d as MarzArticleCard,
|
|
568
|
-
|
|
569
|
-
|
|
569
|
+
x as MarzButton,
|
|
570
|
+
w as MarzInput,
|
|
570
571
|
p as MarzMarkdownEditor,
|
|
571
572
|
c as MarzPagination,
|
|
572
|
-
|
|
573
|
-
|
|
573
|
+
f as MarzSidepanel,
|
|
574
|
+
g as VERSION
|
|
574
575
|
};
|