@octaviaflow/icons 3.0.3 → 3.0.18
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/dist/BaseIcon.d.ts +13 -1
- package/dist/Icon.d.ts +1 -1
- package/dist/components/CalendarAddAltIcon.d.ts +2 -0
- package/dist/components/CalendarAddIcon.d.ts +2 -0
- package/dist/components/DataQualityDefinitionIcon.d.ts +2 -0
- package/dist/components/RuleDataQualityIcon.d.ts +2 -0
- package/dist/components/WorkflowAutomationIcon.d.ts +2 -0
- package/dist/components/index.d.ts +5 -0
- package/dist/index.cjs +4246 -4208
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4242 -4209
- package/dist/index.js.map +1 -1
- package/dist/manifest.json +268 -228
- package/package.json +1 -1
package/dist/BaseIcon.d.ts
CHANGED
|
@@ -4,8 +4,20 @@ export type IconTone = "primary" | "accent" | "muted" | "inverse" | "success" |
|
|
|
4
4
|
export interface BaseIconProps extends Omit<SVGAttributes<SVGSVGElement>, "color"> {
|
|
5
5
|
/** Width + height in px. Token name or number. Default "lg" (24px). */
|
|
6
6
|
size?: IconSize;
|
|
7
|
-
/** Stroke/fill color. Default "primary". */
|
|
7
|
+
/** Stroke/fill color from the design-system tone enum. Default "primary". */
|
|
8
8
|
tone?: IconTone;
|
|
9
|
+
/**
|
|
10
|
+
* Arbitrary CSS color (hex, rgb, hsl, named color, CSS variable). When set,
|
|
11
|
+
* overrides `tone`. Use the `tone` enum first — it stays in lock-step with
|
|
12
|
+
* the theme tokens — and only reach for `color` when you need a one-off
|
|
13
|
+
* value the design system doesn't expose.
|
|
14
|
+
*
|
|
15
|
+
* Examples:
|
|
16
|
+
* <AddIcon color="#FF6B6B" />
|
|
17
|
+
* <AddIcon color="rgb(124, 58, 237)" />
|
|
18
|
+
* <AddIcon color="var(--my-brand)" />
|
|
19
|
+
*/
|
|
20
|
+
color?: string;
|
|
9
21
|
/** Accessible label. When omitted, the icon is presentational. */
|
|
10
22
|
title?: string;
|
|
11
23
|
viewBox: string;
|
package/dist/Icon.d.ts
CHANGED
|
@@ -259,6 +259,8 @@ export { CalculationAltIcon } from "./CalculationAltIcon";
|
|
|
259
259
|
export { CalculatorIcon } from "./CalculatorIcon";
|
|
260
260
|
export { CalculatorCheckIcon } from "./CalculatorCheckIcon";
|
|
261
261
|
export { CalendarIcon } from "./CalendarIcon";
|
|
262
|
+
export { CalendarAddIcon } from "./CalendarAddIcon";
|
|
263
|
+
export { CalendarAddAltIcon } from "./CalendarAddAltIcon";
|
|
262
264
|
export { CalendarHeatMapIcon } from "./CalendarHeatMapIcon";
|
|
263
265
|
export { CalendarSettingsIcon } from "./CalendarSettingsIcon";
|
|
264
266
|
export { CalendarToolsIcon } from "./CalendarToolsIcon";
|
|
@@ -601,6 +603,7 @@ export { DataErrorIcon } from "./DataErrorIcon";
|
|
|
601
603
|
export { DataFormatIcon } from "./DataFormatIcon";
|
|
602
604
|
export { DataGlossaryIcon } from "./DataGlossaryIcon";
|
|
603
605
|
export { DataPlayerIcon } from "./DataPlayerIcon";
|
|
606
|
+
export { DataQualityDefinitionIcon } from "./DataQualityDefinitionIcon";
|
|
604
607
|
export { DataReferenceIcon } from "./DataReferenceIcon";
|
|
605
608
|
export { DataRefineryIcon } from "./DataRefineryIcon";
|
|
606
609
|
export { DataRefineryReferenceIcon } from "./DataRefineryReferenceIcon";
|
|
@@ -1715,6 +1718,7 @@ export { RowInsertIcon } from "./RowInsertIcon";
|
|
|
1715
1718
|
export { RssIcon } from "./RssIcon";
|
|
1716
1719
|
export { RuleIcon } from "./RuleIcon";
|
|
1717
1720
|
export { RuleCancelledIcon } from "./RuleCancelledIcon";
|
|
1721
|
+
export { RuleDataQualityIcon } from "./RuleDataQualityIcon";
|
|
1718
1722
|
export { RuleDraftIcon } from "./RuleDraftIcon";
|
|
1719
1723
|
export { RuleFilledIcon } from "./RuleFilledIcon";
|
|
1720
1724
|
export { RuleLockedIcon } from "./RuleLockedIcon";
|
|
@@ -2328,6 +2332,7 @@ export { WintryMixIcon } from "./WintryMixIcon";
|
|
|
2328
2332
|
export { WirelessCheckoutIcon } from "./WirelessCheckoutIcon";
|
|
2329
2333
|
export { WmvIcon } from "./WmvIcon";
|
|
2330
2334
|
export { WordCloudIcon } from "./WordCloudIcon";
|
|
2335
|
+
export { WorkflowAutomationIcon } from "./WorkflowAutomationIcon";
|
|
2331
2336
|
export { WorkspaceIcon } from "./WorkspaceIcon";
|
|
2332
2337
|
export { WorkspaceImportIcon } from "./WorkspaceImportIcon";
|
|
2333
2338
|
export { WorshipIcon } from "./WorshipIcon";
|