@discourser/design-system 0.25.2 → 0.25.3

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.
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "version": "1.0.0",
3
3
  "packageName": "@discourser/design-system",
4
- "generatedAt": "2026-03-31T15:43:15.946Z",
5
- "gitHash": "c57712c8",
4
+ "generatedAt": "2026-03-31T23:00:26.390Z",
5
+ "gitHash": "73dd9324",
6
6
  "figmaFiles": {
7
7
  "GaHmFfmvO4loUzuZS4TgEz": {
8
8
  "fileKey": "GaHmFfmvO4loUzuZS4TgEz"
@@ -337,7 +337,8 @@
337
337
  "primary": "import { Header } from '@discourser/design-system/Header'",
338
338
  "namedExports": [
339
339
  "Header"
340
- ]
340
+ ],
341
+ "subpath": "@discourser/design-system/Header"
341
342
  },
342
343
  "props": [],
343
344
  "example": "<Header size={size}>Heading Text</Header>",
@@ -1220,7 +1221,8 @@
1220
1221
  "primary": "import { StudioControls } from '@discourser/design-system/StudioControls'",
1221
1222
  "namedExports": [
1222
1223
  "StudioControls"
1223
- ]
1224
+ ],
1225
+ "subpath": "@discourser/design-system/StudioControls"
1224
1226
  },
1225
1227
  "props": [
1226
1228
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@discourser/design-system",
3
- "version": "0.25.2",
3
+ "version": "0.25.3",
4
4
  "description": "Aesthetic-agnostic design system with Panda CSS and Ark UI",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -102,9 +102,21 @@
102
102
  "types": "./src/components/Tooltip.tsx",
103
103
  "import": "./src/components/Tooltip.tsx"
104
104
  },
105
- "./Heading": {
106
- "types": "./src/components/Heading.tsx",
107
- "import": "./src/components/Heading.tsx"
105
+ "./Header": {
106
+ "types": "./src/components/Header.tsx",
107
+ "import": "./src/components/Header.tsx"
108
+ },
109
+ "./Dialog": {
110
+ "types": "./src/components/Dialog.tsx",
111
+ "import": "./src/components/Dialog.tsx"
112
+ },
113
+ "./Divider": {
114
+ "types": "./src/components/divider/index.ts",
115
+ "import": "./src/components/divider/index.ts"
116
+ },
117
+ "./StudioControls": {
118
+ "types": "./src/components/StudioControls/index.ts",
119
+ "import": "./src/components/StudioControls/index.ts"
108
120
  },
109
121
  "./Textarea": {
110
122
  "types": "./src/components/Textarea.tsx",
@@ -186,7 +198,7 @@
186
198
  ],
187
199
  "scripts": {
188
200
  "dev": "pnpm build:css && pnpm docs:generate && storybook dev -p 6006",
189
- "build": "pnpm build:panda && pnpm typecheck && pnpm build:lib && pnpm build:types && pnpm codex:generate",
201
+ "build": "pnpm build:panda && pnpm typecheck && pnpm build:lib && pnpm build:types && pnpm exports:validate && pnpm codex:generate",
190
202
  "build:panda": "panda codegen",
191
203
  "build:css": "panda cssgen --outfile dist/styles.css",
192
204
  "build:lib": "tsup",
@@ -220,7 +232,8 @@
220
232
  "changeset": "changeset",
221
233
  "version": "changeset version",
222
234
  "ci:version": "pnpm exec changeset version",
223
- "release": "pnpm build && changeset publish --access public"
235
+ "release": "pnpm build && changeset publish --access public",
236
+ "exports:validate": "tsx scripts/validate-exports.ts"
224
237
  },
225
238
  "peerDependencies": {
226
239
  "@pandacss/dev": "^1.8.0",