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.
Files changed (2) hide show
  1. package/dist/index.js +9 -8
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1,6 +1,7 @@
1
- import { MarzButton as m } from "./components/button/index.js";
2
- import { MarzInput as b } from "./components/input/index.js";
3
- import { MarzSidepanel as v } from "./components/sidepanel/index.js";
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 h = "1.0.0";
566
+ const g = "1.0.0";
566
567
  export {
567
568
  d as MarzArticleCard,
568
- m as MarzButton,
569
- b as MarzInput,
569
+ x as MarzButton,
570
+ w as MarzInput,
570
571
  p as MarzMarkdownEditor,
571
572
  c as MarzPagination,
572
- v as MarzSidepanel,
573
- h as VERSION
573
+ f as MarzSidepanel,
574
+ g as VERSION
574
575
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marz-ui",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Marz UI - Framework-agnostic UI components and design system",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",