@digital-ai/dot-components 1.3.3 → 1.3.7
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/CHANGE_LOG.md +1130 -0
- package/README.md +2 -1
- package/dot-components.esm.js +951 -475
- package/dot-components.umd.js +886 -409
- package/fonts/dot.woff +0 -0
- package/fonts/selection.json +33 -23
- package/lib/components/accordion/Accordion.d.ts +2 -2
- package/lib/components/avatar/Avatar.d.ts +3 -1
- package/lib/components/badge/Badge.d.ts +1 -1
- package/lib/components/badge/Badge.styles.d.ts +5 -2
- package/lib/components/dynamic-form/DynamicForm.d.ts +1 -1
- package/lib/components/dynamic-form/DynamicForm.stories.data.d.ts +2 -0
- package/lib/components/dynamic-form/DynamicForm.stories.styles.d.ts +1 -0
- package/lib/components/dynamic-form/DynamicForm.styles.d.ts +2 -1
- package/lib/components/dynamic-form/models.d.ts +22 -8
- package/lib/components/dynamic-form/sample.d.ts +1 -3
- package/lib/components/dynamic-form/utils/formHelpers.d.ts +7 -3
- package/lib/components/dynamic-form/utils/helpers.d.ts +3 -2
- package/lib/components/file-upload/FileListItem.d.ts +10 -0
- package/lib/components/file-upload/FileUpload.d.ts +20 -0
- package/lib/components/file-upload/FileUpload.styles.d.ts +6 -0
- package/lib/components/file-upload/uploadHelpers.d.ts +13 -0
- package/lib/components/index.d.ts +4 -1
- package/lib/components/input-form-fields/InputFormFields.propTypes.d.ts +7 -1
- package/lib/components/input-form-fields/InputSelect.d.ts +1 -1
- package/lib/components/input-form-fields/InputText.d.ts +1 -1
- package/lib/components/list/List.d.ts +9 -2
- package/lib/components/progress-button/ProgressButton.d.ts +9 -0
- package/lib/components/progress-button/ProgressButton.styles.d.ts +3 -0
- package/lib/components/table/Table.stories.data.d.ts +4 -0
- package/lib/components/table/TableRow.d.ts +1 -1
- package/package.json +2 -1
|
@@ -24,5 +24,5 @@ export interface RowProps extends CommonProps {
|
|
|
24
24
|
* A wrapper component around the TableRow component from @material-ui. This component can be used
|
|
25
25
|
* for manipulating data prior to displaying the data inside the table
|
|
26
26
|
*/
|
|
27
|
-
export declare const DotTableRow: ({ columns, data, onActionMenuTrigger, onClick, rowKey, selected, }: RowProps) => JSX.Element;
|
|
27
|
+
export declare const DotTableRow: ({ columns, className, data, onActionMenuTrigger, onClick, rowKey, selected, }: RowProps) => JSX.Element;
|
|
28
28
|
export declare const EmptyDotRow: ({ cols, message, }: EmptyRowProps) => JSX.Element;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digital-ai/dot-components",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "SEE LICENSE IN <LICENSE.md>",
|
|
6
6
|
"contributors": [
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@material-ui/lab": "4.0.0-alpha.56",
|
|
30
30
|
"@material-ui/core": "4.12.3",
|
|
31
|
+
"react-dropzone": "^11.4.2",
|
|
31
32
|
"styled-components": "^5.2.1"
|
|
32
33
|
},
|
|
33
34
|
"peerDependencies": {
|