@central-icons-react/round-filled-radius-0-stroke-1 1.1.300 → 1.1.302
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/IconChart8/index.d.ts +4 -0
- package/IconChart8/index.js +3 -0
- package/IconChart8/index.js.map +11 -0
- package/IconChart8/index.mjs +3 -0
- package/IconChart8/index.mjs.map +11 -0
- package/IconChevronGrabberHorizontalToward/index.d.ts +4 -0
- package/IconChevronGrabberHorizontalToward/index.js +3 -0
- package/IconChevronGrabberHorizontalToward/index.js.map +11 -0
- package/IconChevronGrabberHorizontalToward/index.mjs +3 -0
- package/IconChevronGrabberHorizontalToward/index.mjs.map +11 -0
- package/IconChevronGrabberVerticalToward/index.d.ts +4 -0
- package/IconChevronGrabberVerticalToward/index.js +3 -0
- package/IconChevronGrabberVerticalToward/index.js.map +11 -0
- package/IconChevronGrabberVerticalToward/index.mjs +3 -0
- package/IconChevronGrabberVerticalToward/index.mjs.map +11 -0
- package/IconShieldSafeSearch/index.d.ts +4 -0
- package/IconShieldSafeSearch/index.js +3 -0
- package/IconShieldSafeSearch/index.js.map +11 -0
- package/IconShieldSafeSearch/index.mjs +3 -0
- package/IconShieldSafeSearch/index.mjs.map +11 -0
- package/README.md +4 -0
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +4 -0
- package/index.js +12 -0
- package/index.mjs +4 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react/SKILL.md +5 -1
package/index.d.ts
CHANGED
|
@@ -445,6 +445,7 @@ export { IconChart4, default as IconChart4Default } from "./IconChart4";
|
|
|
445
445
|
export { IconChart5, default as IconChart5Default } from "./IconChart5";
|
|
446
446
|
export { IconChart6, default as IconChart6Default } from "./IconChart6";
|
|
447
447
|
export { IconChart7, default as IconChart7Default } from "./IconChart7";
|
|
448
|
+
export { IconChart8, default as IconChart8Default } from "./IconChart8";
|
|
448
449
|
export { IconChartCompare, default as IconChartCompareDefault } from "./IconChartCompare";
|
|
449
450
|
export { IconChartCompareHorizontal, default as IconChartCompareHorizontalDefault } from "./IconChartCompareHorizontal";
|
|
450
451
|
export { IconChartWaterfall, default as IconChartWaterfallDefault } from "./IconChartWaterfall";
|
|
@@ -470,7 +471,9 @@ export { IconChevronDoubleRight, default as IconChevronDoubleRightDefault } from
|
|
|
470
471
|
export { IconChevronDownMedium, default as IconChevronDownMediumDefault } from "./IconChevronDownMedium";
|
|
471
472
|
export { IconChevronDownSmall, default as IconChevronDownSmallDefault } from "./IconChevronDownSmall";
|
|
472
473
|
export { IconChevronGrabberHorizontal, default as IconChevronGrabberHorizontalDefault } from "./IconChevronGrabberHorizontal";
|
|
474
|
+
export { IconChevronGrabberHorizontalToward, default as IconChevronGrabberHorizontalTowardDefault } from "./IconChevronGrabberHorizontalToward";
|
|
473
475
|
export { IconChevronGrabberVertical, default as IconChevronGrabberVerticalDefault } from "./IconChevronGrabberVertical";
|
|
476
|
+
export { IconChevronGrabberVerticalToward, default as IconChevronGrabberVerticalTowardDefault } from "./IconChevronGrabberVerticalToward";
|
|
474
477
|
export { IconChevronLargeDown, default as IconChevronLargeDownDefault } from "./IconChevronLargeDown";
|
|
475
478
|
export { IconChevronLargeLeft, default as IconChevronLargeLeftDefault } from "./IconChevronLargeLeft";
|
|
476
479
|
export { IconChevronLargeRight, default as IconChevronLargeRightDefault } from "./IconChevronLargeRight";
|
|
@@ -1652,6 +1655,7 @@ export { IconShieldCheck3, default as IconShieldCheck3Default } from "./IconShie
|
|
|
1652
1655
|
export { IconShieldCode, default as IconShieldCodeDefault } from "./IconShieldCode";
|
|
1653
1656
|
export { IconShieldCrossed, default as IconShieldCrossedDefault } from "./IconShieldCrossed";
|
|
1654
1657
|
export { IconShieldKeyhole, default as IconShieldKeyholeDefault } from "./IconShieldKeyhole";
|
|
1658
|
+
export { IconShieldSafeSearch, default as IconShieldSafeSearchDefault } from "./IconShieldSafeSearch";
|
|
1655
1659
|
export { IconShieldSearch, default as IconShieldSearchDefault } from "./IconShieldSearch";
|
|
1656
1660
|
export { IconShift, default as IconShiftDefault } from "./IconShift";
|
|
1657
1661
|
export { IconShimmer, default as IconShimmerDefault } from "./IconShimmer";
|
package/index.js
CHANGED
|
@@ -1341,6 +1341,9 @@ exports.IconChart6Default = _IconChart6.default;
|
|
|
1341
1341
|
var _IconChart7 = require("./IconChart7/index.js");
|
|
1342
1342
|
exports.IconChart7 = _IconChart7.IconChart7;
|
|
1343
1343
|
exports.IconChart7Default = _IconChart7.default;
|
|
1344
|
+
var _IconChart8 = require("./IconChart8/index.js");
|
|
1345
|
+
exports.IconChart8 = _IconChart8.IconChart8;
|
|
1346
|
+
exports.IconChart8Default = _IconChart8.default;
|
|
1344
1347
|
var _IconChartCompare = require("./IconChartCompare/index.js");
|
|
1345
1348
|
exports.IconChartCompare = _IconChartCompare.IconChartCompare;
|
|
1346
1349
|
exports.IconChartCompareDefault = _IconChartCompare.default;
|
|
@@ -1416,9 +1419,15 @@ exports.IconChevronDownSmallDefault = _IconChevronDownSmall.default;
|
|
|
1416
1419
|
var _IconChevronGrabberHorizontal = require("./IconChevronGrabberHorizontal/index.js");
|
|
1417
1420
|
exports.IconChevronGrabberHorizontal = _IconChevronGrabberHorizontal.IconChevronGrabberHorizontal;
|
|
1418
1421
|
exports.IconChevronGrabberHorizontalDefault = _IconChevronGrabberHorizontal.default;
|
|
1422
|
+
var _IconChevronGrabberHorizontalToward = require("./IconChevronGrabberHorizontalToward/index.js");
|
|
1423
|
+
exports.IconChevronGrabberHorizontalToward = _IconChevronGrabberHorizontalToward.IconChevronGrabberHorizontalToward;
|
|
1424
|
+
exports.IconChevronGrabberHorizontalTowardDefault = _IconChevronGrabberHorizontalToward.default;
|
|
1419
1425
|
var _IconChevronGrabberVertical = require("./IconChevronGrabberVertical/index.js");
|
|
1420
1426
|
exports.IconChevronGrabberVertical = _IconChevronGrabberVertical.IconChevronGrabberVertical;
|
|
1421
1427
|
exports.IconChevronGrabberVerticalDefault = _IconChevronGrabberVertical.default;
|
|
1428
|
+
var _IconChevronGrabberVerticalToward = require("./IconChevronGrabberVerticalToward/index.js");
|
|
1429
|
+
exports.IconChevronGrabberVerticalToward = _IconChevronGrabberVerticalToward.IconChevronGrabberVerticalToward;
|
|
1430
|
+
exports.IconChevronGrabberVerticalTowardDefault = _IconChevronGrabberVerticalToward.default;
|
|
1422
1431
|
var _IconChevronLargeDown = require("./IconChevronLargeDown/index.js");
|
|
1423
1432
|
exports.IconChevronLargeDown = _IconChevronLargeDown.IconChevronLargeDown;
|
|
1424
1433
|
exports.IconChevronLargeDownDefault = _IconChevronLargeDown.default;
|
|
@@ -4962,6 +4971,9 @@ exports.IconShieldCrossedDefault = _IconShieldCrossed.default;
|
|
|
4962
4971
|
var _IconShieldKeyhole = require("./IconShieldKeyhole/index.js");
|
|
4963
4972
|
exports.IconShieldKeyhole = _IconShieldKeyhole.IconShieldKeyhole;
|
|
4964
4973
|
exports.IconShieldKeyholeDefault = _IconShieldKeyhole.default;
|
|
4974
|
+
var _IconShieldSafeSearch = require("./IconShieldSafeSearch/index.js");
|
|
4975
|
+
exports.IconShieldSafeSearch = _IconShieldSafeSearch.IconShieldSafeSearch;
|
|
4976
|
+
exports.IconShieldSafeSearchDefault = _IconShieldSafeSearch.default;
|
|
4965
4977
|
var _IconShieldSearch = require("./IconShieldSearch/index.js");
|
|
4966
4978
|
exports.IconShieldSearch = _IconShieldSearch.IconShieldSearch;
|
|
4967
4979
|
exports.IconShieldSearchDefault = _IconShieldSearch.default;
|
package/index.mjs
CHANGED
|
@@ -445,6 +445,7 @@ export { IconChart4, default as IconChart4Default } from "./IconChart4/index.mjs
|
|
|
445
445
|
export { IconChart5, default as IconChart5Default } from "./IconChart5/index.mjs";
|
|
446
446
|
export { IconChart6, default as IconChart6Default } from "./IconChart6/index.mjs";
|
|
447
447
|
export { IconChart7, default as IconChart7Default } from "./IconChart7/index.mjs";
|
|
448
|
+
export { IconChart8, default as IconChart8Default } from "./IconChart8/index.mjs";
|
|
448
449
|
export { IconChartCompare, default as IconChartCompareDefault } from "./IconChartCompare/index.mjs";
|
|
449
450
|
export { IconChartCompareHorizontal, default as IconChartCompareHorizontalDefault } from "./IconChartCompareHorizontal/index.mjs";
|
|
450
451
|
export { IconChartWaterfall, default as IconChartWaterfallDefault } from "./IconChartWaterfall/index.mjs";
|
|
@@ -470,7 +471,9 @@ export { IconChevronDoubleRight, default as IconChevronDoubleRightDefault } from
|
|
|
470
471
|
export { IconChevronDownMedium, default as IconChevronDownMediumDefault } from "./IconChevronDownMedium/index.mjs";
|
|
471
472
|
export { IconChevronDownSmall, default as IconChevronDownSmallDefault } from "./IconChevronDownSmall/index.mjs";
|
|
472
473
|
export { IconChevronGrabberHorizontal, default as IconChevronGrabberHorizontalDefault } from "./IconChevronGrabberHorizontal/index.mjs";
|
|
474
|
+
export { IconChevronGrabberHorizontalToward, default as IconChevronGrabberHorizontalTowardDefault } from "./IconChevronGrabberHorizontalToward/index.mjs";
|
|
473
475
|
export { IconChevronGrabberVertical, default as IconChevronGrabberVerticalDefault } from "./IconChevronGrabberVertical/index.mjs";
|
|
476
|
+
export { IconChevronGrabberVerticalToward, default as IconChevronGrabberVerticalTowardDefault } from "./IconChevronGrabberVerticalToward/index.mjs";
|
|
474
477
|
export { IconChevronLargeDown, default as IconChevronLargeDownDefault } from "./IconChevronLargeDown/index.mjs";
|
|
475
478
|
export { IconChevronLargeLeft, default as IconChevronLargeLeftDefault } from "./IconChevronLargeLeft/index.mjs";
|
|
476
479
|
export { IconChevronLargeRight, default as IconChevronLargeRightDefault } from "./IconChevronLargeRight/index.mjs";
|
|
@@ -1652,6 +1655,7 @@ export { IconShieldCheck3, default as IconShieldCheck3Default } from "./IconShie
|
|
|
1652
1655
|
export { IconShieldCode, default as IconShieldCodeDefault } from "./IconShieldCode/index.mjs";
|
|
1653
1656
|
export { IconShieldCrossed, default as IconShieldCrossedDefault } from "./IconShieldCrossed/index.mjs";
|
|
1654
1657
|
export { IconShieldKeyhole, default as IconShieldKeyholeDefault } from "./IconShieldKeyhole/index.mjs";
|
|
1658
|
+
export { IconShieldSafeSearch, default as IconShieldSafeSearchDefault } from "./IconShieldSafeSearch/index.mjs";
|
|
1655
1659
|
export { IconShieldSearch, default as IconShieldSearchDefault } from "./IconShieldSearch/index.mjs";
|
|
1656
1660
|
export { IconShift, default as IconShiftDefault } from "./IconShift/index.mjs";
|
|
1657
1661
|
export { IconShimmer, default as IconShimmerDefault } from "./IconShimmer/index.mjs";
|
package/license-check.js
CHANGED
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@ description: Use when inserting icons in React code that imports from @central-i
|
|
|
5
5
|
|
|
6
6
|
# Central Icons — React
|
|
7
7
|
|
|
8
|
-
This skill helps you find icons from the Central Icons React library (`@central-icons-react/*`, version 1.1.
|
|
8
|
+
This skill helps you find icons from the Central Icons React library (`@central-icons-react/*`, version 1.1.302) and insert them with the correct import path for whichever variant the consumer has installed. The set of 2087 icons is consistent across variants; only the stylistic rendering (round vs square, filled vs outlined, corner radius, stroke width) differs.
|
|
9
9
|
|
|
10
10
|
## Before you pick an import path
|
|
11
11
|
|
|
@@ -362,6 +362,8 @@ The catalog below is the authoritative list of icons available in this library.
|
|
|
362
362
|
- **IconChevronTriangleUpMedium** — chevron-triangle-up-medium, dropdown, caret
|
|
363
363
|
- **IconCompassPointer** — compass-pointer, arrow, route
|
|
364
364
|
- **IconArrowRotatePoint** — arrow-rotate-point, rotate-camera
|
|
365
|
+
- **IconChevronGrabberVerticalToward** — chevron-grabber-vertical-toward
|
|
366
|
+
- **IconChevronGrabberHorizontalToward** — chevron-grabber-horizontal-toward
|
|
365
367
|
|
|
366
368
|
### Augmented Reality
|
|
367
369
|
- **IconVisionPro** — vision-pro, goggles
|
|
@@ -1576,6 +1578,7 @@ The catalog below is the authoritative list of icons available in this library.
|
|
|
1576
1578
|
- **IconLock2** — lock-2, private
|
|
1577
1579
|
- **IconUnlocked2** — unlocked-2, unlock, private
|
|
1578
1580
|
- **IconKeyhole2** — keyhole-2, lock, unlock
|
|
1581
|
+
- **IconShieldSafeSearch** — shield-safe-search, child-protection
|
|
1579
1582
|
|
|
1580
1583
|
### Shopping & Payment
|
|
1581
1584
|
- **IconCreditCard1** — credit-card-1, card, payment
|
|
@@ -1937,6 +1940,7 @@ The catalog below is the authoritative list of icons available in this library.
|
|
|
1937
1940
|
- **IconStackedBarChart100Axis** — stacked-bar-chart-100-axis
|
|
1938
1941
|
- **IconStackedBarChartHorizontal100Axis** — stacked-bar-chart-horizontal-100-axis
|
|
1939
1942
|
- **IconTrending6** — trending-6, trends, downward
|
|
1943
|
+
- **IconChart8** — chart-8, statistics, flipchart, presentation, graph
|
|
1940
1944
|
|
|
1941
1945
|
### Things
|
|
1942
1946
|
- **IconToiletPaper** — toilet-paper, wipe
|