@db-ux/react-core-components 3.0.0 → 3.0.2-copilot-66b0168

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 (43) hide show
  1. package/README.md +11 -0
  2. package/agent/Accordion.md +47 -0
  3. package/agent/AccordionItem.md +36 -0
  4. package/agent/Badge.md +43 -0
  5. package/agent/Brand.md +24 -0
  6. package/agent/Button.md +60 -0
  7. package/agent/Card.md +34 -0
  8. package/agent/Checkbox.md +41 -0
  9. package/agent/CustomSelect.md +81 -0
  10. package/agent/Divider.md +32 -0
  11. package/agent/Drawer.md +87 -0
  12. package/agent/Header.md +45 -0
  13. package/agent/Icon.md +31 -0
  14. package/agent/Infotext.md +36 -0
  15. package/agent/Input.md +50 -0
  16. package/agent/Link.md +63 -0
  17. package/agent/Navigation.md +31 -0
  18. package/agent/NavigationItem.md +34 -0
  19. package/agent/Notification.md +45 -0
  20. package/agent/Page.md +36 -0
  21. package/agent/Popover.md +55 -0
  22. package/agent/Radio.md +34 -0
  23. package/agent/Section.md +32 -0
  24. package/agent/Select.md +90 -0
  25. package/agent/Stack.md +46 -0
  26. package/agent/Switch.md +41 -0
  27. package/agent/TabItem.md +34 -0
  28. package/agent/Tabs.md +75 -0
  29. package/agent/Tag.md +56 -0
  30. package/agent/Textarea.md +45 -0
  31. package/agent/Tooltip.md +47 -0
  32. package/agent/_instructions.md +31 -0
  33. package/dist/components/checkbox/checkbox.js +3 -2
  34. package/dist/components/custom-select/custom-select.js +14 -6
  35. package/dist/components/custom-select/model.d.ts +1 -0
  36. package/dist/components/header/header.js +12 -17
  37. package/dist/components/input/input.js +4 -3
  38. package/dist/components/select/select.js +2 -1
  39. package/dist/components/tabs/tabs.js +21 -16
  40. package/dist/components/textarea/textarea.js +3 -2
  41. package/dist/index.d.ts +39 -0
  42. package/dist/index.js +39 -0
  43. package/package.json +17 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@db-ux/react-core-components",
3
- "version": "3.0.0",
3
+ "version": "3.0.2-copilot-66b0168",
4
4
  "description": "React components for @db-ux/core-components",
5
5
  "repository": {
6
6
  "type": "git",
@@ -11,26 +11,28 @@
11
11
  "module": "./dist/index.js",
12
12
  "types": "./dist/index.d.ts",
13
13
  "files": [
14
- "dist/"
14
+ "dist/",
15
+ "agent"
15
16
  ],
16
17
  "scripts": {
17
18
  "build": "npm-run-all tsc",
18
- "mv:dist": "cpr dist ../../build-outputs/react/dist -o",
19
- "mv:package.json": "cpr package.json ../../build-outputs/react/package.json -o",
20
- "mv:readme": "cpr README.md ../../build-outputs/react/README.md -o",
19
+ "mv:dist": "cpr dist ../../build-outputs/react/dist --overwrite",
20
+ "mv:agent": "cpr agent ../../build-outputs/react/agent -o",
21
+ "mv:package.json": "cpr package.json ../../build-outputs/react/package.json --overwrite",
22
+ "mv:readme": "cpr README.md ../../build-outputs/react/README.md --overwrite",
21
23
  "open:report": "npx playwright show-report",
22
24
  "postbuild": "npm-run-all --parallel mv:*",
23
- "regenerate:screenshots": "playwright test -c playwright.config.ts --update-snapshots",
24
- "test:components": "playwright test -c playwright.config.ts",
25
- "test:windows": "playwright test -c playwright.screen-reader.win.ts",
26
- "test:components:ui": "playwright test -c playwright.config.ts --ui",
27
- "tsc": "tsc -p . --sourceMap false"
25
+ "regenerate:screenshots": "playwright test --config playwright.config.ts --update-snapshots",
26
+ "test:components": "playwright test --config playwright.config.ts",
27
+ "test:windows": "playwright test --config playwright.screen-reader.win.ts",
28
+ "test:components:ui": "playwright test --config playwright.config.ts --ui",
29
+ "tsc": "tsc --project . --sourceMap false"
28
30
  },
29
31
  "devDependencies": {
30
32
  "@playwright/experimental-ct-react": "1.54.1",
31
- "@types/react": "^18.3.13",
32
- "react": "^18.3.1",
33
- "react-dom": "^18.3.1"
33
+ "@types/react": "18.3.13",
34
+ "react": "18.3.1",
35
+ "react-dom": "18.3.1"
34
36
  },
35
37
  "publishConfig": {
36
38
  "registry": "https://registry.npmjs.org/",
@@ -38,7 +40,7 @@
38
40
  },
39
41
  "sideEffects": false,
40
42
  "dependencies": {
41
- "@db-ux/core-components": "3.0.0",
42
- "@db-ux/core-foundations": "3.0.0"
43
+ "@db-ux/core-components": "3.0.2-copilot-66b0168",
44
+ "@db-ux/core-foundations": "3.0.2-copilot-66b0168"
43
45
  }
44
46
  }