@purpurds/text-area 3.5.0 → 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,19 +1,19 @@
1
1
  Name: @purpurds/field-error-text
2
- Version: 3.4.0
2
+ Version: 3.5.1
3
3
  License: AGPL-3.0-only
4
4
  Private: false
5
5
 
6
6
  ---
7
7
 
8
8
  Name: @purpurds/field-helper-text
9
- Version: 3.4.0
9
+ Version: 3.5.1
10
10
  License: AGPL-3.0-only
11
11
  Private: false
12
12
 
13
13
  ---
14
14
 
15
15
  Name: @purpurds/label
16
- Version: 3.4.0
16
+ Version: 3.5.1
17
17
  License: AGPL-3.0-only
18
18
  Private: false
19
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purpurds/text-area",
3
- "version": "3.5.0",
3
+ "version": "3.6.0",
4
4
  "license": "AGPL-3.0-only",
5
5
  "main": "./dist/text-area.cjs.js",
6
6
  "types": "./dist/text-area.d.ts",
@@ -16,10 +16,10 @@
16
16
  "source": "src/text-area.tsx",
17
17
  "dependencies": {
18
18
  "classnames": "~2.5.0",
19
- "@purpurds/field-error-text": "3.5.0",
20
- "@purpurds/field-helper-text": "3.5.0",
21
- "@purpurds/label": "3.5.0",
22
- "@purpurds/tokens": "3.5.0"
19
+ "@purpurds/tokens": "3.6.0",
20
+ "@purpurds/field-error-text": "3.6.0",
21
+ "@purpurds/label": "3.6.0",
22
+ "@purpurds/field-helper-text": "3.6.0"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@rushstack/eslint-patch": "~1.7.0",
@@ -44,8 +44,8 @@
44
44
  "react-dom": "~18.2.0",
45
45
  "react": "~18.2.0",
46
46
  "tsx": "~4.7.0",
47
- "typescript": "~5.2.2",
48
- "vite": "~5.1.0",
47
+ "typescript": "~5.4.2",
48
+ "vite": "~5.2.2",
49
49
  "vitest": "~1.4.0",
50
50
  "@purpurds/component-rig": "1.0.0"
51
51
  },
package/readme.mdx CHANGED
@@ -25,30 +25,18 @@ Except for the props below, [all "native" textarea attributes](https://developer
25
25
 
26
26
  #### Via NPM
27
27
 
28
- Add the dependency to your consumer app like `"@purpurds/text-area": "x.y.z"`
29
-
30
- #### From outside the monorepo (build-time)
31
-
32
- 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).
33
-
34
- ---
28
+ Add the dependency to your consumer app like `"@purpurds/purpur": "^x.y.z"`
35
29
 
36
30
  In MyApp.tsx
37
31
 
38
32
  ```tsx
39
- import "@purpurds/tokens/index.css";
40
- ```
41
-
42
- and
43
-
44
- ```tsx
45
- import "@purpurds/text-area/styles";
33
+ import "@purpurds/purpur/styles";
46
34
  ```
47
35
 
48
36
  In MyComponent.tsx
49
37
 
50
38
  ```tsx
51
- import { TextArea } from "@purpurds/text-area";
39
+ import { TextArea } from "@purpurds/purpur";
52
40
 
53
41
  export const MyComponent = () => {
54
42
  return (