@purpurds/quantity-selector 6.8.3 → 6.10.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,12 +1,12 @@
1
1
  Name: @purpurds/spinner
2
- Version: 6.8.2
2
+ Version: 6.9.0
3
3
  License: AGPL-3.0-only
4
4
  Private: false
5
5
 
6
6
  ---
7
7
 
8
8
  Name: @purpurds/text-field
9
- Version: 6.8.2
9
+ Version: 6.9.0
10
10
  License: AGPL-3.0-only
11
11
  Private: false
12
12
 
@@ -47,13 +47,13 @@ SOFTWARE.
47
47
  ---
48
48
 
49
49
  Name: @purpurds/button
50
- Version: 6.8.2
50
+ Version: 6.9.0
51
51
  License: AGPL-3.0-only
52
52
  Private: false
53
53
 
54
54
  ---
55
55
 
56
56
  Name: @purpurds/icon
57
- Version: 6.8.2
57
+ Version: 6.9.0
58
58
  License: AGPL-3.0-only
59
59
  Private: false
@@ -0,0 +1,2 @@
1
+ import purpurCommon from "@purpurds/component-rig/eslint.config.mjs";
2
+ export default purpurCommon;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@purpurds/quantity-selector",
3
- "version": "6.8.3",
3
+ "version": "6.10.0",
4
4
  "license": "AGPL-3.0-only",
5
5
  "main": "./dist/quantity-selector.cjs.js",
6
6
  "types": "./dist/quantity-selector.d.ts",
@@ -16,35 +16,31 @@
16
16
  "source": "src/quantity-selector.tsx",
17
17
  "dependencies": {
18
18
  "classnames": "~2.5.0",
19
- "@purpurds/button": "6.8.3",
20
- "@purpurds/spinner": "6.8.3",
21
- "@purpurds/text-field": "6.8.3",
22
- "@purpurds/icon": "6.8.3"
19
+ "@purpurds/icon": "6.10.0",
20
+ "@purpurds/text-field": "6.10.0",
21
+ "@purpurds/button": "6.10.0",
22
+ "@purpurds/spinner": "6.10.0"
23
23
  },
24
24
  "devDependencies": {
25
- "@rushstack/eslint-patch": "~1.10.0",
25
+ "eslint": "9.24.0",
26
26
  "@storybook/blocks": "^8.6.4",
27
27
  "@storybook/preview-api": "^8.6.4",
28
28
  "@storybook/react": "^8.6.4",
29
- "@telia/base-rig": "~8.2.0",
30
- "@telia/react-rig": "~3.2.0",
31
29
  "@testing-library/dom": "~10.4.0",
32
30
  "@testing-library/jest-dom": "~6.4.0",
33
31
  "@testing-library/react": "~16.2.0",
34
32
  "@types/node": "20.12.12",
35
33
  "@types/react-dom": "^19.0.4",
36
34
  "@types/react": "^19.0.10",
37
- "eslint-plugin-testing-library": "~6.2.0",
38
- "eslint": "^8.57.0",
39
35
  "jsdom": "~22.1.0",
40
- "lint-staged": "~10.5.3",
36
+ "lint-staged": "15.5.0",
41
37
  "prettier": "~2.8.8",
42
38
  "react-dom": "^19.0.0",
43
39
  "react": "^19.0.0",
44
40
  "storybook": "^8.6.4",
45
41
  "typescript": "^5.6.3",
46
42
  "vite": "^6.2.1",
47
- "vitest": "^2.1.2",
43
+ "vitest": "^3.1.2",
48
44
  "@purpurds/component-rig": "1.0.0"
49
45
  },
50
46
  "peerDependencies": {
@@ -52,7 +52,7 @@ export const Uncontrolled: Story = {
52
52
  args: {
53
53
  variant: "attached",
54
54
  buttonVariant: "primary",
55
- onChange: () => {}, // eslint-disable-line @typescript-eslint/no-empty-function
55
+ onChange: () => {},
56
56
  },
57
57
  argTypes: {
58
58
  value: {
package/.eslintrc.js DELETED
@@ -1,15 +0,0 @@
1
- require("@rushstack/eslint-patch/modern-module-resolution");
2
-
3
- module.exports = {
4
- extends: ["./node_modules/@telia/react-rig/.eslintrc.js"],
5
- rules: {
6
- curly: "error",
7
- },
8
- overrides: [
9
- {
10
- // We enable eslint-plugin-testing-library rules or preset only for matching testing files!
11
- files: ["**/__tests__/**/*.[jt]s?(x)"],
12
- extends: ["plugin:testing-library/react"],
13
- },
14
- ],
15
- };