@purpurds/tabs 3.5.1 → 3.7.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.6.0
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/tabs",
3
- "version": "3.5.1",
3
+ "version": "3.7.0",
4
4
  "license": "AGPL-3.0-only",
5
5
  "main": "./dist/tabs.cjs.js",
6
6
  "types": "./dist/tabs.d.ts",
@@ -17,9 +17,9 @@
17
17
  "dependencies": {
18
18
  "classnames": "~2.5.0",
19
19
  "@radix-ui/react-tabs": "~1.0.4",
20
- "@purpurds/tokens": "3.5.1",
21
- "@purpurds/paragraph": "3.5.1",
22
- "@purpurds/icon": "3.5.1"
20
+ "@purpurds/paragraph": "3.7.0",
21
+ "@purpurds/tokens": "3.7.0",
22
+ "@purpurds/icon": "3.7.0"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@rushstack/eslint-patch": "~1.7.0",
@@ -40,8 +40,8 @@
40
40
  "prettier": "~2.8.8",
41
41
  "react-dom": "~18.2.0",
42
42
  "react": "~18.2.0",
43
- "typescript": "~5.2.2",
44
- "vite": "~5.1.0",
43
+ "typescript": "~5.4.2",
44
+ "vite": "~5.2.2",
45
45
  "vitest": "~1.4.0",
46
46
  "@purpurds/component-rig": "1.0.0"
47
47
  },
package/readme.mdx CHANGED
@@ -28,30 +28,18 @@ import packageInfo from "./package.json";
28
28
 
29
29
  #### Via NPM
30
30
 
31
- Add the dependency to your consumer app like `"@purpurds/tabs": "x.y.z"`
32
-
33
- #### From outside the monorepo (build-time)
34
-
35
- 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).
36
-
37
- ---
31
+ Add the dependency to your consumer app like `"@purpurds/purpur": "^x.y.z"`
38
32
 
39
33
  In MyApp.tsx
40
34
 
41
35
  ```tsx
42
- import "@purpurds/tokens/index.css";
43
- ```
44
-
45
- and
46
-
47
- ```tsx
48
- import "@purpurds/tabs/styles";
36
+ import "@purpurds/purpur/styles";
49
37
  ```
50
38
 
51
39
  In MyComponent.tsx
52
40
 
53
41
  ```tsx
54
- import { Tabs } from "@purpurds/tabs";
42
+ import { Tabs } from "@purpurds/purpur";
55
43
 
56
44
  export const MyComponent = () => {
57
45
  return (