@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.
Files changed (57) hide show
  1. package/ArrowCounterClockwise.js +1 -1
  2. package/ArrowDownCircle.d.ts +2 -0
  3. package/ArrowDownCircle.js +151 -0
  4. package/ArrowLeftCircle.d.ts +2 -0
  5. package/ArrowLeftCircle.js +151 -0
  6. package/ArrowRightCircle.d.ts +2 -0
  7. package/ArrowRightCircle.js +151 -0
  8. package/ArrowSquareHalfDown.js +2 -2
  9. package/ArrowSquareHalfUp.js +4 -4
  10. package/ArrowUpCircle.d.ts +2 -0
  11. package/ArrowUpCircle.js +151 -0
  12. package/ArrowsRoundedRectangularDoubleSlashed.js +3 -3
  13. package/CHANGELOG.md +14 -0
  14. package/CaretDown.js +2 -2
  15. package/CaretsSmallUpDown.js +2 -2
  16. package/ChartSingleValueIcon.js +7 -5
  17. package/CheckBoxCompleted.js +7 -5
  18. package/CheckBoxIndeterminate.js +7 -5
  19. package/CircleTiny.d.ts +2 -0
  20. package/CircleTiny.js +147 -0
  21. package/ControlRewind.js +2 -2
  22. package/CounterCumulative.d.ts +2 -0
  23. package/CounterCumulative.js +155 -0
  24. package/DocumentDrawer.js +2 -2
  25. package/DriveIndexes.js +3 -3
  26. package/FileRipped.d.ts +2 -0
  27. package/FileRipped.js +151 -0
  28. package/Fire.js +1 -1
  29. package/LayersDoubleTransparent.d.ts +2 -0
  30. package/LayersDoubleTransparent.js +149 -0
  31. package/ListIndentedSquare.d.ts +2 -0
  32. package/ListIndentedSquare.js +155 -0
  33. package/ListToken.js +7 -5
  34. package/NodeFollowFour.js +1 -1
  35. package/NodeSplit.js +2 -2
  36. package/ParallelDotsHorizontal.js +6 -6
  37. package/Pin.js +7 -5
  38. package/PinStuck.js +7 -5
  39. package/Token.js +7 -5
  40. package/package.json +2 -2
  41. package/types/icons/ArrowDownCircle.d.ts +19 -0
  42. package/types/icons/ArrowLeftCircle.d.ts +19 -0
  43. package/types/icons/ArrowRightCircle.d.ts +19 -0
  44. package/types/icons/ArrowUpCircle.d.ts +19 -0
  45. package/types/icons/ChartSingleValueIcon.d.ts +7 -5
  46. package/types/icons/CheckBoxCompleted.d.ts +7 -5
  47. package/types/icons/CheckBoxIndeterminate.d.ts +7 -5
  48. package/types/icons/CircleTiny.d.ts +19 -0
  49. package/types/icons/CounterCumulative.d.ts +19 -0
  50. package/types/icons/DriveIndexes.d.ts +3 -3
  51. package/types/icons/FileRipped.d.ts +17 -0
  52. package/types/icons/LayersDoubleTransparent.d.ts +19 -0
  53. package/types/icons/ListIndentedSquare.d.ts +19 -0
  54. package/types/icons/ListToken.d.ts +7 -5
  55. package/types/icons/Pin.d.ts +7 -5
  56. package/types/icons/PinStuck.d.ts +7 -5
  57. 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.11.0",
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.7.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
- * @description Single value icon for DataViz
12
- * @category Data Visualization
13
- *
14
- * @variants outlined,filled
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
- * @description Check Box Completed *not UI, only for specific use
12
- * @category Controls
13
- * @keywords UI elements, square, box
14
- * @variants outlined,filled
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
- * @description Check Box Indeterminate *not UI, only for specific use
12
- * @category Controls
13
- * @keywords UI elements, square, box
14
- * @variants outlined,filled
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 represents the storage whare index is stored
12
- * @category Data Flow
13
- * @keywords data ingestion, agent
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
- * @variants outlined,filled
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;
@@ -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
- * @variants outlined,filled
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
- * @variants outlined,filled
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;
@@ -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
- * @variants outlined,filled
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;