@prokodo/ui 1.0.3 → 1.0.4

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 (62) hide show
  1. package/dist/components/RTE/RTE.css +9 -9
  2. package/dist/components/RTE/RTE.module.css +9 -9
  3. package/dist/components/RTE/RTE.module.scss.js +12 -1
  4. package/dist/components/autocomplete/Autocomplete.css +1 -1
  5. package/dist/components/autocomplete/Autocomplete.module.css +1 -1
  6. package/dist/components/autocomplete/Autocomplete.module.scss.js +3 -0
  7. package/dist/components/avatar/Avatar.view.js +1 -1
  8. package/dist/components/button/Button.client.js +2 -2
  9. package/dist/components/button/Button.css +1 -3
  10. package/dist/components/button/Button.module.css +1 -3
  11. package/dist/components/button/Button.module.scss.js +3 -3
  12. package/dist/components/button/Button.server.js +9 -2
  13. package/dist/components/card/Card.view.js +1 -0
  14. package/dist/components/checkbox/Checkbox.css +2 -2
  15. package/dist/components/checkbox/Checkbox.module.css +2 -2
  16. package/dist/components/checkbox/Checkbox.module.scss.js +1 -0
  17. package/dist/components/checkbox-group/CheckboxGroup.css +5 -5
  18. package/dist/components/checkbox-group/CheckboxGroup.module.css +5 -5
  19. package/dist/components/checkbox-group/CheckboxGroup.module.scss.js +1 -0
  20. package/dist/components/chip/Chip.css +4 -4
  21. package/dist/components/chip/Chip.module.css +4 -4
  22. package/dist/components/datePicker/DatePicker.css +2 -2
  23. package/dist/components/datePicker/DatePicker.module.css +2 -2
  24. package/dist/components/datePicker/DatePicker.module.scss.js +1 -0
  25. package/dist/components/dialog/Dialog.view.js +1 -1
  26. package/dist/components/drawer/Drawer.js +1 -2
  27. package/dist/components/dynamic-list/DynamicList.css +1 -1
  28. package/dist/components/dynamic-list/DynamicList.module.css +1 -1
  29. package/dist/components/dynamic-list/DynamicList.module.scss.js +1 -0
  30. package/dist/components/input/Input.css +2 -2
  31. package/dist/components/input/Input.module.css +2 -2
  32. package/dist/components/input/Input.module.scss.js +1 -0
  33. package/dist/components/label/Label.css +1 -1
  34. package/dist/components/label/Label.module.css +1 -1
  35. package/dist/components/label/Label.module.scss.js +1 -0
  36. package/dist/components/loading/Loading.js +1 -2
  37. package/dist/components/post-teaser/PostTeaser.view.js +1 -0
  38. package/dist/components/post-widget/PostWidget.view.js +1 -1
  39. package/dist/components/post-widget-carousel/PostWidgetCarousel.view.js +1 -0
  40. package/dist/components/rating/Rating.css +1 -1
  41. package/dist/components/rating/Rating.module.css +1 -1
  42. package/dist/components/rating/Rating.module.scss.js +1 -0
  43. package/dist/components/rich-text/RichText.client.js +1 -1
  44. package/dist/components/select/Select.css +4 -4
  45. package/dist/components/select/Select.module.css +4 -4
  46. package/dist/components/select/Select.module.scss.js +1 -0
  47. package/dist/components/switch/Switch.css +6 -6
  48. package/dist/components/switch/Switch.module.css +6 -6
  49. package/dist/components/switch/Switch.module.scss.js +1 -0
  50. package/dist/components/tabs/Tabs.module.scss.js +1 -0
  51. package/dist/constants/project.js +1 -1
  52. package/dist/index.js +1 -1
  53. package/dist/node_modules/.pnpm/cssfilter@0.0.10/node_modules/cssfilter/lib/index.js +4 -4
  54. package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_core/smartquotes.js +1 -1
  55. package/dist/node_modules/.pnpm/markdown-it@14.1.0/node_modules/markdown-it/lib/rules_inline/entity.js +1 -1
  56. package/dist/node_modules/.pnpm/quill@2.0.3/node_modules/quill/dist/quill.js +4 -4
  57. package/dist/node_modules/.pnpm/xss@1.0.15/node_modules/xss/lib/index.js +6 -6
  58. package/dist/theme.css +1739 -272
  59. package/dist/tsconfig.build.tsbuildinfo +1 -1
  60. package/dist/types/components/RTE/RTE.d.ts +1 -1
  61. package/dist/types/components/RTE/RTE.lazy.d.ts +1 -1
  62. package/package.json +22 -5
@@ -287,12 +287,12 @@ export declare const RTE: import("react").ComponentType<{
287
287
  wrap?: string | undefined | undefined;
288
288
  multiple?: boolean | undefined | undefined;
289
289
  list?: string | undefined | undefined;
290
- step?: number | string | undefined | undefined;
291
290
  src?: string | undefined | undefined;
292
291
  width?: number | string | undefined | undefined;
293
292
  height?: number | string | undefined | undefined;
294
293
  alt?: string | undefined | undefined;
295
294
  placeholder?: string | undefined | undefined;
295
+ step?: number | string | undefined | undefined;
296
296
  formAction?: string | ((formData: FormData) => void | Promise<void>) | undefined;
297
297
  formEncType?: string | undefined | undefined;
298
298
  formMethod?: string | undefined | undefined;
@@ -287,12 +287,12 @@ declare const _default: import("react").ComponentType<{
287
287
  wrap?: string | undefined | undefined;
288
288
  multiple?: boolean | undefined | undefined;
289
289
  list?: string | undefined | undefined;
290
- step?: number | string | undefined | undefined;
291
290
  src?: string | undefined | undefined;
292
291
  width?: number | string | undefined | undefined;
293
292
  height?: number | string | undefined | undefined;
294
293
  alt?: string | undefined | undefined;
295
294
  placeholder?: string | undefined | undefined;
295
+ step?: number | string | undefined | undefined;
296
296
  formAction?: string | ((formData: FormData) => void | Promise<void>) | undefined;
297
297
  formEncType?: string | undefined | undefined;
298
298
  formMethod?: string | undefined | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prokodo/ui",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "type": "module",
5
5
  "description": "UI components for production-grade Next.js + Headless CMS (Strapi, Contentful, Headless WordPress) websites by prokodo – built for Core Web Vitals & SEO.",
6
6
  "sideEffects": [
@@ -308,8 +308,8 @@
308
308
  "test:e2e": "cypress open --component",
309
309
  "test:e2e:ci": "cypress run --component --headless",
310
310
  "fix": "pnpm format:fix && pnpm lint:fix",
311
- "lint": "eslint 'src/**/*.{ts,tsx}' --cache --cache-location .eslintcache",
312
- "lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix --cache --cache-location .eslintcache",
311
+ "lint": "eslint . --cache --cache-location .eslintcache",
312
+ "lint:fix": "eslint . --fix --cache --cache-location .eslintcache",
313
313
  "format": "prettier --check .",
314
314
  "format:fix": "prettier --write .",
315
315
  "storybook": "storybook dev -p 6006",
@@ -403,7 +403,7 @@
403
403
  "jest-css-modules": "^2.1.0",
404
404
  "jest-environment-jsdom": "^29.7.0",
405
405
  "lint-staged": "^16.3.0",
406
- "next": "^16.0.10",
406
+ "next": "^16.1.5",
407
407
  "postcss": "^8.4.39",
408
408
  "postcss-flexbugs-fixes": "^5.0.2",
409
409
  "postcss-preset-env": "^10.0.2",
@@ -419,7 +419,7 @@
419
419
  "ts-jest": "^29.2.4",
420
420
  "ts-node": "^10.9.2",
421
421
  "tsx": "^4.19.4",
422
- "vite": "^6.3.5",
422
+ "vite": "^6.4.1",
423
423
  "vite-plugin-checker": "^0.9.3",
424
424
  "vite-plugin-inspect": "^11.1.0",
425
425
  "@storybook/addon-docs": "10.2.14"
@@ -474,5 +474,22 @@
474
474
  "*.{mdx,md,json,css,html,yaml,yml}": [
475
475
  "prettier --write"
476
476
  ]
477
+ },
478
+ "pnpm": {
479
+ "overrides": {
480
+ "rollup": ">=4.59.0",
481
+ "minimatch@^3": "3.1.4",
482
+ "minimatch@^5": "5.1.8",
483
+ "minimatch@^9": "9.0.7",
484
+ "minimatch@^10": "10.2.3",
485
+ "@isaacs/brace-expansion": ">=5.0.1",
486
+ "immutable": ">=5.1.5",
487
+ "serialize-javascript": ">=7.0.3",
488
+ "svgo": ">=3.3.3",
489
+ "lodash": ">=4.17.23",
490
+ "lodash-es": ">=4.17.23",
491
+ "webpack-dev-server": ">=5.2.1",
492
+ "qs": ">=6.14.2"
493
+ }
477
494
  }
478
495
  }