@caspeco/casper-ui-library 7.0.2 → 7.2.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.
Files changed (35) hide show
  1. package/dist/components/date-picker/base-date-picker.d.ts.map +1 -1
  2. package/dist/components/date-picker/base-date-picker.js +115 -110
  3. package/dist/components/date-picker/types.d.ts +1 -1
  4. package/dist/components/date-picker/types.d.ts.map +1 -1
  5. package/dist/components/table/table-cell.d.ts +2 -1
  6. package/dist/components/table/table-cell.d.ts.map +1 -1
  7. package/dist/components/table/table-cell.js +84 -63
  8. package/dist/components/table/table-content.d.ts.map +1 -1
  9. package/dist/components/table/table-context-provider.d.ts +9 -3
  10. package/dist/components/table/table-context-provider.d.ts.map +1 -1
  11. package/dist/components/table/table-context-provider.js +90 -80
  12. package/dist/components/table/table-header-dropdown.d.ts.map +1 -1
  13. package/dist/components/table/table-header-dropdown.js +8 -7
  14. package/dist/components/table/table-header-row.d.ts.map +1 -1
  15. package/dist/components/table/table-header-row.js +67 -40
  16. package/dist/components/table/table-row.d.ts.map +1 -1
  17. package/dist/components/table/table-row.js +31 -30
  18. package/dist/components/table/table.d.ts +1 -1
  19. package/dist/components/table/table.d.ts.map +1 -1
  20. package/dist/components/table/table.js +14 -8
  21. package/dist/components/table/types.d.ts +10 -0
  22. package/dist/components/table/types.d.ts.map +1 -1
  23. package/dist/node_modules/date-fns/locale/fr/_lib/formatDistance.js +70 -0
  24. package/dist/node_modules/date-fns/locale/fr/_lib/formatLong.js +33 -0
  25. package/dist/node_modules/date-fns/locale/fr/_lib/formatRelative.js +11 -0
  26. package/dist/node_modules/date-fns/locale/fr/_lib/localize.js +121 -0
  27. package/dist/node_modules/date-fns/locale/fr/_lib/match.js +110 -0
  28. package/dist/node_modules/date-fns/locale/fr.js +21 -0
  29. package/dist/node_modules/date-fns/locale/nl-BE/_lib/formatDistance.js +70 -0
  30. package/dist/node_modules/date-fns/locale/nl-BE/_lib/formatLong.js +33 -0
  31. package/dist/node_modules/date-fns/locale/nl-BE/_lib/formatRelative.js +11 -0
  32. package/dist/node_modules/date-fns/locale/nl-BE/_lib/localize.js +110 -0
  33. package/dist/node_modules/date-fns/locale/nl-BE/_lib/match.js +109 -0
  34. package/dist/node_modules/date-fns/locale/nl-BE.js +21 -0
  35. package/package.json +11 -11
@@ -0,0 +1,21 @@
1
+ import { formatDistance as o } from "./nl-BE/_lib/formatDistance.js";
2
+ import { formatLong as t } from "./nl-BE/_lib/formatLong.js";
3
+ import { formatRelative as a } from "./nl-BE/_lib/formatRelative.js";
4
+ import { localize as r } from "./nl-BE/_lib/localize.js";
5
+ import { match as m } from "./nl-BE/_lib/match.js";
6
+ const c = {
7
+ code: "nl-BE",
8
+ formatDistance: o,
9
+ formatLong: t,
10
+ formatRelative: a,
11
+ localize: r,
12
+ match: m,
13
+ options: {
14
+ weekStartsOn: 1,
15
+ firstWeekContainsDate: 4
16
+ }
17
+ };
18
+ export {
19
+ c as default,
20
+ c as nlBE
21
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caspeco/casper-ui-library",
3
- "version": "7.0.2",
3
+ "version": "7.2.0",
4
4
  "prettier": "@caspeco/prettier-config",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -28,26 +28,26 @@
28
28
  },
29
29
  "devDependencies": {
30
30
  "@arethetypeswrong/cli": "^0.18.2",
31
- "@caspeco/eslint-config": "^4.0.5",
31
+ "@caspeco/eslint-config": "^4.1.1",
32
32
  "@caspeco/prettier-config": "^1.0.6",
33
- "@eslint/js": "^9.37.0",
33
+ "@eslint/js": "^9.38.0",
34
34
  "@testing-library/jest-dom": "^6.9.1",
35
35
  "@testing-library/react": "^16.3.0",
36
36
  "@testing-library/user-event": "^14.6.1",
37
37
  "@types/jest": "^30.0.0",
38
- "@types/node": "^24.7.2",
38
+ "@types/node": "^24.9.1",
39
39
  "@types/react": "^18.3.12",
40
40
  "@types/react-dom": "^18.3.1",
41
- "@vitejs/plugin-react-swc": "^4.1.0",
42
- "eslint": "^9.37.0",
43
- "eslint-plugin-react-hooks": "^7.0.0",
44
- "eslint-plugin-react-refresh": "^0.4.23",
41
+ "@vitejs/plugin-react-swc": "^4.2.0",
42
+ "eslint": "^9.38.0",
43
+ "eslint-plugin-react-hooks": "^7.0.1",
44
+ "eslint-plugin-react-refresh": "^0.4.24",
45
45
  "globals": "^16.4.0",
46
- "jsdom": "^27.0.0",
46
+ "jsdom": "^27.0.1",
47
47
  "tsc-alias": "^1.8.16",
48
48
  "typescript": "~5.9.3",
49
- "typescript-eslint": "^8.46.0",
50
- "vite": "^7.1.9",
49
+ "typescript-eslint": "^8.46.2",
50
+ "vite": "^7.1.12",
51
51
  "vite-plugin-dts": "^4.5.4",
52
52
  "vite-tsconfig-paths": "^5.1.4",
53
53
  "vitest": "^3.2.4"