@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.
- package/README.md +11 -0
- package/agent/Accordion.md +47 -0
- package/agent/AccordionItem.md +36 -0
- package/agent/Badge.md +43 -0
- package/agent/Brand.md +24 -0
- package/agent/Button.md +60 -0
- package/agent/Card.md +34 -0
- package/agent/Checkbox.md +41 -0
- package/agent/CustomSelect.md +81 -0
- package/agent/Divider.md +32 -0
- package/agent/Drawer.md +87 -0
- package/agent/Header.md +45 -0
- package/agent/Icon.md +31 -0
- package/agent/Infotext.md +36 -0
- package/agent/Input.md +50 -0
- package/agent/Link.md +63 -0
- package/agent/Navigation.md +31 -0
- package/agent/NavigationItem.md +34 -0
- package/agent/Notification.md +45 -0
- package/agent/Page.md +36 -0
- package/agent/Popover.md +55 -0
- package/agent/Radio.md +34 -0
- package/agent/Section.md +32 -0
- package/agent/Select.md +90 -0
- package/agent/Stack.md +46 -0
- package/agent/Switch.md +41 -0
- package/agent/TabItem.md +34 -0
- package/agent/Tabs.md +75 -0
- package/agent/Tag.md +56 -0
- package/agent/Textarea.md +45 -0
- package/agent/Tooltip.md +47 -0
- package/agent/_instructions.md +31 -0
- package/dist/components/checkbox/checkbox.js +3 -2
- package/dist/components/custom-select/custom-select.js +14 -6
- package/dist/components/custom-select/model.d.ts +1 -0
- package/dist/components/header/header.js +12 -17
- package/dist/components/input/input.js +4 -3
- package/dist/components/select/select.js +2 -1
- package/dist/components/tabs/tabs.js +21 -16
- package/dist/components/textarea/textarea.js +3 -2
- package/dist/index.d.ts +39 -0
- package/dist/index.js +39 -0
- 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.
|
|
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
|
|
19
|
-
"mv:
|
|
20
|
-
"mv:
|
|
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
|
|
24
|
-
"test:components": "playwright test
|
|
25
|
-
"test:windows": "playwright test
|
|
26
|
-
"test:components:ui": "playwright test
|
|
27
|
-
"tsc": "tsc
|
|
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": "
|
|
32
|
-
"react": "
|
|
33
|
-
"react-dom": "
|
|
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.
|
|
42
|
-
"@db-ux/core-foundations": "3.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
|
}
|