@performant-software/semantic-components 1.0.24-beta.0 → 1.0.24-beta.2
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/build/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/EmbeddedList.js +4 -0
- package/src/components/ListTable.js +4 -0
- package/src/index.js +2 -0
- package/types/components/EmbeddedList.js.flow +4 -0
- package/types/components/ListTable.js.flow +4 -0
- package/types/index.js.flow +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@performant-software/semantic-components",
|
|
3
|
-
"version": "1.0.24-beta.
|
|
3
|
+
"version": "1.0.24-beta.2",
|
|
4
4
|
"description": "A package of shared components based on the Semantic UI Framework.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./build/index.js",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"build": "webpack --mode production && flow-copy-source -v src types"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@performant-software/shared-components": "^1.0.24-beta.
|
|
15
|
+
"@performant-software/shared-components": "^1.0.24-beta.2",
|
|
16
16
|
"@react-google-maps/api": "^2.8.1",
|
|
17
17
|
"axios": "^0.26.1",
|
|
18
18
|
"i18next": "^19.4.4",
|
package/src/index.js
CHANGED
|
@@ -109,8 +109,10 @@ export { default as BatchEdit } from './hooks/BatchEdit';
|
|
|
109
109
|
|
|
110
110
|
// Types
|
|
111
111
|
export type { EditPageProps } from './components/EditPage';
|
|
112
|
+
export type { Props as EmbeddedListProps } from './components/EmbeddedList';
|
|
112
113
|
export type { FileUploadProps } from './components/FileUploadModal';
|
|
113
114
|
export type { Props as ListProps } from './components/List';
|
|
115
|
+
export type { Props as ListTableProps } from './components/ListTable';
|
|
114
116
|
export type { BatchEditProps } from './hooks/BatchEdit';
|
|
115
117
|
|
|
116
118
|
// Constants
|
package/types/index.js.flow
CHANGED
|
@@ -109,8 +109,10 @@ export { default as BatchEdit } from './hooks/BatchEdit';
|
|
|
109
109
|
|
|
110
110
|
// Types
|
|
111
111
|
export type { EditPageProps } from './components/EditPage';
|
|
112
|
+
export type { Props as EmbeddedListProps } from './components/EmbeddedList';
|
|
112
113
|
export type { FileUploadProps } from './components/FileUploadModal';
|
|
113
114
|
export type { Props as ListProps } from './components/List';
|
|
115
|
+
export type { Props as ListTableProps } from './components/ListTable';
|
|
114
116
|
export type { BatchEditProps } from './hooks/BatchEdit';
|
|
115
117
|
|
|
116
118
|
// Constants
|