@amboss/design-system 3.32.1 → 3.33.1

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 (68) hide show
  1. package/build/cjs/components/Content/ContentFontResizer/index.d.ts +2 -0
  2. package/build/cjs/components/Content/ContentFontResizer/index.js +1 -0
  3. package/build/cjs/components/Content/ContentHeading/ContentHeading.js +1 -1
  4. package/build/cjs/components/Content/ContentLink/ContentLink.js +1 -1
  5. package/build/cjs/components/Content/ContentList/ContentList.d.ts +5 -8
  6. package/build/cjs/components/Content/ContentList/ContentList.js +1 -1
  7. package/build/cjs/components/Content/ContentTable/ContentTable.d.ts +6 -0
  8. package/build/cjs/components/Content/ContentTable/ContentTable.js +1 -0
  9. package/build/cjs/components/Content/ContentTable/ContentTableContext.d.ts +4 -0
  10. package/build/cjs/components/Content/ContentTable/ContentTableContext.js +1 -0
  11. package/build/cjs/components/Content/ContentTable/index.d.ts +2 -0
  12. package/build/cjs/components/Content/ContentTable/index.js +1 -0
  13. package/build/cjs/components/Content/ContentText/ContentText.js +1 -1
  14. package/build/cjs/components/DropdownMenu/DropdownMenu.js +1 -1
  15. package/build/cjs/components/Form/FormErrorMessages/FormErrorMessages.js +1 -1
  16. package/build/cjs/components/Form/FormField/FormField.js +1 -1
  17. package/build/cjs/components/Form/Toggle/Toggle.js +1 -1
  18. package/build/cjs/components/Sheet/Sheet.d.ts +3 -1
  19. package/build/cjs/components/Sheet/Sheet.js +1 -1
  20. package/build/cjs/components/Toggletip/BasePopover.d.ts +4 -1
  21. package/build/cjs/components/Toggletip/BasePopover.js +1 -1
  22. package/build/cjs/index.d.ts +2 -1
  23. package/build/cjs/index.js +1 -1
  24. package/build/cjs/web-tokens/_colors.json +16 -0
  25. package/build/cjs/web-tokens/visualConfig.d.ts +95 -0
  26. package/build/cjs/web-tokens/visualConfig.js +1 -1
  27. package/build/esm/components/Content/ContentFontResizer/index.d.ts +2 -0
  28. package/build/esm/components/Content/ContentFontResizer/index.js +1 -0
  29. package/build/esm/components/Content/ContentHeading/ContentHeading.js +1 -1
  30. package/build/esm/components/Content/ContentLink/ContentLink.js +1 -1
  31. package/build/esm/components/Content/ContentList/ContentList.d.ts +5 -8
  32. package/build/esm/components/Content/ContentList/ContentList.js +1 -1
  33. package/build/esm/components/Content/ContentTable/ContentTable.d.ts +6 -0
  34. package/build/esm/components/Content/ContentTable/ContentTable.js +1 -0
  35. package/build/esm/components/Content/ContentTable/ContentTableContext.d.ts +4 -0
  36. package/build/esm/components/Content/ContentTable/ContentTableContext.js +1 -0
  37. package/build/esm/components/Content/ContentTable/index.d.ts +2 -0
  38. package/build/esm/components/Content/ContentTable/index.js +1 -0
  39. package/build/esm/components/Content/ContentText/ContentText.js +1 -1
  40. package/build/esm/components/DropdownMenu/DropdownMenu.js +1 -1
  41. package/build/esm/components/Form/FormErrorMessages/FormErrorMessages.js +1 -1
  42. package/build/esm/components/Form/FormField/FormField.js +1 -1
  43. package/build/esm/components/Form/Toggle/Toggle.js +1 -1
  44. package/build/esm/components/Sheet/Sheet.d.ts +3 -1
  45. package/build/esm/components/Sheet/Sheet.js +1 -1
  46. package/build/esm/components/Toggletip/BasePopover.d.ts +4 -1
  47. package/build/esm/components/Toggletip/BasePopover.js +1 -1
  48. package/build/esm/index.d.ts +2 -1
  49. package/build/esm/index.js +1 -1
  50. package/build/esm/web-tokens/_colors.json +16 -0
  51. package/build/esm/web-tokens/visualConfig.d.ts +95 -0
  52. package/build/esm/web-tokens/visualConfig.js +1 -1
  53. package/build/scss/_dark.scss +3 -0
  54. package/build/scss/_light.scss +3 -0
  55. package/build/scss/_variables.scss +3 -0
  56. package/build/scss/subthemes/_brand.scss +6 -0
  57. package/build/scss/subthemes/_brandSubtle.scss +6 -0
  58. package/build/scss/subthemes/_dimmed.scss +7 -1
  59. package/build/scss/subthemes/_dimmedSubtle.scss +7 -1
  60. package/build/scss/subthemes/_error.scss +7 -1
  61. package/build/scss/subthemes/_info.scss +7 -1
  62. package/build/scss/subthemes/_inverted.scss +6 -0
  63. package/build/scss/subthemes/_success.scss +6 -0
  64. package/package.json +40 -27
  65. package/build/cjs/components/Content/ContentList/ContentListItem.d.ts +0 -6
  66. package/build/cjs/components/Content/ContentList/ContentListItem.js +0 -1
  67. package/build/esm/components/Content/ContentList/ContentListItem.d.ts +0 -6
  68. package/build/esm/components/Content/ContentList/ContentListItem.js +0 -1
@@ -5,6 +5,9 @@
5
5
  --color-text-primary: #5a7183;
6
6
  --color-text-secondary: #5a7183;
7
7
  --color-text-accent: #047a88;
8
+ --color-toggle-background: #7b8e9d;
9
+ --color-toggle-thumb-background-off: #ffffff;
10
+ --color-toggle-thumb-background-on: #ffffff;
8
11
  }
9
12
  }
10
13
 
@@ -15,5 +18,8 @@
15
18
  --color-text-primary: rgba(255, 255, 255, 0.65);
16
19
  --color-text-secondary: rgba(255, 255, 255, 0.65);
17
20
  --color-text-accent: #2db5c6;
21
+ --color-toggle-background: #7b8e9d;
22
+ --color-toggle-thumb-background-off: #ffffff;
23
+ --color-toggle-thumb-background-on: #ffffff;
18
24
  }
19
25
  }
@@ -53,8 +53,11 @@
53
53
  --color-border-accent: #ffffff;
54
54
  --color-divider-primary: rgba(255, 255, 255, 0.3);
55
55
  --color-divider-secondary: rgba(255, 255, 255, 0.3);
56
- --color-searchInput-background: rgba(0, 0, 0, 0.6);
56
+ --color-searchInput-background: rgba(0, 0, 0, 0.3);
57
57
  --color-colorIndicator-brand: #0aa6b8;
58
+ --color-toggle-background: rgba(0, 0, 0, 0.3);
59
+ --color-toggle-thumb-background-off: #ffffff;
60
+ --color-toggle-thumb-background-on: #40515e;
58
61
  }
59
62
  }
60
63
 
@@ -115,5 +118,8 @@
115
118
  --color-divider-secondary: rgba(255, 255, 255, 0.3);
116
119
  --color-searchInput-background: #111111;
117
120
  --color-colorIndicator-brand: #2db5c6;
121
+ --color-toggle-background: rgba(0, 0, 0, 0.3);
122
+ --color-toggle-thumb-background-off: #ffffff;
123
+ --color-toggle-thumb-background-on: #5b5f67;
118
124
  }
119
125
  }
@@ -1,13 +1,16 @@
1
1
  @mixin ds-subtheme-light-dimmedSubtle {
2
2
  & {
3
3
  --color-background-transparent-hover: rgba(96, 117, 133, 0.05);
4
- --color-background-accentSubtle: #ffffff;
4
+ --color-background-accentSubtle: #e7f6f8;
5
5
  --color-border-accent: #314554;
6
6
  --color-divider-secondary: rgba(163, 178, 189, 0.3);
7
7
  --color-text-primary: #5a7183;
8
8
  --color-text-secondary: #5a7183;
9
9
  --color-text-accent: #314554;
10
10
  --color-icon-accent: #314554;
11
+ --color-toggle-background: #7b8e9d;
12
+ --color-toggle-thumb-background-off: #ffffff;
13
+ --color-toggle-thumb-background-on: #ffffff;
11
14
  }
12
15
  }
13
16
 
@@ -21,5 +24,8 @@
21
24
  --color-text-accent: rgba(255, 255, 255, 0.8);
22
25
  --color-text-secondary: rgba(255, 255, 255, 0.65);
23
26
  --color-icon-accent: rgba(255, 255, 255, 0.8);
27
+ --color-toggle-background: #7b8e9d;
28
+ --color-toggle-thumb-background-off: #ffffff;
29
+ --color-toggle-thumb-background-on: #ffffff;
24
30
  }
25
31
  }
@@ -49,9 +49,12 @@
49
49
  --color-border-primary-hover: #ffffff;
50
50
  --color-border-primary-active: #ffffff;
51
51
  --color-border-accent: #ffffff;
52
- --color-searchInput-background: rgba(0, 0, 0, 0.6);
52
+ --color-searchInput-background: rgba(0, 0, 0, 0.3);
53
53
  --color-divider-primary: rgba(255, 255, 255, 0.3);
54
54
  --color-colorIndicator-brand: #ffffff;
55
+ --color-toggle-background: rgba(0, 0, 0, 0.3);
56
+ --color-toggle-thumb-background-off: #ffffff;
57
+ --color-toggle-thumb-background-on: #dd3637;
55
58
  }
56
59
  }
57
60
 
@@ -109,5 +112,8 @@
109
112
  --color-searchInput-background: rgba(0, 0, 0, 0.6);
110
113
  --color-divider-primary: rgba(216, 218, 222, 0.3);
111
114
  --color-colorIndicator-brand: #ffffff;
115
+ --color-toggle-background: rgba(0, 0, 0, 0.6);
116
+ --color-toggle-thumb-background-off: #ffffff;
117
+ --color-toggle-thumb-background-on: #a45355;
112
118
  }
113
119
  }
@@ -53,6 +53,9 @@
53
53
  --color-searchInput-background: rgba(0, 0, 0, 0.6);
54
54
  --color-divider-primary: rgba(255, 255, 255, 0.65);
55
55
  --color-colorIndicator-brand: #ffffff;
56
+ --color-toggle-background: #1c427d;
57
+ --color-toggle-thumb-background-off: #ffffff;
58
+ --color-toggle-thumb-background-on: #295dae;
56
59
  }
57
60
  }
58
61
 
@@ -108,8 +111,11 @@
108
111
  --color-border-primary-hover: rgba(255, 255, 255, 0.65);
109
112
  --color-border-primary-active: #ffffff;
110
113
  --color-border-accent: #ffffff;
111
- --color-searchInput-background: #282e39;
114
+ --color-searchInput-background: rgba(0, 0, 0, 0.3);
112
115
  --color-divider-primary: rgba(216, 218, 222, 0.3);
113
116
  --color-colorIndicator-brand: #ffffff;
117
+ --color-toggle-background: rgba(0, 0, 0, 0.6);
118
+ --color-toggle-thumb-background-off: #ffffff;
119
+ --color-toggle-thumb-background-on: #29364c;
114
120
  }
115
121
  }
@@ -53,6 +53,9 @@
53
53
  --color-divider-primary: rgba(163, 178, 189, 0.3);
54
54
  --color-search-input-background: #32363e;
55
55
  --color-colorIndicator-brand: #1d6670;
56
+ --color-toggle-background: #7b8e9d;
57
+ --color-toggle-thumb-background-off: #ffffff;
58
+ --color-toggle-thumb-background-on: #ffffff;
56
59
  }
57
60
  }
58
61
 
@@ -111,5 +114,8 @@
111
114
  --color-divider-primary: rgba(147, 149, 159, 0.3);
112
115
  --color-search-input-background: #eef2f5;
113
116
  --color-color-indicator-brand: #0aa6b8;
117
+ --color-toggle-background: #7b8e9d;
118
+ --color-toggle-thumb-background-off: #ffffff;
119
+ --color-toggle-thumb-background-on: #ffffff;
114
120
  }
115
121
  }
@@ -51,6 +51,9 @@
51
51
  --color-divider-primary: rgba(255, 255, 255, 0.65);
52
52
  --color-backdrop: rgba(0, 0, 0, 0.6);
53
53
  --color-color-indicator-brand: #ffffff;
54
+ --color-toggle-background: #0a5c45;
55
+ --color-toggle-thumb-background-off: #ffffff;
56
+ --color-toggle-thumb-background-on: #0b8363;
54
57
  }
55
58
  }
56
59
 
@@ -107,5 +110,8 @@
107
110
  --color-divider-primary: rgba(255, 255, 255, 0.3);
108
111
  --color-backdrop: rgba(0, 0, 0, 0.6);
109
112
  --color-color-indicator-brand: #ffffff;
113
+ --color-toggle-background: rgba(0, 0, 0, 0.3);
114
+ --color-toggle-thumb-background-off: #ffffff;
115
+ --color-toggle-thumb-background-on: #28816b;
110
116
  }
111
117
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amboss/design-system",
3
- "version": "3.32.1",
3
+ "version": "3.33.1",
4
4
  "description": "the design system for AMBOSS products",
5
5
  "author": "AMBOSS",
6
6
  "license": "ISC",
@@ -54,7 +54,7 @@
54
54
  "prettier --write"
55
55
  ],
56
56
  "{assets/icons/*,tokens/web/assets.json}": [
57
- "npm run icons:optimize"
57
+ "bun run icons:optimize"
58
58
  ]
59
59
  },
60
60
  "auto": {
@@ -73,35 +73,34 @@
73
73
  "access": "public"
74
74
  },
75
75
  "engines": {
76
- "npm": ">=8.10.0",
77
76
  "node": "24.13.1"
78
77
  },
79
78
  "scripts": {
80
79
  "prepare": "husky",
81
80
  "clean": "rimraf build build-ts build-tokens src/web-tokens",
82
81
  "build": "./scripts/build.sh",
83
- "prestart": "npm run tokens:web:ts",
84
- "start": "npm run tokens:watch & npm run storybook",
82
+ "predev": "bun run tokens:web:ts",
83
+ "dev": "bun run tokens:watch & bun run storybook",
85
84
  "static": "http-server storybook-static/ -p 6006",
86
85
  "storybook": "storybook dev -p 6006",
87
- "build-storybook": "npm run tokens:web && npm run generate-llms-txt && storybook build --stats-json",
88
- "generate-llms-txt": "[ -d storybook-static ] || storybook build --stats-json && npm run generate-llms-txt:run",
86
+ "build-storybook": "bun run tokens:web && bun run generate-llms-txt && storybook build --stats-json",
87
+ "generate-llms-txt": "[ -d storybook-static ] || storybook build --stats-json && bun run generate-llms-txt:run",
89
88
  "generate-llms-txt:run": "node --experimental-strip-types scripts/generate-llms-txt.mts",
90
89
  "test": "jest",
91
90
  "test:watch": "jest --watch",
92
91
  "test:coverage": "TZ=Europe/Berlin jest --coverage",
93
- "test:ci": "NODE_OPTIONS=\"--max-old-space-size=6144\" npm run test:coverage -- --ci --maxWorkers=2 --reporters=jest-junit",
92
+ "test:ci": "NODE_OPTIONS=\"--max-old-space-size=6144\" bun run test:coverage -- --ci --maxWorkers=2 --reporters=jest-junit",
94
93
  "test-a11y": "vitest --project=storybook",
95
94
  "tokens:web": "node style-dictionary/web/web.build.js",
96
95
  "tokens:web:ts": "node style-dictionary/web/web.build.js --ts",
97
96
  "tokens:android": "node style-dictionary/android/android.build.js",
98
97
  "tokens:ios": "node style-dictionary/ios/ios.build.js",
99
- "tokens:watch": "chokidar \"tokens/**/*.json\" \"style-dictionary/**/*.*\" -c \"npm run tokens:web\"",
98
+ "tokens:watch": "chokidar \"tokens/**/*.json\" \"style-dictionary/**/*.*\" -c \"bun run tokens:web\"",
100
99
  "tokens:prettier": "prettier --write \"build-tokens/*.(t|j)s*\"",
101
- "chromatic": "npx chromatic --project-token ${CHROMATIC_TOKEN} --exit-zero-on-changes --only-changed --externals 'tokens/**/*'",
102
- "chromatic:ci": "npx chromatic --project-token ${CHROMATIC_TOKEN} -d 'storybook-static' --zip --skip 'dependabot/**' --exit-zero-on-changes --exit-once-uploaded --only-changed --externals 'tokens/**/*'",
103
- "chromatic:master": "npx chromatic --project-token ${CHROMATIC_TOKEN} -d 'storybook-static' --zip --auto-accept-changes --only-changed --exit-once-uploaded --externals 'tokens/**/*'",
104
- "lint": "npm run lint:eslint && npm run lint:prettier",
100
+ "chromatic": "bunx chromatic --project-token ${CHROMATIC_TOKEN} --exit-zero-on-changes --only-changed --externals 'tokens/**/*'",
101
+ "chromatic:ci": "bunx chromatic --project-token ${CHROMATIC_TOKEN} -d 'storybook-static' --zip --skip 'dependabot/**' --exit-zero-on-changes --exit-once-uploaded --only-changed --externals 'tokens/**/*'",
102
+ "chromatic:master": "bunx chromatic --project-token ${CHROMATIC_TOKEN} -d 'storybook-static' --zip --auto-accept-changes --only-changed --exit-once-uploaded --externals 'tokens/**/*'",
103
+ "lint": "bun run lint:eslint && bun run lint:prettier",
105
104
  "lint:eslint": "eslint -c .eslintrc --fix src .storybook test-utils --no-error-on-unmatched-pattern scripts/**/*.{js,ts,mts}",
106
105
  "lint:prettier": "prettier --write \"{src,tokens,.storybook,test-utils}/**/*.{js,jsx,ts,tsx,mdx}\"",
107
106
  "component": "DS_ROOT=/src/components DS_COMP_FOLDER=/components node scripts/createComponent/createComponent.js",
@@ -140,23 +139,36 @@
140
139
  "react-dom": ">=16.8.0 <20.0.0"
141
140
  },
142
141
  "overrides": {
143
- "@mdx-js/react": {
144
- "react": "$react",
145
- "react-dom": "$react-dom"
146
- },
147
- "storybook": "$storybook"
142
+ "storybook": "$storybook",
143
+ "cross-spawn": ">=7.0.6",
144
+ "glob": "~10.5.0",
145
+ "@isaacs/brace-expansion": ">=5.0.1",
146
+ "qs": ">=6.14.2",
147
+ "ajv": ">=6.14.0 <7.0.0",
148
+ "micromatch": ">=4.0.8",
149
+ "brace-expansion": ">=2.0.2",
150
+ "diff": ">=5.2.2",
151
+ "lodash": ">=4.17.21",
152
+ "rollup": ">=4.59.0",
153
+ "@octokit/request": "~8.4.1",
154
+ "@octokit/request-error": "~5.1.1",
155
+ "@octokit/plugin-paginate-rest": "~9.2.2",
156
+ "@vitejs/plugin-react-swc": "~3.10.1",
157
+ "@swc/helpers": "~0.5.17",
158
+ "@swc/core": "~1.11.31",
159
+ "test-exclude": "~7.0.1"
148
160
  },
149
161
  "devDependencies": {
150
162
  "@auto-it/npm": "^11.1.6",
151
163
  "@auto-it/released": "^10.13.2",
152
164
  "@emotion/jest": "^11.11.0",
153
- "@storybook/addon-a11y": "10.2.2",
154
- "@storybook/addon-docs": "10.2.2",
155
- "@storybook/addon-links": "10.2.2",
156
- "@storybook/addon-vitest": "10.2.2",
157
- "@storybook/react-vite": "10.2.2",
165
+ "@storybook/addon-a11y": "10.2.14",
166
+ "@storybook/addon-docs": "10.2.14",
167
+ "@storybook/addon-links": "10.2.14",
168
+ "@storybook/addon-vitest": "10.2.14",
169
+ "@storybook/react-vite": "10.2.14",
158
170
  "@swc/cli": "^0.1.65",
159
- "@swc/core": "^1.11.8",
171
+ "@swc/core": "1.11.31",
160
172
  "@swc/plugin-emotion": "^9.0.0",
161
173
  "@testing-library/jest-dom": "^6.6.3",
162
174
  "@testing-library/react": "^16.3.0",
@@ -192,13 +204,14 @@
192
204
  "jest-environment-jsdom": "^29.6.2",
193
205
  "jest-junit": "^16.0.0",
194
206
  "lint-staged": "^13.2.2",
195
- "lodash": "^4.17.21",
207
+ "lodash": "4.17.23",
208
+ "markdown-to-jsx": "^9.7.6",
196
209
  "pdfkit": "^0.15.0",
197
210
  "playwright": "^1.56.1",
198
211
  "prettier": "^2.2.1",
199
212
  "react": "^18.3.1",
200
213
  "react-dom": "^18.3.1",
201
- "storybook": "10.2.2",
214
+ "storybook": "10.2.14",
202
215
  "style-dictionary": "^3.8.0",
203
216
  "svg-to-pdfkit": "^0.1.8",
204
217
  "tinycolor2": "^1.6.0",
@@ -208,5 +221,5 @@
208
221
  "vitest": "^3.2.4"
209
222
  },
210
223
  "homepage": "https://github.com/amboss-mededu/amboss-design-system#readme",
211
- "packageManager": "npm@10.4.0"
224
+ "packageManager": "bun@1.3.9"
212
225
  }
@@ -1,6 +0,0 @@
1
- import React from "react";
2
- export type ContentListItemProps = {
3
- children: React.ReactNode;
4
- "data-e2e-test-id"?: string;
5
- };
6
- export declare function ContentListItem({ children, "data-e2e-test-id": dataE2eTestId, }: ContentListItemProps): React.ReactElement;
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),Object.defineProperty(exports,"ContentListItem",{enumerable:!0,get:function(){return ContentListItem}});const _interop_require_default=require("@swc/helpers/_/_interop_require_default"),_react=/*#__PURE__*/_interop_require_default._(require("react")),StyledListItem=(0,/*#__PURE__*/_interop_require_default._(require("@emotion/styled")).default)("li",{target:"euuuhjj0",label:"StyledListItem"})(({theme})=>({marginBottom:theme.variables.size.spacing.xxs}),"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3JjL2NvbXBvbmVudHMvQ29udGVudC9Db250ZW50TGlzdC9Db250ZW50TGlzdEl0ZW0udHN4Iiwic291cmNlcyI6WyJzcmMvY29tcG9uZW50cy9Db250ZW50L0NvbnRlbnRMaXN0L0NvbnRlbnRMaXN0SXRlbS50c3giXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IFJlYWN0IGZyb20gXCJyZWFjdFwiO1xuaW1wb3J0IHN0eWxlZCBmcm9tIFwiQGVtb3Rpb24vc3R5bGVkXCI7XG5cbmV4cG9ydCB0eXBlIENvbnRlbnRMaXN0SXRlbVByb3BzID0ge1xuICBjaGlsZHJlbjogUmVhY3QuUmVhY3ROb2RlO1xuICBcImRhdGEtZTJlLXRlc3QtaWRcIj86IHN0cmluZztcbn07XG5cbmNvbnN0IFN0eWxlZExpc3RJdGVtID0gc3R5bGVkKFwibGlcIikoKHsgdGhlbWUgfSkgPT4gKHtcbiAgbWFyZ2luQm90dG9tOiB0aGVtZS52YXJpYWJsZXMuc2l6ZS5zcGFjaW5nLnh4cyxcbn0pKTtcblxuZXhwb3J0IGZ1bmN0aW9uIENvbnRlbnRMaXN0SXRlbSh7XG4gIGNoaWxkcmVuLFxuICBcImRhdGEtZTJlLXRlc3QtaWRcIjogZGF0YUUyZVRlc3RJZCxcbn06IENvbnRlbnRMaXN0SXRlbVByb3BzKTogUmVhY3QuUmVhY3RFbGVtZW50IHtcbiAgcmV0dXJuIChcbiAgICA8U3R5bGVkTGlzdEl0ZW1cbiAgICAgIGRhdGEtZTJlLXRlc3QtaWQ9e2RhdGFFMmVUZXN0SWR9XG4gICAgICBkYXRhLWRzLWlkPVwiQ29udGVudExpc3RJdGVtXCJcbiAgICA+XG4gICAgICB7Y2hpbGRyZW59XG4gICAgPC9TdHlsZWRMaXN0SXRlbT5cbiAgKTtcbn1cbiJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFRdUIifQ== */");function ContentListItem({children,"data-e2e-test-id":dataE2eTestId}){return _react.default.createElement(StyledListItem,{"data-e2e-test-id":dataE2eTestId,"data-ds-id":"ContentListItem"},children)}
@@ -1,6 +0,0 @@
1
- import React from "react";
2
- export type ContentListItemProps = {
3
- children: React.ReactNode;
4
- "data-e2e-test-id"?: string;
5
- };
6
- export declare function ContentListItem({ children, "data-e2e-test-id": dataE2eTestId, }: ContentListItemProps): React.ReactElement;
@@ -1 +0,0 @@
1
- import React from"react";import styled from"@emotion/styled";let StyledListItem=styled("li",{target:"euuuhjj0",label:"StyledListItem"})(({theme})=>({marginBottom:theme.variables.size.spacing.xxs}),"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3JjL2NvbXBvbmVudHMvQ29udGVudC9Db250ZW50TGlzdC9Db250ZW50TGlzdEl0ZW0udHN4Iiwic291cmNlcyI6WyJzcmMvY29tcG9uZW50cy9Db250ZW50L0NvbnRlbnRMaXN0L0NvbnRlbnRMaXN0SXRlbS50c3giXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IFJlYWN0IGZyb20gXCJyZWFjdFwiO1xuaW1wb3J0IHN0eWxlZCBmcm9tIFwiQGVtb3Rpb24vc3R5bGVkXCI7XG5cbmV4cG9ydCB0eXBlIENvbnRlbnRMaXN0SXRlbVByb3BzID0ge1xuICBjaGlsZHJlbjogUmVhY3QuUmVhY3ROb2RlO1xuICBcImRhdGEtZTJlLXRlc3QtaWRcIj86IHN0cmluZztcbn07XG5cbmNvbnN0IFN0eWxlZExpc3RJdGVtID0gc3R5bGVkKFwibGlcIikoKHsgdGhlbWUgfSkgPT4gKHtcbiAgbWFyZ2luQm90dG9tOiB0aGVtZS52YXJpYWJsZXMuc2l6ZS5zcGFjaW5nLnh4cyxcbn0pKTtcblxuZXhwb3J0IGZ1bmN0aW9uIENvbnRlbnRMaXN0SXRlbSh7XG4gIGNoaWxkcmVuLFxuICBcImRhdGEtZTJlLXRlc3QtaWRcIjogZGF0YUUyZVRlc3RJZCxcbn06IENvbnRlbnRMaXN0SXRlbVByb3BzKTogUmVhY3QuUmVhY3RFbGVtZW50IHtcbiAgcmV0dXJuIChcbiAgICA8U3R5bGVkTGlzdEl0ZW1cbiAgICAgIGRhdGEtZTJlLXRlc3QtaWQ9e2RhdGFFMmVUZXN0SWR9XG4gICAgICBkYXRhLWRzLWlkPVwiQ29udGVudExpc3RJdGVtXCJcbiAgICA+XG4gICAgICB7Y2hpbGRyZW59XG4gICAgPC9TdHlsZWRMaXN0SXRlbT5cbiAgKTtcbn1cbiJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFRdUIifQ== */");export function ContentListItem({children,"data-e2e-test-id":dataE2eTestId}){return React.createElement(StyledListItem,{"data-e2e-test-id":dataE2eTestId,"data-ds-id":"ContentListItem"},children)}