@mindlogic-ai/logician-ui 2.0.0-alpha.13 → 2.0.0-alpha.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindlogic-ai/logician-ui",
3
- "version": "2.0.0-alpha.13",
3
+ "version": "2.0.0-alpha.14",
4
4
  "description": "A comprehensive React design system built on Chakra UI",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -21,7 +21,7 @@
21
21
  "build": "tsup || true",
22
22
  "build:watch": "tsup --watch",
23
23
  "prepublishOnly": "yarn build",
24
- "lint": "eslint src --ext .ts,.tsx",
24
+ "lint": "eslint src --ext .ts,.tsx && yarn run check-exports",
25
25
  "lint:fix": "eslint src --ext .ts,.tsx --fix",
26
26
  "type-check": "tsc --noEmit",
27
27
  "test": "echo 'No tests specified'",
@@ -32,7 +32,8 @@
32
32
  "changeset:publish": "changeset publish",
33
33
  "changeset:status": "changeset status",
34
34
  "optimize-icons": "node scripts/optimize-icons.js",
35
- "update-intl": "./scripts/get-lang-pack.sh"
35
+ "update-intl": "./scripts/get-lang-pack.sh",
36
+ "check-exports": "node check-component-exports.js"
36
37
  },
37
38
  "peerDependencies": {
38
39
  "@chakra-ui/react": "^2.8.0",
@@ -137,4 +138,4 @@
137
138
  "publishConfig": {
138
139
  "access": "public"
139
140
  }
140
- }
141
+ }
package/src/index.ts CHANGED
@@ -21,6 +21,7 @@ export * from './components/CrossPageToasts';
21
21
  export * from './components/DataField';
22
22
  export * from './components/DatePicker';
23
23
  export * from './components/ErrorFallback';
24
+ export * from './components/ExpandableText';
24
25
 
25
26
  // File Components
26
27
  export * from './components/FileInput';