@mindly/ui-components 2.2.0 → 3.0.0

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 (48) hide show
  1. package/dist/cjs/index.js +139 -2
  2. package/dist/cjs/index.js.map +1 -1
  3. package/dist/cjs/types/index.d.ts +3 -0
  4. package/dist/cjs/types/lib/AppHeader/AppHeader.d.ts +6 -0
  5. package/dist/cjs/types/lib/AppHeader/AppHeader.style.d.ts +7 -0
  6. package/dist/cjs/types/lib/AppHeader/index.d.ts +1 -0
  7. package/dist/cjs/types/lib/Container/Container.d.ts +2 -0
  8. package/dist/cjs/types/lib/Container/Container.styled.d.ts +5 -0
  9. package/dist/cjs/types/lib/Container/index.d.ts +1 -0
  10. package/dist/cjs/types/lib/Filters/ListSelect/ListSelect.style.d.ts +2 -7
  11. package/dist/cjs/types/lib/Filters/Range/Range.d.ts +3 -4
  12. package/dist/cjs/types/lib/Filters/Range/Range.style.d.ts +1 -1
  13. package/dist/cjs/types/lib/Segment/Segment.d.ts +12 -0
  14. package/dist/cjs/types/lib/Segment/Segment.style.d.ts +3 -0
  15. package/dist/cjs/types/lib/Segment/index.d.ts +1 -0
  16. package/dist/cjs/types/lib/Theme/mindly_constants.d.ts +1 -0
  17. package/dist/cjs/types/lib/button/Button.d.ts +0 -1
  18. package/dist/cjs/types/lib/content-card/ContentCard.style.d.ts +1 -1
  19. package/dist/cjs/types/lib/input/Input.style.d.ts +1 -1
  20. package/dist/cjs/types/lib/navigation-bar/NavigationBar.style.d.ts +1 -1
  21. package/dist/cjs/types/lib/notes-editor/NotesEditor.d.ts +1 -1
  22. package/dist/cjs/types/lib/notes-editor/NotesEditor.styled.d.ts +1 -1
  23. package/dist/cjs/types/lib/scroll-tabs/ScrollTabs.style.d.ts +2 -2
  24. package/dist/esm/index.js +140 -3
  25. package/dist/esm/index.js.map +1 -1
  26. package/dist/esm/types/index.d.ts +3 -0
  27. package/dist/esm/types/lib/AppHeader/AppHeader.d.ts +6 -0
  28. package/dist/esm/types/lib/AppHeader/AppHeader.style.d.ts +7 -0
  29. package/dist/esm/types/lib/AppHeader/index.d.ts +1 -0
  30. package/dist/esm/types/lib/Container/Container.d.ts +2 -0
  31. package/dist/esm/types/lib/Container/Container.styled.d.ts +5 -0
  32. package/dist/esm/types/lib/Container/index.d.ts +1 -0
  33. package/dist/esm/types/lib/Filters/ListSelect/ListSelect.style.d.ts +2 -7
  34. package/dist/esm/types/lib/Filters/Range/Range.d.ts +3 -4
  35. package/dist/esm/types/lib/Filters/Range/Range.style.d.ts +1 -1
  36. package/dist/esm/types/lib/Segment/Segment.d.ts +12 -0
  37. package/dist/esm/types/lib/Segment/Segment.style.d.ts +3 -0
  38. package/dist/esm/types/lib/Segment/index.d.ts +1 -0
  39. package/dist/esm/types/lib/Theme/mindly_constants.d.ts +1 -0
  40. package/dist/esm/types/lib/button/Button.d.ts +0 -1
  41. package/dist/esm/types/lib/content-card/ContentCard.style.d.ts +1 -1
  42. package/dist/esm/types/lib/input/Input.style.d.ts +1 -1
  43. package/dist/esm/types/lib/navigation-bar/NavigationBar.style.d.ts +1 -1
  44. package/dist/esm/types/lib/notes-editor/NotesEditor.d.ts +1 -1
  45. package/dist/esm/types/lib/notes-editor/NotesEditor.styled.d.ts +1 -1
  46. package/dist/esm/types/lib/scroll-tabs/ScrollTabs.style.d.ts +2 -2
  47. package/dist/index.d.ts +4 -5
  48. package/package.json +4 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "2.2.0",
3
+ "version": "3.0.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "react-scripts start",
@@ -9,7 +9,7 @@
9
9
  "test:ts": "tsc --noEmit --skipLibCheck",
10
10
  "coverage": "npm test -- --env=jsdom --coverage --coverageDirectory=jest-coverage --passWithNoTests",
11
11
  "test:lint": "eslint \"./src/**/*{ts,tsx}\" --ignore-pattern \"*.d.ts\" --fix",
12
- "test": "react-scripts test --watchAll=false",
12
+ "test": "react-scripts test --transformIgnorePatterns 'node_modules/(?!(@ionic/react|@ionic/react-router|@ionic/core|@stencil/core|ionicons)/)'",
13
13
  "eject": "react-scripts eject",
14
14
  "storybook": "start-storybook -p 6006 -s public",
15
15
  "build-storybook": "build-storybook -s public",
@@ -19,8 +19,8 @@
19
19
  "-": "^0.0.1",
20
20
  "@babel/polyfill": "^7.12.1",
21
21
  "@capacitor/keyboard": "^1.2.2",
22
- "@ionic/react": "^5.8.0",
23
- "@ionic/react-router": "^5.8.0",
22
+ "@ionic/react": "^6.1.11",
23
+ "@ionic/react-router": "^6.1.11",
24
24
  "@storybook/addon-viewport": "^6.3.10",
25
25
  "@storybook/cli": "^6.4.20",
26
26
  "@testing-library/jest-dom": "^5.14.1",
@@ -43,8 +43,6 @@
43
43
  },
44
44
  "peerDependencies": {
45
45
  "@babel/polyfill": "^7.12.1",
46
- "@ionic/react": "^5.8.0",
47
- "@ionic/react-router": "^5.8.0",
48
46
  "@testing-library/jest-dom": "^5.14.1",
49
47
  "@testing-library/react": "^11.2.7",
50
48
  "@testing-library/user-event": "^12.8.3",