@digigov/react-icons 1.0.0-002c630d → 1.0.0-6b93ebf2
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/ArrowIcon/config.d.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export interface ArrowType {
|
|
3
|
+
/**
|
|
4
|
+
* @value 'left'
|
|
5
|
+
* @value 'right'
|
|
6
|
+
* @value 'up'
|
|
7
|
+
* @value 'down'
|
|
8
|
+
* @default 'right'
|
|
9
|
+
*/
|
|
3
10
|
direction?: 'left' | 'right' | 'up' | 'down';
|
|
4
11
|
}
|
|
5
12
|
export declare const arrow: React.FC<ArrowType>;
|
package/CaretIcon/config.d.ts
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export interface CaretType {
|
|
3
|
+
/**
|
|
4
|
+
* @value 'left'
|
|
5
|
+
* @value 'right'
|
|
6
|
+
* @value 'up'
|
|
7
|
+
* @value 'down'
|
|
8
|
+
* @default 'left'
|
|
9
|
+
*/
|
|
3
10
|
direction?: 'left' | 'right' | 'up' | 'down';
|
|
4
11
|
}
|
|
5
12
|
export declare const caret: React.FC<CaretType>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digigov/react-icons",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-6b93ebf2",
|
|
4
4
|
"description": "@digigov react icons",
|
|
5
5
|
"author": "GRNET Developers <devs@lists.grnet.gr>",
|
|
6
6
|
"license": "BSD-2-Clause",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"directory": "dist"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
14
|
-
"@digigov/css": "1.0.0-
|
|
15
|
-
"@digigov/react-core": "1.0.0-
|
|
14
|
+
"@digigov/css": "1.0.0-6b93ebf2",
|
|
15
|
+
"@digigov/react-core": "1.0.0-6b93ebf2",
|
|
16
16
|
"clsx": "1.1.1",
|
|
17
17
|
"react": "^16.8.0 || ^17.0.0",
|
|
18
18
|
"react-dom": "^16.8.0 || ^17.0.0"
|
package/src/ArrowIcon/config.tsx
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
3
|
export interface ArrowType {
|
|
4
|
-
|
|
4
|
+
/**
|
|
5
|
+
* @value 'left'
|
|
6
|
+
* @value 'right'
|
|
7
|
+
* @value 'up'
|
|
8
|
+
* @value 'down'
|
|
9
|
+
* @default 'right'
|
|
10
|
+
*/
|
|
11
|
+
direction?: 'left' | 'right' | 'up' | 'down'
|
|
5
12
|
}
|
|
6
13
|
|
|
7
14
|
export const arrow: React.FC<ArrowType> = ({ direction = 'right' }) => {
|
package/src/CaretIcon/config.tsx
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
|
|
3
3
|
export interface CaretType {
|
|
4
|
-
|
|
4
|
+
/**
|
|
5
|
+
* @value 'left'
|
|
6
|
+
* @value 'right'
|
|
7
|
+
* @value 'up'
|
|
8
|
+
* @value 'down'
|
|
9
|
+
* @default 'left'
|
|
10
|
+
*/
|
|
11
|
+
direction?: 'left' | 'right' | 'up' | 'down'
|
|
5
12
|
}
|
|
6
13
|
|
|
7
14
|
export const caret: React.FC<CaretType> = ({ direction = 'left' }) => {
|