@purpurds/breadcrumbs 3.5.1 → 3.6.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.
package/dist/LICENSE.txt CHANGED
@@ -1,5 +1,5 @@
1
1
  Name: @purpurds/icon
2
- Version: 3.5.0
2
+ Version: 3.5.1
3
3
  License: AGPL-3.0-only
4
4
  Private: false
5
5
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purpurds/breadcrumbs",
3
- "version": "3.5.1",
3
+ "version": "3.6.0",
4
4
  "license": "AGPL-3.0-only",
5
5
  "main": "./dist/breadcrumbs.cjs.js",
6
6
  "types": "./dist/breadcrumbs.d.ts",
@@ -16,8 +16,8 @@
16
16
  "source": "src/breadcrumbs.tsx",
17
17
  "dependencies": {
18
18
  "classnames": "~2.5.0",
19
- "@purpurds/tokens": "3.5.1",
20
- "@purpurds/icon": "3.5.1"
19
+ "@purpurds/icon": "3.6.0",
20
+ "@purpurds/tokens": "3.6.0"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@rushstack/eslint-patch": "~1.7.0",
@@ -38,8 +38,8 @@
38
38
  "prettier": "~2.8.8",
39
39
  "react-dom": "~18.2.0",
40
40
  "react": "~18.2.0",
41
- "typescript": "~5.2.2",
42
- "vite": "~5.1.0",
41
+ "typescript": "~5.4.2",
42
+ "vite": "~5.2.2",
43
43
  "vitest": "~1.4.0",
44
44
  "@purpurds/component-rig": "1.0.0"
45
45
  },
package/readme.mdx CHANGED
@@ -39,30 +39,18 @@ If you need a [custom link](#custom-link), perhaps to use a router, like the `ne
39
39
 
40
40
  #### Via NPM
41
41
 
42
- Add the dependency to your consumer app like `"@purpurds/breadcrumbs": "x.y.z"`
43
-
44
- #### From outside the monorepo (build-time)
45
-
46
- To install this package, you need to setup access to the artifactory. [Click here to go to the guide on how to do that](https://github.com/telia-company/jfrog-documentation/blob/main/doc/JFrog/JFrog_Onboarding.md#getting-access-to-artifactory-and-other-jfrog-applications).
47
-
48
- ---
42
+ Add the dependency to your consumer app like `"@purpurds/purpur": "^x.y.z"`
49
43
 
50
44
  In MyApp.tsx
51
45
 
52
46
  ```tsx
53
- import "@purpurds/tokens/index.css";
54
- ```
55
-
56
- and
57
-
58
- ```tsx
59
- import "@purpurds/breadcrumbs/styles";
47
+ import "@purpurds/purpur/styles";
60
48
  ```
61
49
 
62
50
  In MyComponent.tsx
63
51
 
64
52
  ```tsx
65
- import { Breadcrumbs } from "@purpurds/breadcrumbs";
53
+ import { Breadcrumbs } from "@purpurds/purpur";
66
54
 
67
55
  export const MyComponent = () => {
68
56
  return (