@xylabs/sdk-react 6.2.2 → 6.2.3

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.
Files changed (2) hide show
  1. package/knip.config.ts +31 -16
  2. package/package.json +33 -33
package/knip.config.ts CHANGED
@@ -1,27 +1,42 @@
1
1
  import type { KnipConfig } from 'knip'
2
2
 
3
- const ignoreDependencies = [
4
- '@xylabs/ts-scripts-yarn3',
5
- ]
6
-
7
- const rootIgnoreDependencies = [
8
- ...ignoreDependencies,
9
- '@typescript-eslint/eslint-plugin',
10
- '@typescript-eslint/parser',
11
- 'eslint',
12
- 'eslint-import-resolver-typescript',
13
- ]
14
-
15
3
  const entry = ['src/index.ts*', 'src/index-*.ts*', '*.ts', '*.mjs', 'scripts/**/*.*', 'bin/*', 'src/**/*.stories.ts*', 'src/**/*.spec.ts']
16
4
  const project = ['src/**/*.ts*', '*.ts*']
17
5
 
18
6
  const config: KnipConfig = {
19
- ignoreDependencies: rootIgnoreDependencies,
7
+ entry: [
8
+ 'src/index.ts*',
9
+ 'src/index-*.ts*',
10
+ '*.ts',
11
+ '*.mjs',
12
+ 'scripts/**/*.*',
13
+ 'bin/*',
14
+ 'src/**/*.stories.ts*',
15
+ 'src/**/*.spec.ts',
16
+ ],
17
+ project: ['src/**/*.ts*', '*.ts*'],
20
18
  workspaces: {
21
- '.': { entry: [...entry, 'src/**/*.ts', './storybook/**/*.ts', 'vite.config.ts'], project },
19
+ '.': {
20
+ entry: [...entry, 'src/**/*.ts', './storybook/**/*.ts', 'vite.config.ts'],
21
+ project,
22
+ ignoreDependencies: [
23
+ '@typescript-eslint/eslint-plugin',
24
+ '@typescript-eslint/parser',
25
+ 'eslint',
26
+ 'eslint-import-resolver-typescript',
27
+ ],
28
+ },
22
29
  'packages/*': { entry, project },
23
- 'packages/**/packages/*': { entry, project },
24
- 'packages/**/packages/**/packages/*': { entry, project },
30
+ 'packages/*/packages/*': { entry, project },
31
+ 'packages/*/packages/packages/*': { entry, project },
32
+ 'packages/*/packages/*/packages/*': { entry, project },
33
+ 'packages/*/packages/*/packages/*/packages/*': { entry, project },
34
+ },
35
+ typescript: {
36
+ config: [
37
+ 'tsconfig.json',
38
+ 'packages/**/*/tsconfig.json',
39
+ ],
25
40
  },
26
41
  }
27
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xylabs/sdk-react",
3
- "version": "6.2.2",
3
+ "version": "6.2.3",
4
4
  "description": "Common React library for all XY Labs projects that use React",
5
5
  "keywords": [
6
6
  "utility",
@@ -55,31 +55,31 @@
55
55
  ]
56
56
  },
57
57
  "dependencies": {
58
- "@xylabs/react-accordion": "^6.2.2",
59
- "@xylabs/react-animation": "^6.2.2",
60
- "@xylabs/react-appbar": "^6.2.2",
61
- "@xylabs/react-async-effect": "^6.2.2",
62
- "@xylabs/react-button": "^6.2.2",
63
- "@xylabs/react-common": "^6.2.2",
64
- "@xylabs/react-cookie-consent": "^6.2.2",
65
- "@xylabs/react-crypto": "^6.2.2",
66
- "@xylabs/react-dialogs": "^6.2.2",
67
- "@xylabs/react-experiments": "^6.2.2",
68
- "@xylabs/react-flexbox": "^6.2.2",
69
- "@xylabs/react-hooks": "^6.2.2",
70
- "@xylabs/react-identicon": "^6.2.2",
71
- "@xylabs/react-link": "^6.2.2",
72
- "@xylabs/react-mixpanel": "^6.2.2",
73
- "@xylabs/react-number-status": "^6.2.2",
74
- "@xylabs/react-pixel": "^6.2.2",
75
- "@xylabs/react-pixel-debugger": "^6.2.2",
76
- "@xylabs/react-promise": "^6.2.2",
77
- "@xylabs/react-quick-tip-button": "^6.2.2",
78
- "@xylabs/react-render-spin-check": "^6.2.2",
79
- "@xylabs/react-rich-result": "^6.2.2",
80
- "@xylabs/react-scroll-to-top": "^6.2.2",
81
- "@xylabs/react-shared": "^6.2.2",
82
- "@xylabs/react-theme": "^6.2.2"
58
+ "@xylabs/react-accordion": "^6.2.3",
59
+ "@xylabs/react-animation": "^6.2.3",
60
+ "@xylabs/react-appbar": "^6.2.3",
61
+ "@xylabs/react-async-effect": "^6.2.3",
62
+ "@xylabs/react-button": "^6.2.3",
63
+ "@xylabs/react-common": "^6.2.3",
64
+ "@xylabs/react-cookie-consent": "^6.2.3",
65
+ "@xylabs/react-crypto": "^6.2.3",
66
+ "@xylabs/react-dialogs": "^6.2.3",
67
+ "@xylabs/react-experiments": "^6.2.3",
68
+ "@xylabs/react-flexbox": "^6.2.3",
69
+ "@xylabs/react-hooks": "^6.2.3",
70
+ "@xylabs/react-identicon": "^6.2.3",
71
+ "@xylabs/react-link": "^6.2.3",
72
+ "@xylabs/react-mixpanel": "^6.2.3",
73
+ "@xylabs/react-number-status": "^6.2.3",
74
+ "@xylabs/react-pixel": "^6.2.3",
75
+ "@xylabs/react-pixel-debugger": "^6.2.3",
76
+ "@xylabs/react-promise": "^6.2.3",
77
+ "@xylabs/react-quick-tip-button": "^6.2.3",
78
+ "@xylabs/react-render-spin-check": "^6.2.3",
79
+ "@xylabs/react-rich-result": "^6.2.3",
80
+ "@xylabs/react-scroll-to-top": "^6.2.3",
81
+ "@xylabs/react-shared": "^6.2.3",
82
+ "@xylabs/react-theme": "^6.2.3"
83
83
  },
84
84
  "devDependencies": {
85
85
  "@emotion/react": "^11.14.0",
@@ -96,19 +96,19 @@
96
96
  "@types/react": "^19.1.2",
97
97
  "@typescript-eslint/eslint-plugin": "^8.30.1",
98
98
  "@typescript-eslint/parser": "^8.30.1",
99
- "@xylabs/eslint-config-flat": "^6.2.1",
100
- "@xylabs/eslint-config-react-flat": "^6.2.1",
101
- "@xylabs/ts-scripts-yarn3": "^6.2.1",
102
- "@xylabs/tsconfig-react": "^6.2.1",
103
- "eslint": "^9.24.0",
99
+ "@xylabs/eslint-config-flat": "^6.3.1",
100
+ "@xylabs/eslint-config-react-flat": "^6.3.1",
101
+ "@xylabs/ts-scripts-yarn3": "^6.3.1",
102
+ "@xylabs/tsconfig-react": "^6.3.1",
103
+ "eslint": "^9.25.0",
104
104
  "eslint-import-resolver-typescript": "^4.3.2",
105
- "knip": "^5.50.3",
105
+ "knip": "^5.50.5",
106
106
  "react": "^19.1.0",
107
107
  "react-dom": "^19.1.0",
108
108
  "storybook": "^8.6.12",
109
109
  "typedoc": "^0.28.2",
110
110
  "typescript": "^5.8.3",
111
- "vite": "^6.2.6"
111
+ "vite": "^6.3.2"
112
112
  },
113
113
  "peerDependencies": {
114
114
  "@mui/icons-material": ">=6 <8",