@clickview/curator 1.0.19-dev.1 → 1.0.19-dev.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/dist/curator-app.js +3 -3
- package/dist/libs/common/src/backbone/utils/UrlHelper.d.ts +1 -0
- package/dist/libs/common/src/react/utils/ArrayHelper.d.ts +4 -0
- package/dist/libs/shared/src/components/actions/ActionButton.d.ts +1 -0
- package/dist/libs/shared/src/components/actions/Actions.d.ts +1 -0
- package/dist/libs/shared/src/components/spinner-button/SpinnerButton.d.ts +1 -0
- package/dist/libs/shared/src/enums/PresentationType.d.ts +4 -0
- package/dist/libs/shared/src/enums/SettingKind.d.ts +4 -0
- package/dist/libs/shared/src/enums/SettingName.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/EntitySetting.d.ts +9 -0
- package/dist/libs/shared/src/interfaces/models/Presentation.d.ts +3 -0
- package/dist/libs/shared/src/interfaces/models/index.d.ts +1 -0
- package/package.json +3 -3
|
@@ -24,6 +24,10 @@ export declare const ArrayHelper: {
|
|
|
24
24
|
* @param value value to be added or removed.
|
|
25
25
|
*/
|
|
26
26
|
addOrRemove<T_13 = import("react").Key>(arr: T_13[], value: T_13): T_13[];
|
|
27
|
+
/**
|
|
28
|
+
* This is the same addOrRemove function above, except it doesn't mutate the array in the argument
|
|
29
|
+
* and returns a branch new array.
|
|
30
|
+
*/
|
|
27
31
|
addOrRemoveImmutable<T_14>(arr: T_14[], value: T_14): T_14[];
|
|
28
32
|
/**
|
|
29
33
|
* Returns a (stably) sorted copy of list, ranked in ascending order
|
|
@@ -3,5 +3,6 @@ import { ButtonProps } from 'react-bootstrap';
|
|
|
3
3
|
export interface SpinnerButtonProps extends ButtonProps {
|
|
4
4
|
showSpinner: boolean;
|
|
5
5
|
onClick?: () => void;
|
|
6
|
+
className?: string;
|
|
6
7
|
}
|
|
7
8
|
export declare function SpinnerButton(props: React.PropsWithChildren<SpinnerButtonProps>): React.ReactElement;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clickview/curator",
|
|
3
|
-
"version": "1.0.19-dev.
|
|
3
|
+
"version": "1.0.19-dev.2",
|
|
4
4
|
"description": "curator",
|
|
5
5
|
"main": "dist/curator-app.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -20,14 +20,14 @@
|
|
|
20
20
|
"author": "Matt Trengrove",
|
|
21
21
|
"license": "ISC",
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@clickview/tooling": "0.0.18-dev.
|
|
23
|
+
"@clickview/tooling": "0.0.18-dev.3",
|
|
24
24
|
"@types/cropperjs": "1.3.0",
|
|
25
25
|
"@types/react-copy-to-clipboard": "4.3.0",
|
|
26
26
|
"@types/react-transition-group": "4.2.3",
|
|
27
27
|
"@types/yup": "0.26.24"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@clickview/styles": "1.0.8-dev.
|
|
30
|
+
"@clickview/styles": "1.0.8-dev.3",
|
|
31
31
|
"cropperjs": "1.5.6",
|
|
32
32
|
"marked": "0.8.0",
|
|
33
33
|
"react-copy-to-clipboard": "5.0.2",
|