@evoke-platform/ui-components 1.0.0-dev.163 → 1.0.0-dev.163-test1
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/dist/published/components/custom/FormField/AddressFieldComponent/addressFieldComponent.js +1 -1
- package/dist/published/stories/MenuBar.stories.js +1 -1
- package/dist/published/types/index.d.ts +1 -0
- package/dist/published/types/index.js +1 -0
- package/package.json +10 -8
- package/colors.ts +0 -1
- package/icons.ts +0 -1
- package/types.ts +0 -1
package/dist/published/components/custom/FormField/AddressFieldComponent/addressFieldComponent.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { Popover } from '@mui/material';
|
2
2
|
import React, { useEffect, useState } from 'react';
|
3
3
|
import InputMask from 'react-input-mask';
|
4
|
-
import { CancelOutlined } from '
|
4
|
+
import { CancelOutlined } from '@mui/icons-material';
|
5
5
|
import { Button, List, ListItem, TextField, Typography } from '../../../core';
|
6
6
|
import { Box } from '../../../layout';
|
7
7
|
const AddressFieldComponent = (props) => {
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import { MenuBar as CustomMenuBar } from '../index';
|
3
3
|
import { Link } from '@mui/material';
|
4
|
-
const logo = require('../SA_logo.jpeg');
|
4
|
+
const logo = require('../assets/SA_logo.jpeg');
|
5
5
|
export default {
|
6
6
|
title: 'Data Display/MenuBar',
|
7
7
|
component: CustomMenuBar,
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from '../components/custom/types';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from '../components/custom/types';
|
package/package.json
CHANGED
@@ -1,22 +1,24 @@
|
|
1
1
|
{
|
2
2
|
"name": "@evoke-platform/ui-components",
|
3
|
-
"version": "1.0.0-dev.163",
|
3
|
+
"version": "1.0.0-dev.163-test1",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/published/index.js",
|
6
6
|
"module": "dist/published/index.js",
|
7
7
|
"files": [
|
8
|
-
"dist/published/**"
|
9
|
-
"icons.ts",
|
10
|
-
"colors.ts",
|
11
|
-
"types.ts"
|
8
|
+
"dist/published/**"
|
12
9
|
],
|
10
|
+
"exports": {
|
11
|
+
".": "./dist/published/index.js",
|
12
|
+
"./colors": "./dist/published/colors/index.js",
|
13
|
+
"./icons": "./dist/published/icons/index.js",
|
14
|
+
"./types": "./dist/published/types/index.js"
|
15
|
+
},
|
13
16
|
"scripts": {
|
14
17
|
"test": "jest",
|
15
18
|
"copy-files": "copyfiles -u 1 src/styles/*.css dist/published/",
|
16
|
-
"build": "rm -rf
|
17
|
-
"build:esm": "tsc",
|
19
|
+
"build": "rm -rf ./dist && tsc",
|
18
20
|
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
|
19
|
-
"prepublish": "rm -rf
|
21
|
+
"prepublish": "rm -rf ./dist && tsc && npm run copy-files",
|
20
22
|
"storybook": "start-storybook -p 6006",
|
21
23
|
"build-storybook": "build-storybook",
|
22
24
|
"lint": "prettier --check src/**/*.*",
|
package/colors.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from './dist/published/colors';
|
package/icons.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from './dist/published/icons';
|
package/types.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from './dist/published/components/custom/types';
|