@digigov/nextjs 1.0.0-7c9716da → 1.0.0-871b6be5
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/esm/index.js
CHANGED
|
@@ -35,6 +35,8 @@ export declare type BaseProps<C extends React.ElementType> = PolymorphicComponen
|
|
|
35
35
|
printHidden?: boolean;
|
|
36
36
|
/** printVisible is optional. When block, the component is displayed as block. When inline, the component is displayed as inline.*/
|
|
37
37
|
printVisible?: 'block' | 'inline';
|
|
38
|
+
/** Components will be hidden at all screen sizes. */
|
|
39
|
+
hidden?: boolean;
|
|
38
40
|
/** Components will be hidden from 'xs' screen size and up. */
|
|
39
41
|
xsUpHidden?: boolean;
|
|
40
42
|
/** Components will be hidden from 'sm' screen size and up. */
|
|
@@ -2,9 +2,11 @@ import React from 'react';
|
|
|
2
2
|
import { BaseProps } from '@digigov/react-core/Base';
|
|
3
3
|
export interface LinkBaseProps extends BaseProps<'a'> {
|
|
4
4
|
/**
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
* underline is optional. The default value is 'true'.
|
|
6
|
+
* Make it 'false' only if the context tells the user that the text is a link, even without the underline.
|
|
7
|
+
* @value true
|
|
8
|
+
* @value false
|
|
9
|
+
*/
|
|
8
10
|
underline?: boolean;
|
|
9
11
|
}
|
|
10
12
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/nextjs",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-871b6be5",
|
|
4
4
|
"description": "next specific utilities for @digigov apps",
|
|
5
5
|
"author": "GRNET Developers <devs@lists.grnet.gr>",
|
|
6
6
|
"license": "BSD-2-Clause",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"main": "dist/index.js"
|
|
11
11
|
},
|
|
12
12
|
"peerDependencies": {
|
|
13
|
-
"@digigov/ui": "1.0.0-
|
|
13
|
+
"@digigov/ui": "1.0.0-871b6be5",
|
|
14
14
|
"@material-ui/core": "4.11.3",
|
|
15
15
|
"@material-ui/icons": "4.11.2",
|
|
16
16
|
"clsx": "1.1.1",
|