@motionmetrics/mmpro-storybook-components-schema 2.0.27 → 2.0.28

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 +1,5 @@
1
- export * from './index.d.ts';
1
+ // Type-definitions-only re-export for Icon component
2
+ export {};
3
+ if (typeof window !== 'undefined') {
4
+ console.warn('@motionmetrics/mmpro-storybook-components-schema is a type-definitions package. Icon components must be imported from the full package.');
5
+ }
@@ -1 +1,5 @@
1
- export * from './index.d.ts';
1
+ // Type-definitions-only re-export for Schema component
2
+ export {};
3
+ if (typeof window !== 'undefined') {
4
+ console.warn('@motionmetrics/mmpro-storybook-components-schema is a type-definitions package. Schema components must be imported from the full package.');
5
+ }
@@ -1 +1,2 @@
1
- export * from './index.d.ts';
1
+ // Type-definitions-only re-export for tokens
2
+ export {};
package/package.json CHANGED
@@ -1,44 +1,24 @@
1
1
  {
2
2
  "name": "@motionmetrics/mmpro-storybook-components-schema",
3
- "version": "2.0.27",
4
- "description": "Lightweight Schema-only package: Icon, Schema, Tooltip components with tokens and utilities. React 17-19 compatible.",
5
- "repository": {
6
- "type": "git",
7
- "url": "git+https://bitbucket.org/motionmetricsdev/motionmetrics-mmpro-frontend-common.git"
8
- },
9
- "author": "andy.nguyen@motionmetrics.com",
10
- "license": "UNLICENSED",
11
- "main": "./lib/storybook/schema-entry.js",
12
- "module": "./lib/storybook/schema-entry.js",
3
+ "version": "2.0.28",
4
+ "description": "Schema component type definitions for @motionmetrics/mmpro-frontend-common. React 17-19 compatible.",
5
+ "type": "module",
13
6
  "types": "./lib/storybook/schema-entry.d.ts",
14
7
  "exports": {
15
8
  ".": {
16
- "types": "./lib/storybook/schema-entry.d.ts",
17
- "import": "./lib/storybook/schema-entry.js",
18
- "require": "./lib/storybook/schema-entry.js",
19
- "default": "./lib/storybook/schema-entry.js"
9
+ "types": "./lib/storybook/schema-entry.d.ts"
20
10
  },
21
11
  "./schema": {
22
- "types": "./lib/storybook/components/Schema/index.d.ts",
23
- "import": "./lib/storybook/components/Schema/index.js",
24
- "require": "./lib/storybook/components/Schema/index.js",
25
- "default": "./lib/storybook/components/Schema/index.js"
12
+ "types": "./lib/storybook/components/Schema/index.d.ts"
26
13
  },
27
14
  "./icon": {
28
- "types": "./lib/storybook/components/Icon/index.d.ts",
29
- "import": "./lib/storybook/components/Icon/index.js",
30
- "require": "./lib/storybook/components/Icon/index.js",
31
- "default": "./lib/storybook/components/Icon/index.js"
15
+ "types": "./lib/storybook/components/Icon/index.d.ts"
32
16
  },
33
17
  "./tokens": {
34
- "types": "./lib/storybook/tokensV2/index.d.ts",
35
- "import": "./lib/storybook/tokensV2/index.js",
36
- "require": "./lib/storybook/tokensV2/index.js",
37
- "default": "./lib/storybook/tokensV2/index.js"
18
+ "types": "./lib/storybook/tokensV2/index.d.ts"
38
19
  }
39
20
  },
40
21
  "files": [
41
- "lib/storybook/schema-entry.js",
42
22
  "lib/storybook/schema-entry.d.ts",
43
23
  "lib/storybook/components/Schema",
44
24
  "lib/storybook/components/Icon",
@@ -1,4 +0,0 @@
1
- // Re-export from compiled TypeScript definitions
2
- export * from './components/Schema/index.d.ts';
3
- export * from './components/Icon/index.d.ts';
4
- export * from './components/Tooltip/index.d.ts';