@evoke-platform/ui-components 1.0.0-dev.164 → 1.0.0-dev.166

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,4 +1,4 @@
1
- import { ObjectProperty } from '../types';
1
+ import { ObjectProperty } from '../../../types';
2
2
  export declare type FormFieldProps = {
3
3
  property: ObjectProperty;
4
4
  onChange: Function;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evoke-platform/ui-components",
3
- "version": "1.0.0-dev.164",
3
+ "version": "1.0.0-dev.166",
4
4
  "description": "",
5
5
  "main": "dist/published/index.js",
6
6
  "module": "dist/published/index.js",
@@ -14,14 +14,14 @@
14
14
  ".": "./dist/published/index.js",
15
15
  "./colors": "./dist/published/colors/index.js",
16
16
  "./icons": "./dist/published/icons/index.js",
17
- "./types": "./dist/published/types/index.js"
17
+ "./types": "./types.ts"
18
18
  },
19
19
  "scripts": {
20
20
  "test": "jest",
21
- "copy-files": "copyfiles -u 1 src/styles/*.css dist/published/",
21
+ "copy-styles": "copyfiles -u 1 src/styles/*.css dist/published/",
22
22
  "build": "rm -rf ./dist && tsc",
23
23
  "build:cjs": "tsc --module CommonJS --outDir dist/cjs",
24
- "prepublish": "rm -rf ./dist && tsc && npm run copy-files",
24
+ "prepublish": "rm -rf ./dist && tsc && npm run copy-styles",
25
25
  "storybook": "start-storybook -p 6006",
26
26
  "build-storybook": "build-storybook",
27
27
  "lint": "prettier --check src/**/*.*",
package/types.ts CHANGED
@@ -1 +1,3 @@
1
- export * from './dist/published/components/custom/types';
1
+ import type * as Types from './dist/published/types.d.ts';
2
+ export { Types };
3
+ export default Types;