@paperless/react 1.52.0 → 1.52.2
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/CHANGELOG.md +19 -0
- package/package.json +52 -50
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.52.2](https://github.com/ionic-team/ionic/compare/v1.52.1...v1.52.2) (2024-09-24)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @paperless/react
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.52.1](https://github.com/ionic-team/ionic/compare/v1.52.0...v1.52.1) (2024-09-23)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **organisms/table:** Actually parse sizes correctly for actions etc ([69b2f34](https://github.com/ionic-team/ionic/commit/69b2f34d5e149bc4f8474b4cc03669a583b0e7de))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [1.52.0](https://github.com/ionic-team/ionic/compare/v1.51.4...v1.52.0) (2024-09-20)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @paperless/react
|
package/package.json
CHANGED
|
@@ -1,52 +1,54 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
2
|
+
"name": "@paperless/react",
|
|
3
|
+
"sideEffects": false,
|
|
4
|
+
"version": "1.52.2",
|
|
5
|
+
"description": "React specific wrapper for component-library",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/ionic-team/ionic.git"
|
|
9
|
+
},
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"registry": "https://registry.npmjs.org"
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"prebuild": "yarn",
|
|
15
|
+
"build": "yarn clean && yarn compile",
|
|
16
|
+
"build:prod": "yarn build",
|
|
17
|
+
"clean": "rm -rf dist",
|
|
18
|
+
"compile": "yarn tsc",
|
|
19
|
+
"tsc": "tsc -p .",
|
|
20
|
+
"rollup": "rollup -c",
|
|
21
|
+
"preyarn:publish": "cp ../../README.md .",
|
|
22
|
+
"yarn:publish": "yarn publish",
|
|
23
|
+
"prettier:check": "yarn prettier \"./src/**/*.{ts,tsx,html,scss,json}\"",
|
|
24
|
+
"prettier:write": "yarn prettier:check -w"
|
|
25
|
+
},
|
|
26
|
+
"main": "./dist/index.js",
|
|
27
|
+
"module": "./dist/index.js",
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"files": [
|
|
30
|
+
"dist/"
|
|
31
|
+
],
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@types/jest": "29.5.1",
|
|
34
|
+
"@types/node": "20.10.3",
|
|
35
|
+
"jest": "29.5.0",
|
|
36
|
+
"jest-dom": "4.0.0",
|
|
37
|
+
"np": "8.0.2",
|
|
38
|
+
"react": "18.2.0",
|
|
39
|
+
"react-dom": "18.2.0",
|
|
40
|
+
"typescript": "4.6.3"
|
|
41
|
+
},
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"react": "^17.0.2 || ^18.0.0",
|
|
44
|
+
"react-dom": "^17.0.2 || ^18.0.0"
|
|
45
|
+
},
|
|
46
|
+
"jest": {
|
|
47
|
+
"preset": "ts-jest",
|
|
48
|
+
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js",
|
|
49
|
+
"testPathIgnorePatterns": [
|
|
50
|
+
"node_modules",
|
|
51
|
+
"dist"
|
|
52
|
+
]
|
|
53
|
+
}
|
|
52
54
|
}
|