@next-degree/pickle-shared-js 0.3.3 → 0.3.5
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/app/layout.css.map +1 -1
- package/dist/app/page.cjs +1 -1
- package/dist/app/page.cjs.map +1 -1
- package/dist/app/page.js +1 -1
- package/dist/app/page.js.map +1 -1
- package/dist/components/demos/ComboboxDemo.cjs +1 -1
- package/dist/components/demos/ComboboxDemo.cjs.map +1 -1
- package/dist/components/demos/ComboboxDemo.js +1 -1
- package/dist/components/demos/ComboboxDemo.js.map +1 -1
- package/dist/components/demos/index.cjs +1 -1
- package/dist/components/demos/index.cjs.map +1 -1
- package/dist/components/demos/index.js +1 -1
- package/dist/components/demos/index.js.map +1 -1
- package/dist/components/ui/Combobox.cjs +1 -1
- package/dist/components/ui/Combobox.cjs.map +1 -1
- package/dist/components/ui/Combobox.d.cts +10 -6
- package/dist/components/ui/Combobox.d.ts +10 -6
- package/dist/components/ui/Combobox.js +1 -1
- package/dist/components/ui/Combobox.js.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles/globals.css.map +1 -1
- package/package.json +8 -4
- package/.eslintrc.cjs +0 -58
- package/next-env.d.ts +0 -5
- package/next.config.ts +0 -7
- package/postcss.config.mjs +0 -9
- package/prettier.config.js +0 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@next-degree/pickle-shared-js",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"typescript": "^5"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
|
-
"react": "^
|
|
63
|
-
"react-dom": "^
|
|
62
|
+
"react": "^18.0.0",
|
|
63
|
+
"react-dom": "^18.0.0"
|
|
64
64
|
},
|
|
65
65
|
"lint-staged": {
|
|
66
66
|
"**/*.{ts,tsx}": [
|
|
@@ -77,5 +77,9 @@
|
|
|
77
77
|
"bugs": {
|
|
78
78
|
"url": "https://github.com/Next-Degree/pickle-shared-js/issues"
|
|
79
79
|
},
|
|
80
|
-
"homepage": "https://github.com/Next-Degree/pickle-shared-js#readme"
|
|
80
|
+
"homepage": "https://github.com/Next-Degree/pickle-shared-js#readme",
|
|
81
|
+
"files": [
|
|
82
|
+
"dist",
|
|
83
|
+
"README.md"
|
|
84
|
+
]
|
|
81
85
|
}
|
package/.eslintrc.cjs
DELETED
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
/** @type {import("eslint").Linter.Config} */
|
|
2
|
-
const config = {
|
|
3
|
-
parser: "@typescript-eslint/parser",
|
|
4
|
-
parserOptions: {
|
|
5
|
-
project: true,
|
|
6
|
-
},
|
|
7
|
-
plugins: ["@typescript-eslint", "jest", "simple-import-sort"],
|
|
8
|
-
extends: [
|
|
9
|
-
"next/core-web-vitals",
|
|
10
|
-
"plugin:@typescript-eslint/recommended-type-checked",
|
|
11
|
-
"plugin:@typescript-eslint/stylistic-type-checked",
|
|
12
|
-
],
|
|
13
|
-
overrides: [
|
|
14
|
-
{
|
|
15
|
-
files: ["test/unit/**/*.js", "test/unit/**/*.ts", "**/*.test.ts"],
|
|
16
|
-
extends: ["plugin:jest/recommended"],
|
|
17
|
-
rules: {
|
|
18
|
-
//"jest/expect-expect": "off",
|
|
19
|
-
//"jest/no-disabled-tests": "off",
|
|
20
|
-
//"jest/no-conditional-expect": "off",
|
|
21
|
-
//"jest/valid-title": "off",
|
|
22
|
-
//"jest/no-interpolation-in-snapshots": "off",
|
|
23
|
-
//"jest/no-export": "off"
|
|
24
|
-
},
|
|
25
|
-
},
|
|
26
|
-
],
|
|
27
|
-
rules: {
|
|
28
|
-
"@typescript-eslint/array-type": "off",
|
|
29
|
-
"@typescript-eslint/consistent-type-definitions": "off",
|
|
30
|
-
"@typescript-eslint/consistent-type-imports": [
|
|
31
|
-
"warn",
|
|
32
|
-
{
|
|
33
|
-
prefer: "type-imports",
|
|
34
|
-
fixStyle: "inline-type-imports",
|
|
35
|
-
},
|
|
36
|
-
],
|
|
37
|
-
"@typescript-eslint/no-unused-vars": [
|
|
38
|
-
"warn",
|
|
39
|
-
{
|
|
40
|
-
argsIgnorePattern: "^_",
|
|
41
|
-
},
|
|
42
|
-
],
|
|
43
|
-
"@typescript-eslint/require-await": "off",
|
|
44
|
-
"@typescript-eslint/no-misused-promises": [
|
|
45
|
-
"error",
|
|
46
|
-
{
|
|
47
|
-
checksVoidReturn: {
|
|
48
|
-
attributes: false,
|
|
49
|
-
},
|
|
50
|
-
},
|
|
51
|
-
],
|
|
52
|
-
"simple-import-sort/imports": "warn",
|
|
53
|
-
"simple-import-sort/exports": "warn",
|
|
54
|
-
},
|
|
55
|
-
};
|
|
56
|
-
module.exports = config;
|
|
57
|
-
|
|
58
|
-
// https://github.com/vercel/next.js/blob/canary/.eslintrc.json
|
package/next-env.d.ts
DELETED
package/next.config.ts
DELETED
package/postcss.config.mjs
DELETED
package/prettier.config.js
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
/** @type {import('prettier').Config & import('prettier-plugin-tailwindcss').PluginOptions} */
|
|
2
|
-
const config = {
|
|
3
|
-
plugins: ['prettier-plugin-tailwindcss'],
|
|
4
|
-
singleQuote: true,
|
|
5
|
-
trailingComma: 'es5',
|
|
6
|
-
printWidth: 100,
|
|
7
|
-
semi: false,
|
|
8
|
-
endOfLine: 'auto',
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export default config
|