@digigov/react-modules 1.2.0-rc.29 → 1.2.0-rc.31

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 (116) hide show
  1. package/Faq/Faq.stories.d.ts +8 -0
  2. package/Faq/Results/index.js +29 -0
  3. package/Faq/Results/package.json +6 -0
  4. package/Faq/Results.d.ts +9 -0
  5. package/Faq/Results.js.map +7 -0
  6. package/Faq/__stories__/Default.d.ts +2 -0
  7. package/Faq/hooks/index.js +66 -0
  8. package/Faq/hooks/package.json +6 -0
  9. package/Faq/hooks.d.ts +15 -0
  10. package/Faq/hooks.js.map +7 -0
  11. package/Faq/index.d.ts +43 -0
  12. package/Faq/index.js +169 -0
  13. package/Faq/index.js.map +7 -0
  14. package/Faq/index.test.d.ts +1 -0
  15. package/Faq/package.json +6 -0
  16. package/Faq/slug/index.js +97 -0
  17. package/Faq/slug/package.json +6 -0
  18. package/Faq/slug.d.ts +1 -0
  19. package/Faq/slug.js.map +7 -0
  20. package/Faq/splitted.test.d.ts +1 -0
  21. package/Faq/utils/index.js +8 -0
  22. package/Faq/utils/package.json +6 -0
  23. package/Faq/utils.d.ts +1 -0
  24. package/Faq/utils.js.map +7 -0
  25. package/FilteredResults/DataTable/index.js +18 -0
  26. package/FilteredResults/DataTable/package.json +6 -0
  27. package/FilteredResults/DataTable.d.ts +5 -0
  28. package/FilteredResults/DataTable.js.map +7 -0
  29. package/FilteredResults/FilterChips/index.js +52 -0
  30. package/FilteredResults/FilterChips/package.json +6 -0
  31. package/FilteredResults/FilterChips.d.ts +3 -0
  32. package/FilteredResults/FilterChips.js.map +7 -0
  33. package/FilteredResults/FilterFields/index.js +11 -0
  34. package/FilteredResults/FilterFields/package.json +6 -0
  35. package/FilteredResults/FilterFields.d.ts +5 -0
  36. package/FilteredResults/FilterFields.js.map +7 -0
  37. package/FilteredResults/FilteredResults.stories.d.ts +8 -0
  38. package/FilteredResults/__stories__/Default.d.ts +2 -0
  39. package/FilteredResults/hooks/index.js +105 -0
  40. package/FilteredResults/hooks/package.json +6 -0
  41. package/FilteredResults/hooks.d.ts +22 -0
  42. package/FilteredResults/hooks.js.map +7 -0
  43. package/FilteredResults/index.d.ts +25 -0
  44. package/FilteredResults/index.js +120 -0
  45. package/FilteredResults/index.js.map +7 -0
  46. package/FilteredResults/index.test.d.ts +1 -0
  47. package/FilteredResults/package.json +6 -0
  48. package/FilteredResults/splitted.test.d.ts +1 -0
  49. package/LICENSE +0 -0
  50. package/ReactModules.stories.d.ts +4 -0
  51. package/cjs/Faq/Results/index.js +58 -0
  52. package/cjs/Faq/Results.js.map +7 -0
  53. package/cjs/Faq/hooks/index.js +90 -0
  54. package/cjs/Faq/hooks.js.map +7 -0
  55. package/cjs/Faq/index.js +194 -0
  56. package/cjs/Faq/index.js.map +7 -0
  57. package/cjs/Faq/slug/index.js +120 -0
  58. package/cjs/Faq/slug.js.map +7 -0
  59. package/cjs/Faq/utils/index.js +31 -0
  60. package/cjs/Faq/utils.js.map +7 -0
  61. package/cjs/FilteredResults/DataTable/index.js +42 -0
  62. package/cjs/FilteredResults/DataTable.js.map +7 -0
  63. package/cjs/FilteredResults/FilterChips/index.js +82 -0
  64. package/cjs/FilteredResults/FilterChips.js.map +7 -0
  65. package/cjs/FilteredResults/FilterFields/index.js +44 -0
  66. package/cjs/FilteredResults/FilterFields.js.map +7 -0
  67. package/cjs/FilteredResults/hooks/index.js +132 -0
  68. package/cjs/FilteredResults/hooks.js.map +7 -0
  69. package/cjs/FilteredResults/index.js +153 -0
  70. package/cjs/FilteredResults/index.js.map +7 -0
  71. package/cjs/index.js +24 -0
  72. package/cjs/index.js.map +7 -0
  73. package/cjs/lazy/index.js +44 -0
  74. package/cjs/lazy.js.map +7 -0
  75. package/cjs/registry/index.js +73 -0
  76. package/cjs/registry.js.map +7 -0
  77. package/index.d.ts +2 -0
  78. package/index.js +8 -0
  79. package/index.js.map +7 -0
  80. package/lazy/index.js +11 -0
  81. package/lazy/package.json +6 -0
  82. package/package.json +12 -35
  83. package/registry/index.js +43 -0
  84. package/registry/package.json +6 -0
  85. package/src/Faq/Faq.stories.js +7 -0
  86. package/src/Faq/Results.tsx +53 -0
  87. package/src/Faq/__stories__/Default.tsx +292 -0
  88. package/src/Faq/hooks.ts +89 -0
  89. package/src/Faq/index.test.tsx +24 -0
  90. package/src/Faq/index.tsx +286 -0
  91. package/src/Faq/slug.ts +140 -0
  92. package/src/Faq/splitted.test.tsx +19 -0
  93. package/src/Faq/utils.ts +5 -0
  94. package/src/FilteredResults/__stories__/Default.tsx +1 -1
  95. package/src/FilteredResults/index.test.tsx +4 -0
  96. package/src/FilteredResults/splitted.test.tsx +4 -0
  97. package/src/index.ts +1 -0
  98. package/src/lazy.js +11 -0
  99. package/src/registry.js +43 -0
  100. package/.prettierrc.js +0 -1
  101. package/.rush/temp/chunked-rush-logs/react-modules.build.chunks.jsonl +0 -8
  102. package/.rush/temp/chunked-rush-logs/react-modules.lint.chunks.jsonl +0 -19
  103. package/.rush/temp/chunked-rush-logs/react-modules.publint.chunks.jsonl +0 -20
  104. package/.rush/temp/package-deps_build.json +0 -27
  105. package/.rush/temp/package-deps_lint.json +0 -27
  106. package/.rush/temp/package-deps_publint.json +0 -29
  107. package/.rush/temp/shrinkwrap-deps.json +0 -19
  108. package/eslint.config.mjs +0 -8
  109. package/playwright-ct.config.ts +0 -3
  110. package/react-modules.build.log +0 -9
  111. package/rush-logs/react-modules.build.log +0 -8
  112. package/rush-logs/react-modules.lint.log +0 -19
  113. package/rush-logs/react-modules.publint.log +0 -20
  114. package/tailwind.config.js +0 -17
  115. package/tsconfig.json +0 -27
  116. package/tsconfig.production.json +0 -29
@@ -1,19 +0,0 @@
1
- {"kind":"O","text":"Invoking: digigov lint \n"}
2
- {"kind":"O","text":" LOG Running: eslint --no-error-on-unmatched-pattern\n"}
3
- {"kind":"O","text":"\n"}
4
- {"kind":"O","text":"/Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/src/FilteredResults/__stories__/Default.tsx\n"}
5
- {"kind":"O","text":" 209:20 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any\n"}
6
- {"kind":"O","text":"\n"}
7
- {"kind":"O","text":"/Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/src/FilteredResults/hooks.ts\n"}
8
- {"kind":"O","text":" 39:11 warning Use \"@ts-expect-error\" instead of \"@ts-ignore\", as \"@ts-ignore\" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment\n"}
9
- {"kind":"O","text":" 67:6 warning React Hook useEffect has a missing dependency: 'search'. Either include it or remove the dependency array react-hooks/exhaustive-deps\n"}
10
- {"kind":"O","text":" 69:9 warning The 'search' function makes the dependencies of useMemo Hook (at line 130) change on every render. To fix this, wrap the definition of 'search' in its own useCallback() Hook react-hooks/exhaustive-deps\n"}
11
- {"kind":"O","text":"\n"}
12
- {"kind":"O","text":"/Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/src/FilteredResults/index.tsx\n"}
13
- {"kind":"O","text":" 55:6 warning React Hook useEffect has missing dependencies: 'autoSubmit', 'form', and 'previousValues'. Either include them or remove the dependency array react-hooks/exhaustive-deps\n"}
14
- {"kind":"O","text":" 160:9 warning Use \"@ts-expect-error\" instead of \"@ts-ignore\", as \"@ts-ignore\" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment\n"}
15
- {"kind":"O","text":" 168:9 warning Use \"@ts-expect-error\" instead of \"@ts-ignore\", as \"@ts-ignore\" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment\n"}
16
- {"kind":"O","text":"\n"}
17
- {"kind":"O","text":"✖ 7 problems (0 errors, 7 warnings)\n"}
18
- {"kind":"O","text":"\n"}
19
- {"kind":"O","text":"⏱️ \"lint\" execution time: 1.690s\n"}
@@ -1,20 +0,0 @@
1
- {"kind":"O","text":"Invoking: publint dist \n"}
2
- {"kind":"O","text":"@digigov/react-modules lint results:\n"}
3
- {"kind":"O","text":"Suggestions:\n"}
4
- {"kind":"O","text":"1. pkg.module is used to output ESM, but pkg.exports is not defined. As NodeJS doesn't read pkg.module, the ESM output may be skipped. Consider adding pkg.exports to export the ESM output. pkg.module can usually be removed alongside too. (This will be a breaking change)\n"}
5
- {"kind":"O","text":"Warnings:\n"}
6
- {"kind":"O","text":"1. /FilteredResults/DataTable/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /FilteredResults/DataTable/index.mjs\n"}
7
- {"kind":"O","text":"2. /FilteredResults/FilterFields/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /FilteredResults/FilterFields/index.mjs\n"}
8
- {"kind":"O","text":"3. /FilteredResults/FilterChips/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /FilteredResults/FilterChips/index.mjs\n"}
9
- {"kind":"O","text":"4. /FilteredResults/FilteredResults.stories/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /FilteredResults/FilteredResults.stories/index.mjs\n"}
10
- {"kind":"O","text":"5. /FilteredResults/hooks/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /FilteredResults/hooks/index.mjs\n"}
11
- {"kind":"O","text":"6. /ReactModules.stories/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /ReactModules.stories/index.mjs\n"}
12
- {"kind":"O","text":"7. /FilteredResults/__stories__/Default/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /FilteredResults/__stories__/Default/index.mjs\n"}
13
- {"kind":"O","text":"8. /index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /index.mjs\n"}
14
- {"kind":"O","text":"9. /FilteredResults/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /FilteredResults/index.mjs\n"}
15
- {"kind":"O","text":"10. /src/FilteredResults/FilteredResults.stories.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /src/FilteredResults/FilteredResults.stories.mjs\n"}
16
- {"kind":"O","text":"11. /lazy/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /lazy/index.mjs\n"}
17
- {"kind":"O","text":"12. /registry/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /registry/index.mjs\n"}
18
- {"kind":"O","text":"13. /src/lazy.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /src/lazy.mjs\n"}
19
- {"kind":"O","text":"14. /src/registry.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /src/registry.mjs\n"}
20
- {"kind":"O","text":"15. /src/ReactModules.stories.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /src/ReactModules.stories.mjs\n"}
@@ -1,27 +0,0 @@
1
- {
2
- "files": {
3
- "libs/react-modules/.gitignore": "53c37a16608c014b2cf0bd2d5dfcafe953cdd857",
4
- "libs/react-modules/.prettierrc.js": "0fcfefe7e173b01f620c09ef31913d8ca6ba9a97",
5
- "libs/react-modules/CHANGELOG.md": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
6
- "libs/react-modules/README.md": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
7
- "libs/react-modules/eslint.config.mjs": "14b40334adbf54674ec93e107c501677be5dd45f",
8
- "libs/react-modules/package.json": "a0d17d703fa918bf4ab83602077209fd1571cc23",
9
- "libs/react-modules/playwright-ct.config.ts": "1834e5cd4fb06b01c12f7a0c9bc6b585e155c736",
10
- "libs/react-modules/src/FilteredResults/DataTable.tsx": "bb2bb9d018e338f0734eabfc3a4ff75078c286a0",
11
- "libs/react-modules/src/FilteredResults/FilterChips.tsx": "f49914a5546c5a87859afc74b576153599ac3835",
12
- "libs/react-modules/src/FilteredResults/FilterFields.tsx": "b7e9d79a2ff9f49133d7008d039e6d314611ee99",
13
- "libs/react-modules/src/FilteredResults/FilteredResults.stories.js": "f25a3885eda9929d30624ecb8c7705241410f90b",
14
- "libs/react-modules/src/FilteredResults/__stories__/Default.tsx": "84ab3057f723c3563df499429c631bdb5b8c5165",
15
- "libs/react-modules/src/FilteredResults/hooks.ts": "a42aef1134e3244b880888ea924291b986b44e90",
16
- "libs/react-modules/src/FilteredResults/index.test.tsx": "b8ddd24744c8b5f3d80407ce8097a6d154a007a4",
17
- "libs/react-modules/src/FilteredResults/index.tsx": "ef6bcb6344900e1f4c56a5d7330c6d4ef3b07ff9",
18
- "libs/react-modules/src/FilteredResults/splitted.test.tsx": "1bd71476714c667174d557d22996e0098034771a",
19
- "libs/react-modules/src/ReactModules.stories.js": "5ddf932ffe928fdb1a870c5a8306ab8b41c59710",
20
- "libs/react-modules/src/index.ts": "2599492312f57808882362e97bf88cc8b31c154f",
21
- "libs/react-modules/tailwind.config.js": "aa853950fb806aba96ad324a77c5f2b3e8802179",
22
- "libs/react-modules/tsconfig.json": "62c2a733eac545cb1e03c307112112edaebef160",
23
- "libs/react-modules/tsconfig.production.json": "8568d53d05e62e6810e445bf9cbb74a2373745a6",
24
- "libs/react-modules/.rush/temp/shrinkwrap-deps.json": "2accd517a97c7935184742cab8ca50b6d6d66669"
25
- },
26
- "arguments": "digigov build --generate-registry "
27
- }
@@ -1,27 +0,0 @@
1
- {
2
- "files": {
3
- "libs/react-modules/.gitignore": "53c37a16608c014b2cf0bd2d5dfcafe953cdd857",
4
- "libs/react-modules/.prettierrc.js": "0fcfefe7e173b01f620c09ef31913d8ca6ba9a97",
5
- "libs/react-modules/CHANGELOG.md": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
6
- "libs/react-modules/README.md": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
7
- "libs/react-modules/eslint.config.mjs": "14b40334adbf54674ec93e107c501677be5dd45f",
8
- "libs/react-modules/package.json": "b82f90df7413e3874d5d82541071d310a9303b7b",
9
- "libs/react-modules/playwright-ct.config.ts": "1834e5cd4fb06b01c12f7a0c9bc6b585e155c736",
10
- "libs/react-modules/src/FilteredResults/DataTable.tsx": "bb2bb9d018e338f0734eabfc3a4ff75078c286a0",
11
- "libs/react-modules/src/FilteredResults/FilterChips.tsx": "f49914a5546c5a87859afc74b576153599ac3835",
12
- "libs/react-modules/src/FilteredResults/FilterFields.tsx": "b7e9d79a2ff9f49133d7008d039e6d314611ee99",
13
- "libs/react-modules/src/FilteredResults/FilteredResults.stories.js": "f25a3885eda9929d30624ecb8c7705241410f90b",
14
- "libs/react-modules/src/FilteredResults/__stories__/Default.tsx": "84ab3057f723c3563df499429c631bdb5b8c5165",
15
- "libs/react-modules/src/FilteredResults/hooks.ts": "a42aef1134e3244b880888ea924291b986b44e90",
16
- "libs/react-modules/src/FilteredResults/index.test.tsx": "b8ddd24744c8b5f3d80407ce8097a6d154a007a4",
17
- "libs/react-modules/src/FilteredResults/index.tsx": "ef6bcb6344900e1f4c56a5d7330c6d4ef3b07ff9",
18
- "libs/react-modules/src/FilteredResults/splitted.test.tsx": "1bd71476714c667174d557d22996e0098034771a",
19
- "libs/react-modules/src/ReactModules.stories.js": "5ddf932ffe928fdb1a870c5a8306ab8b41c59710",
20
- "libs/react-modules/src/index.ts": "2599492312f57808882362e97bf88cc8b31c154f",
21
- "libs/react-modules/tailwind.config.js": "aa853950fb806aba96ad324a77c5f2b3e8802179",
22
- "libs/react-modules/tsconfig.json": "62c2a733eac545cb1e03c307112112edaebef160",
23
- "libs/react-modules/tsconfig.production.json": "8568d53d05e62e6810e445bf9cbb74a2373745a6",
24
- "libs/react-modules/.rush/temp/shrinkwrap-deps.json": "2accd517a97c7935184742cab8ca50b6d6d66669"
25
- },
26
- "arguments": "digigov lint "
27
- }
@@ -1,29 +0,0 @@
1
- {
2
- "files": {
3
- "libs/react-modules/.eslintrc.js": "5b14be51584340a99bed9aa667fa251503cbcddb",
4
- "libs/react-modules/.gitignore": "53c37a16608c014b2cf0bd2d5dfcafe953cdd857",
5
- "libs/react-modules/.prettierrc.js": "916426859972c08befeab8aca5b55e95ba714b96",
6
- "libs/react-modules/CHANGELOG.md": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
7
- "libs/react-modules/README.md": "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391",
8
- "libs/react-modules/package.json": "4f5a40f72a364abacd9ce3d9e1e18ed2738ba37d",
9
- "libs/react-modules/playwright-ct.config.ts": "875d1718d73ee7b1b1fc087fe9c0174e42376efb",
10
- "libs/react-modules/src/FilteredResults/DataTable.tsx": "bb2bb9d018e338f0734eabfc3a4ff75078c286a0",
11
- "libs/react-modules/src/FilteredResults/FilterChips.tsx": "f49914a5546c5a87859afc74b576153599ac3835",
12
- "libs/react-modules/src/FilteredResults/FilterFields.tsx": "b7e9d79a2ff9f49133d7008d039e6d314611ee99",
13
- "libs/react-modules/src/FilteredResults/FilteredResults.stories.js": "f25a3885eda9929d30624ecb8c7705241410f90b",
14
- "libs/react-modules/src/FilteredResults/__stories__/Default.tsx": "ac2aa1190ec7ff382d478c862b84cc84ff83135f",
15
- "libs/react-modules/src/FilteredResults/hooks.ts": "72fdfb78fd8dbc12a6e945bfe64b04a41888ef8f",
16
- "libs/react-modules/src/FilteredResults/index.test.tsx": "b8ddd24744c8b5f3d80407ce8097a6d154a007a4",
17
- "libs/react-modules/src/FilteredResults/index.tsx": "ef6bcb6344900e1f4c56a5d7330c6d4ef3b07ff9",
18
- "libs/react-modules/src/FilteredResults/splitted.test.tsx": "1bd71476714c667174d557d22996e0098034771a",
19
- "libs/react-modules/src/ReactModules.stories.js": "5ddf932ffe928fdb1a870c5a8306ab8b41c59710",
20
- "libs/react-modules/src/index.ts": "2599492312f57808882362e97bf88cc8b31c154f",
21
- "libs/react-modules/src/lazy.js": "4c4e4210851b9125c4b98708852f1e92a3fb1d29",
22
- "libs/react-modules/src/registry.js": "d009cca490ae5789385a1a5bb8c180bd2c52c012",
23
- "libs/react-modules/tailwind.config.js": "aa853950fb806aba96ad324a77c5f2b3e8802179",
24
- "libs/react-modules/tsconfig.json": "d9ce6819f20f98b2a78c09a7305cc490e762b8f7",
25
- "libs/react-modules/tsconfig.production.json": "f7c42adc2447947b14ff9ef1dc952b437c02a9e7",
26
- "libs/react-modules/.rush/temp/shrinkwrap-deps.json": "8a2e3fe97239f1c8a5bc675a5db74b856725e4a7"
27
- },
28
- "arguments": "publint dist "
29
- }
@@ -1,19 +0,0 @@
1
- {
2
- "../../libs/react-modules": "../../libs/react-modules:sGZOIgtkqmQerbFTm0UMM5T7AUUcerw0xI72uDpNlLk=:",
3
- "/@hookform/devtools@4.2.0(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": "Missing shrinkwrap entry!",
4
- "/@playwright/experimental-ct-react@1.41.0(@types/node@18.19.0)(lightningcss@1.22.0)(terser@5.33.0)(vite@5.4.11(@types/node@18.19.0)(lightningcss@1.22.0)(sass-embedded@1.81.0)(terser@5.33.0))": "Missing shrinkwrap entry!",
5
- "/@playwright/test@1.41.0": "Missing shrinkwrap entry!",
6
- "/@types/node@18.19.0": "Missing shrinkwrap entry!",
7
- "/@types/react-dom@18.3.0": "Missing shrinkwrap entry!",
8
- "/@types/react@18.3.3": "Missing shrinkwrap entry!",
9
- "/clsx@1.1.1": "Missing shrinkwrap entry!",
10
- "/dompurify@3.0.6": "Missing shrinkwrap entry!",
11
- "/eslint@9.16.0(jiti@1.21.6)": "Missing shrinkwrap entry!",
12
- "/jimp@0.22.10(encoding@0.1.13)": "Missing shrinkwrap entry!",
13
- "/prettier@3.4.2": "Missing shrinkwrap entry!",
14
- "/publint@0.1.8": "Missing shrinkwrap entry!",
15
- "/react-dom@18.3.1(react@18.3.1)": "Missing shrinkwrap entry!",
16
- "/react-query@2.26.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": "Missing shrinkwrap entry!",
17
- "/react@18.3.1": "Missing shrinkwrap entry!",
18
- "/typescript@5.6.2": "Missing shrinkwrap entry!"
19
- }
package/eslint.config.mjs DELETED
@@ -1,8 +0,0 @@
1
- import config from '@digigov/cli-lint/eslint.config';
2
-
3
- export default [
4
- ...config,
5
- {
6
- ignores: ['**/*.test.*'],
7
- },
8
- ];
@@ -1,3 +0,0 @@
1
- import playwrightConfig from '@digigov/cli-e2e/playwright-ct.config';
2
-
3
- export default playwrightConfig;
@@ -1,9 +0,0 @@
1
- Invoking: digigov build
2
- Running /Users/dimitristsironis/grnet/digigov-sdk/tooling/cli-build/node_modules/.bin/rimraf dist
3
- Running /Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/node_modules/.bin/tsc --emitDeclarationOnly --outDir dist --project /Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/tsconfig.production.json
4
- Created package.json in /Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/dist/package.json
5
- Copied /Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/README.md to /Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/dist/README.md
6
- Copied /Users/dimitristsironis/grnet/digigov-sdk/LICENSE to /Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/dist/LICENSE
7
- Copied /Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/CHANGELOG.md to /Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/dist/CHANGELOG.md
8
- Copied /Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/src to /Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/dist/src
9
- Skipped license for ./index.mjs
@@ -1,8 +0,0 @@
1
- Invoking: digigov build --generate-registry
2
- LOG Running: rimraf dist
3
- LOG Running: tsc --emitDeclarationOnly --outDir dist --project /Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/tsconfig.production.json
4
- LOG Running: esbuild for CJS format
5
- LOG Running: esbuild for ESM format
6
- LOG Running: esbuild for CJS format
7
- LOG Generated registry files
8
- ⏱️ "build" execution time: 3.980s
@@ -1,19 +0,0 @@
1
- Invoking: digigov lint
2
- LOG Running: eslint --no-error-on-unmatched-pattern
3
-
4
- /Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/src/FilteredResults/__stories__/Default.tsx
5
- 209:20 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
6
-
7
- /Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/src/FilteredResults/hooks.ts
8
- 39:11 warning Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
9
- 67:6 warning React Hook useEffect has a missing dependency: 'search'. Either include it or remove the dependency array react-hooks/exhaustive-deps
10
- 69:9 warning The 'search' function makes the dependencies of useMemo Hook (at line 130) change on every render. To fix this, wrap the definition of 'search' in its own useCallback() Hook react-hooks/exhaustive-deps
11
-
12
- /Users/dimitristsironis/grnet/digigov-sdk/libs/react-modules/src/FilteredResults/index.tsx
13
- 55:6 warning React Hook useEffect has missing dependencies: 'autoSubmit', 'form', and 'previousValues'. Either include them or remove the dependency array react-hooks/exhaustive-deps
14
- 160:9 warning Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
15
- 168:9 warning Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment
16
-
17
- ✖ 7 problems (0 errors, 7 warnings)
18
-
19
- ⏱️ "lint" execution time: 1.690s
@@ -1,20 +0,0 @@
1
- Invoking: publint dist
2
- @digigov/react-modules lint results:
3
- Suggestions:
4
- 1. pkg.module is used to output ESM, but pkg.exports is not defined. As NodeJS doesn't read pkg.module, the ESM output may be skipped. Consider adding pkg.exports to export the ESM output. pkg.module can usually be removed alongside too. (This will be a breaking change)
5
- Warnings:
6
- 1. /FilteredResults/DataTable/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /FilteredResults/DataTable/index.mjs
7
- 2. /FilteredResults/FilterFields/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /FilteredResults/FilterFields/index.mjs
8
- 3. /FilteredResults/FilterChips/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /FilteredResults/FilterChips/index.mjs
9
- 4. /FilteredResults/FilteredResults.stories/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /FilteredResults/FilteredResults.stories/index.mjs
10
- 5. /FilteredResults/hooks/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /FilteredResults/hooks/index.mjs
11
- 6. /ReactModules.stories/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /ReactModules.stories/index.mjs
12
- 7. /FilteredResults/__stories__/Default/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /FilteredResults/__stories__/Default/index.mjs
13
- 8. /index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /index.mjs
14
- 9. /FilteredResults/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /FilteredResults/index.mjs
15
- 10. /src/FilteredResults/FilteredResults.stories.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /src/FilteredResults/FilteredResults.stories.mjs
16
- 11. /lazy/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /lazy/index.mjs
17
- 12. /registry/index.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /registry/index.mjs
18
- 13. /src/lazy.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /src/lazy.mjs
19
- 14. /src/registry.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /src/registry.mjs
20
- 15. /src/ReactModules.stories.js is written in ESM, but is interpreted as CJS. Consider using the .mjs extension, e.g. /src/ReactModules.stories.mjs
@@ -1,17 +0,0 @@
1
- const path = require('path');
2
- const SDK_DIR = path.resolve('../..');
3
-
4
- /** @type {import('tailwindcss').Config} */
5
- module.exports = {
6
- content: [
7
- SDK_DIR + '/libs-ui/react-core/src/**/*.{js,jsx,ts,tsx}',
8
- SDK_DIR + '/libs/ui/src/**/*.{js,jsx,ts,tsx}',
9
- SDK_DIR + '/libs/react-modules/src/**/*.{js,jsx,ts,tsx}',
10
- SDK_DIR + '/libs/form/src/**/*.{js,jsx,ts,tsx}',
11
- ],
12
- plugins: [
13
- require(SDK_DIR + '/libs/css/index.js')({
14
- customTheme: SDK_DIR + '/themes/govgr/dist/index.css',
15
- }),
16
- ],
17
- };
package/tsconfig.json DELETED
@@ -1,27 +0,0 @@
1
- {
2
- "extends": "@digigov/cli-build/tsconfig.base",
3
- "compilerOptions": {
4
- "outDir": "dist",
5
- "types": ["node", "react"],
6
- "paths": {
7
- "@digigov/react-icons": ["node_modules/@digigov/react-icons/src"],
8
- "@digigov/react-icons/": ["node_modules/@digigov/react-icons/src/"],
9
- "@digigov/react-icons/*": ["node_modules/@digigov/react-icons/src/*"],
10
- "@digigov/ui": ["node_modules/@digigov/ui/src"],
11
- "@digigov/ui/": ["node_modules/@digigov/ui/src/"],
12
- "@digigov/ui/*": ["node_modules/@digigov/ui/src/*"],
13
- "@digigov/form": ["node_modules/@digigov/form/src"],
14
- "@digigov/form/": ["node_modules/@digigov/form/src/"],
15
- "@digigov/form/*": ["node_modules/@digigov/form/src/*"],
16
- "@digigov/react-core": ["node_modules/@digigov/react-core/src"],
17
- "@digigov/react-core/": ["node_modules/@digigov/react-core/src/"],
18
- "@digigov/react-core/*": ["node_modules/@digigov/react-core/src/*"],
19
- "@digigov/react-modules": ["./src"],
20
- "@digigov/react-modules/": ["./src/"],
21
- "@digigov/react-modules/*": ["./src/*"]
22
- },
23
- "baseUrl": "./"
24
- },
25
- "include": ["src"],
26
- "exclude": ["node_modules", "dist"]
27
- }
@@ -1,29 +0,0 @@
1
- {
2
- "extends": "@digigov/cli-build/tsconfig.common",
3
- "compilerOptions": {
4
- "skipLibCheck": true,
5
- "moduleResolution": "node",
6
- "outDir": "dist",
7
- "types": ["node", "react"],
8
- "baseUrl": "./",
9
- "paths": {
10
- "@digigov/react-icons": ["node_modules/@digigov/react-icons/src"],
11
- "@digigov/react-icons/": ["node_modules/@digigov/react-icons/src/"],
12
- "@digigov/react-icons/*": ["node_modules/@digigov/react-icons/src/*"],
13
- "@digigov/react-core": ["node_modules/@digigov/react-core/src"],
14
- "@digigov/react-core/": ["node_modules/@digigov/react-core/src/"],
15
- "@digigov/react-core/*": ["node_modules/@digigov/react-core/src/*"],
16
- "@digigov/ui": ["node_modules/@digigov/ui/src"],
17
- "@digigov/ui/": ["node_modules/@digigov/ui/src/"],
18
- "@digigov/ui/*": ["node_modules/@digigov/ui/src/*"],
19
- "@digigov/form": ["node_modules/@digigov/form/src"],
20
- "@digigov/form/": ["node_modules/@digigov/form/src/"],
21
- "@digigov/form/*": ["node_modules/@digigov/form/src/*"],
22
- "@digigov/react-modules": ["./src"],
23
- "@digigov/react-modules/": ["./src/"],
24
- "@digigov/react-modules/*": ["./src/*"]
25
- }
26
- },
27
- "include": ["src"],
28
- "exclude": ["node_modules", "dist"]
29
- }