@splunk/react-icons 4.11.0 → 4.12.0
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/ArrowCounterClockwise.js +1 -1
- package/ArrowDownCircle.d.ts +2 -0
- package/ArrowDownCircle.js +151 -0
- package/ArrowLeftCircle.d.ts +2 -0
- package/ArrowLeftCircle.js +151 -0
- package/ArrowRightCircle.d.ts +2 -0
- package/ArrowRightCircle.js +151 -0
- package/ArrowSquareHalfDown.js +2 -2
- package/ArrowSquareHalfUp.js +4 -4
- package/ArrowUpCircle.d.ts +2 -0
- package/ArrowUpCircle.js +151 -0
- package/ArrowsRoundedRectangularDoubleSlashed.js +3 -3
- package/CHANGELOG.md +14 -0
- package/CaretDown.js +2 -2
- package/CaretsSmallUpDown.js +2 -2
- package/ChartSingleValueIcon.js +7 -5
- package/CheckBoxCompleted.js +7 -5
- package/CheckBoxIndeterminate.js +7 -5
- package/CircleTiny.d.ts +2 -0
- package/CircleTiny.js +147 -0
- package/ControlRewind.js +2 -2
- package/CounterCumulative.d.ts +2 -0
- package/CounterCumulative.js +155 -0
- package/DocumentDrawer.js +2 -2
- package/DriveIndexes.js +3 -3
- package/FileRipped.d.ts +2 -0
- package/FileRipped.js +151 -0
- package/Fire.js +1 -1
- package/LayersDoubleTransparent.d.ts +2 -0
- package/LayersDoubleTransparent.js +149 -0
- package/ListIndentedSquare.d.ts +2 -0
- package/ListIndentedSquare.js +155 -0
- package/ListToken.js +7 -5
- package/NodeFollowFour.js +1 -1
- package/NodeSplit.js +2 -2
- package/ParallelDotsHorizontal.js +6 -6
- package/Pin.js +7 -5
- package/PinStuck.js +7 -5
- package/Token.js +7 -5
- package/package.json +2 -2
- package/types/icons/ArrowDownCircle.d.ts +19 -0
- package/types/icons/ArrowLeftCircle.d.ts +19 -0
- package/types/icons/ArrowRightCircle.d.ts +19 -0
- package/types/icons/ArrowUpCircle.d.ts +19 -0
- package/types/icons/ChartSingleValueIcon.d.ts +7 -5
- package/types/icons/CheckBoxCompleted.d.ts +7 -5
- package/types/icons/CheckBoxIndeterminate.d.ts +7 -5
- package/types/icons/CircleTiny.d.ts +19 -0
- package/types/icons/CounterCumulative.d.ts +19 -0
- package/types/icons/DriveIndexes.d.ts +3 -3
- package/types/icons/FileRipped.d.ts +17 -0
- package/types/icons/LayersDoubleTransparent.d.ts +19 -0
- package/types/icons/ListIndentedSquare.d.ts +19 -0
- package/types/icons/ListToken.d.ts +7 -5
- package/types/icons/Pin.d.ts +7 -5
- package/types/icons/PinStuck.d.ts +7 -5
- package/types/icons/Token.d.ts +7 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splunk/react-icons",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.12.0",
|
|
4
4
|
"description": "Library of various React icons",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Splunk Inc.",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"styled-components": "^5.3.10"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@splunk/ui-utils": "^1.
|
|
36
|
+
"@splunk/ui-utils": "^1.8.0",
|
|
37
37
|
"lodash": "^4.17.14",
|
|
38
38
|
"prop-types": "^15.6.2"
|
|
39
39
|
},
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SVG from '@splunk/react-icons/SVG';
|
|
3
|
+
export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
/**
|
|
6
|
+
* Defaults to outlined, determines the variant of the icon to be rendered
|
|
7
|
+
*/
|
|
8
|
+
variant?: 'default' | 'outlined' | 'filled';
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @description Arrow direction for action button like sending, forwarding, paging, scrolling, reordering, etc
|
|
12
|
+
Controls
|
|
13
|
+
bottom, move, jump, connect
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const ArrowDownCircle: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default ArrowDownCircle;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SVG from '@splunk/react-icons/SVG';
|
|
3
|
+
export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
/**
|
|
6
|
+
* Defaults to outlined, determines the variant of the icon to be rendered
|
|
7
|
+
*/
|
|
8
|
+
variant?: 'default' | 'outlined' | 'filled';
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @description Arrow direction for action button like sending, forwarding, paging, scrolling, reordering, etc
|
|
12
|
+
Controls
|
|
13
|
+
back, previous, move, jump, connect
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const ArrowLeftCircle: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default ArrowLeftCircle;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SVG from '@splunk/react-icons/SVG';
|
|
3
|
+
export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
/**
|
|
6
|
+
* Defaults to outlined, determines the variant of the icon to be rendered
|
|
7
|
+
*/
|
|
8
|
+
variant?: 'default' | 'outlined' | 'filled';
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @description Arrow direction for action button like sending, forwarding, paging, scrolling, reordering, etc
|
|
12
|
+
Controls
|
|
13
|
+
next, send, move, jump, connect
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const ArrowRightCircle: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default ArrowRightCircle;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SVG from '@splunk/react-icons/SVG';
|
|
3
|
+
export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
/**
|
|
6
|
+
* Defaults to outlined, determines the variant of the icon to be rendered
|
|
7
|
+
*/
|
|
8
|
+
variant?: 'default' | 'outlined' | 'filled';
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @description Arrow direction for action button like sending, forwarding, paging, scrolling, reordering, etc
|
|
12
|
+
Controls
|
|
13
|
+
top, send, move, jump, connect
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const ArrowUpCircle: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default ArrowUpCircle;
|
|
@@ -8,10 +8,12 @@ export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
|
8
8
|
variant?: 'default' | 'outlined' | 'filled';
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
* @description Single value icon for DataViz
|
|
12
|
+
Data Visualization
|
|
13
|
+
SV chart, smile, face, major value, number, hash
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
16
18
|
declare const ChartSingleValueIcon: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
17
19
|
export default ChartSingleValueIcon;
|
|
@@ -8,10 +8,12 @@ export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
|
8
8
|
variant?: 'default' | 'outlined' | 'filled';
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
* @description Checkmark for check box. Used with check box frame
|
|
12
|
+
Controls
|
|
13
|
+
UI elements, square, box, boolean input
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
16
18
|
declare const CheckBoxCompleted: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
17
19
|
export default CheckBoxCompleted;
|
|
@@ -8,10 +8,12 @@ export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
|
8
8
|
variant?: 'default' | 'outlined' | 'filled';
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
* @description Indeterminate checkmark for check box. Used with check box frame
|
|
12
|
+
Controls
|
|
13
|
+
UI elements, square, box, boolean, input
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
16
18
|
declare const CheckBoxIndeterminate: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
17
19
|
export default CheckBoxIndeterminate;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SVG from '@splunk/react-icons/SVG';
|
|
3
|
+
export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
/**
|
|
6
|
+
* Defaults to outlined, determines the variant of the icon to be rendered
|
|
7
|
+
*/
|
|
8
|
+
variant?: 'default' | 'outlined' | 'filled';
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @description UI elements, circle, dot, indicator, boolean input, colored indication, status, and multi-purpose
|
|
12
|
+
Controls
|
|
13
|
+
UI elements, circle, dot, indicator, boolean input
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const CircleTiny: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default CircleTiny;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SVG from '@splunk/react-icons/SVG';
|
|
3
|
+
export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
/**
|
|
6
|
+
* Defaults to outlined, determines the variant of the icon to be rendered
|
|
7
|
+
*/
|
|
8
|
+
variant?: 'default' | 'outlined' | 'filled';
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @description Counting action that sum or integrate overall data, time or values
|
|
12
|
+
Data Visualization
|
|
13
|
+
timer, sigma, total, clock, lap
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const CounterCumulative: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default CounterCumulative;
|
|
@@ -8,9 +8,9 @@ export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
|
8
8
|
variant?: 'default' | 'outlined' | 'filled';
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
* @description Indexer
|
|
12
|
-
*
|
|
13
|
-
*
|
|
11
|
+
* @description (Deprecated) Indexer storage where index is stored
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
14
|
* @variants outlined,filled
|
|
15
15
|
*/
|
|
16
16
|
declare const DriveIndexes: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SVG from '@splunk/react-icons/SVG';
|
|
3
|
+
export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
/**
|
|
6
|
+
* Defaults to outlined, determines the variant of the icon to be rendered
|
|
7
|
+
*/
|
|
8
|
+
variant?: 'default' | 'outlined' | 'filled';
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
*
|
|
12
|
+
*
|
|
13
|
+
*
|
|
14
|
+
* @variants outlined,filled
|
|
15
|
+
*/
|
|
16
|
+
declare const FileRipped: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
17
|
+
export default FileRipped;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SVG from '@splunk/react-icons/SVG';
|
|
3
|
+
export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
/**
|
|
6
|
+
* Defaults to outlined, determines the variant of the icon to be rendered
|
|
7
|
+
*/
|
|
8
|
+
variant?: 'default' | 'outlined' | 'filled';
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @description Service instances icon for Observability APM
|
|
12
|
+
Data Flow
|
|
13
|
+
agent, management, square, duplicate, copy, clone
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const LayersDoubleTransparent: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default LayersDoubleTransparent;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import SVG from '@splunk/react-icons/SVG';
|
|
3
|
+
export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
4
|
+
children?: React.ReactNode;
|
|
5
|
+
/**
|
|
6
|
+
* Defaults to outlined, determines the variant of the icon to be rendered
|
|
7
|
+
*/
|
|
8
|
+
variant?: 'default' | 'outlined' | 'filled';
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* @description Cascaded list view represents call graph in Splunk Observability APM
|
|
12
|
+
Data Visualization
|
|
13
|
+
AppDynamics, page, file, document, trace, waterfall, hierarchy, function, class
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
18
|
+
declare const ListIndentedSquare: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
19
|
+
export default ListIndentedSquare;
|
|
@@ -8,10 +8,12 @@ export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
|
8
8
|
variant?: 'default' | 'outlined' | 'filled';
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
* @description Manage dashboard tokens in Dashboad Studio
|
|
12
|
+
Data Type
|
|
13
|
+
dynamic variable parameter, search result, eval
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
16
18
|
declare const ListToken: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
17
19
|
export default ListToken;
|
package/types/icons/Pin.d.ts
CHANGED
|
@@ -8,10 +8,12 @@ export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
|
8
8
|
variant?: 'default' | 'outlined' | 'filled';
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
* @description Paddle and ball for table tennis, represents network ping
|
|
12
|
+
Objects
|
|
13
|
+
favorite, task, todo, stick
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
16
18
|
declare const Pin: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
17
19
|
export default Pin;
|
|
@@ -8,10 +8,12 @@ export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
|
8
8
|
variant?: 'default' | 'outlined' | 'filled';
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
* @description Pinned status item, click to unpin (O11y), Move an item on the top of list ES (Enterprise Security)
|
|
12
|
+
Actions
|
|
13
|
+
favorite, task, todo, stick
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
16
18
|
declare const PinStuck: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
17
19
|
export default PinStuck;
|
package/types/icons/Token.d.ts
CHANGED
|
@@ -8,10 +8,12 @@ export interface IconBaseProps extends React.ComponentProps<typeof SVG> {
|
|
|
8
8
|
variant?: 'default' | 'outlined' | 'filled';
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
11
|
+
* @description Variable token that is used in Dashboard Studio
|
|
12
|
+
Data Type
|
|
13
|
+
dynamic variable parameter, search result, eval
|
|
14
|
+
*
|
|
15
|
+
*
|
|
16
|
+
* @variants outlined,filled
|
|
17
|
+
*/
|
|
16
18
|
declare const Token: ({ children, variant, ...otherprops }: IconBaseProps) => JSX.Element | null;
|
|
17
19
|
export default Token;
|