meticulous-ui 1.0.15 → 1.0.17

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 (38) hide show
  1. package/dist/{src/components → components}/Icons/ChevronLeft/ChevronLeft.js +2 -2
  2. package/dist/{src/components → components}/Icons/ChevronRight/ChevronRight.js +2 -2
  3. package/dist/{src/components → components}/Pagination/Pagination.js +3 -3
  4. package/dist/{src/components → components}/Pagination/helpers.js +1 -1
  5. package/dist/components/Pagination/index.js +4 -0
  6. package/dist/{src/components → components}/Pagination/styles.js +1 -1
  7. package/dist/{src/components → components}/Ripple/Ripple.js +1 -1
  8. package/dist/index.js +10 -0
  9. package/package.json +3 -4
  10. package/dist/src/index.js +0 -10
  11. /package/dist/{src/colors → colors}/amber.js +0 -0
  12. /package/dist/{src/colors → colors}/black.js +0 -0
  13. /package/dist/{src/colors → colors}/blue.js +0 -0
  14. /package/dist/{src/colors → colors}/blueGray.js +0 -0
  15. /package/dist/{src/colors → colors}/brown.js +0 -0
  16. /package/dist/{src/colors → colors}/cider.js +0 -0
  17. /package/dist/{src/colors → colors}/cyan.js +0 -0
  18. /package/dist/{src/colors → colors}/deepOrange.js +0 -0
  19. /package/dist/{src/colors → colors}/deepPurple.js +0 -0
  20. /package/dist/{src/colors → colors}/green.js +0 -0
  21. /package/dist/{src/colors → colors}/grey.js +0 -0
  22. /package/dist/{src/colors → colors}/index.js +0 -0
  23. /package/dist/{src/colors → colors}/indigo.js +0 -0
  24. /package/dist/{src/colors → colors}/lightBlue.js +0 -0
  25. /package/dist/{src/colors → colors}/lightGreen.js +0 -0
  26. /package/dist/{src/colors → colors}/lime.js +0 -0
  27. /package/dist/{src/colors → colors}/orange.js +0 -0
  28. /package/dist/{src/colors → colors}/pink.js +0 -0
  29. /package/dist/{src/colors → colors}/purple.js +0 -0
  30. /package/dist/{src/colors → colors}/red.js +0 -0
  31. /package/dist/{src/colors → colors}/teal.js +0 -0
  32. /package/dist/{src/colors → colors}/violet.js +0 -0
  33. /package/dist/{src/colors → colors}/white.js +0 -0
  34. /package/dist/{src/colors → colors}/yellow.js +0 -0
  35. /package/dist/{src/components → components}/Icons/ChevronLeft/index.js +0 -0
  36. /package/dist/{src/components → components}/Icons/ChevronRight/index.js +0 -0
  37. /package/dist/{src/components → components}/Pagination/constants.js +0 -0
  38. /package/dist/{src/components → components}/Ripple/index.js +0 -0
@@ -1,5 +1,5 @@
1
- import { j as r } from "../../../../_virtual/jsx-runtime.js";
2
- import i from "../../../../node_modules/styled-components/dist/styled-components.browser.esm.js";
1
+ import { j as r } from "../../../_virtual/jsx-runtime.js";
2
+ import i from "../../../node_modules/styled-components/dist/styled-components.browser.esm.js";
3
3
  import s from "../../../colors/grey.js";
4
4
  const l = i.img`
5
5
  display: inline-block;
@@ -1,5 +1,5 @@
1
- import { j as i } from "../../../../_virtual/jsx-runtime.js";
2
- import e from "../../../../node_modules/styled-components/dist/styled-components.browser.esm.js";
1
+ import { j as i } from "../../../_virtual/jsx-runtime.js";
2
+ import e from "../../../node_modules/styled-components/dist/styled-components.browser.esm.js";
3
3
  import s from "../../../colors/grey.js";
4
4
  const l = e.img`
5
5
  display: inline-block;
@@ -1,6 +1,6 @@
1
- import { j as c } from "../../../_virtual/jsx-runtime.js";
2
- import K from "../../../node_modules/lodash-es/get.js";
3
- import h from "../../../node_modules/lodash-es/range.js";
1
+ import { j as c } from "../../_virtual/jsx-runtime.js";
2
+ import K from "../../node_modules/lodash-es/get.js";
3
+ import h from "../../node_modules/lodash-es/range.js";
4
4
  import { PrevArrow as w, renderPageNum as x, NextArrow as A, renderThreeDots as I } from "./helpers.js";
5
5
  import R from "../../colors/index.js";
6
6
  import S from "../../colors/teal.js";
@@ -1,4 +1,4 @@
1
- import { j as r } from "../../../_virtual/jsx-runtime.js";
1
+ import { j as r } from "../../_virtual/jsx-runtime.js";
2
2
  import s from "../Ripple/Ripple.js";
3
3
  import { FONT_SIZE_MAPPING as x, SIZE_REM_MAPPING as h } from "./constants.js";
4
4
  import { ClickableChevronLeft as j, Page as p, ClickableChevronRight as C, P as t } from "./styles.js";
@@ -0,0 +1,4 @@
1
+ import o from "./Pagination.js";
2
+ export {
3
+ o as default
4
+ };
@@ -1,4 +1,4 @@
1
- import o, { css as i } from "../../../node_modules/styled-components/dist/styled-components.browser.esm.js";
1
+ import o, { css as i } from "../../node_modules/styled-components/dist/styled-components.browser.esm.js";
2
2
  import a from "../Icons/ChevronLeft/ChevronLeft.js";
3
3
  import f from "../Icons/ChevronRight/ChevronRight.js";
4
4
  import c from "../../colors/grey.js";
@@ -1,4 +1,4 @@
1
- import { j as m } from "../../../_virtual/jsx-runtime.js";
1
+ import { j as m } from "../../_virtual/jsx-runtime.js";
2
2
  import { useRef as d } from "react";
3
3
  /* empty css */
4
4
  const x = ({ children: s, rippleColor: l = "rgba(0,0,0,0.3)", className: p = "", ...c }) => {
package/dist/index.js ADDED
@@ -0,0 +1,10 @@
1
+ import { default as r } from "./components/Pagination/Pagination.js";
2
+ import { default as a } from "./colors/index.js";
3
+ import { default as l } from "./components/Icons/ChevronLeft/ChevronLeft.js";
4
+ import { default as d } from "./components/Icons/ChevronRight/ChevronRight.js";
5
+ export {
6
+ l as ChevronLeft,
7
+ d as ChevronRight,
8
+ r as Pagination,
9
+ a as colors
10
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meticulous-ui",
3
- "version": "1.0.15",
3
+ "version": "1.0.17",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.js",
6
6
  "repository": {
@@ -17,8 +17,8 @@
17
17
  ],
18
18
  "type": "module",
19
19
  "peerDependencies": {
20
- "react": "^18.0.0",
21
- "react-dom": "^18.0.0",
20
+ "react": "^19.0.0",
21
+ "react-dom": "^19.0.0",
22
22
  "styled-components": "^6.0.0",
23
23
  "lodash-es": "^4.17.21"
24
24
  },
@@ -50,7 +50,6 @@
50
50
  "eslint-plugin-storybook": "^9.1.10",
51
51
  "gh-pages": "^6.3.0",
52
52
  "prop-types": "^15.8.1",
53
- "source-map-explorer": "^2.5.3",
54
53
  "storybook": "^9.1.10"
55
54
  }
56
55
  }
package/dist/src/index.js DELETED
@@ -1,10 +0,0 @@
1
- import { default as r } from "./colors/index.js";
2
- import { default as a } from "./components/Icons/ChevronLeft/ChevronLeft.js";
3
- import { default as l } from "./components/Icons/ChevronRight/ChevronRight.js";
4
- import { default as d } from "./components/Pagination/Pagination.js";
5
- export {
6
- a as ChevronLeft,
7
- l as ChevronRight,
8
- d as Pagination,
9
- r as colors
10
- };
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes