@octaviaflow/icons 3.0.2 → 3.0.18-beta.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/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 +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
export type { BaseIconProps as OdsIconProps } from "./BaseIcon";
|
|
1
2
|
export { BaseIcon, type BaseIconProps, type IconSize, type IconTone } from "./BaseIcon";
|
|
2
|
-
export { Icon, type IconProps } from "./Icon";
|
|
3
|
-
export { iconNames, iconRegistry, type IconComponent, type IconComponentProps, type IconName } from "./registry";
|
|
4
3
|
export * from "./components";
|
|
5
|
-
export
|
|
4
|
+
export { Icon, type IconProps } from "./Icon";
|
|
5
|
+
export { type IconComponent, type IconComponentProps, type IconName, iconNames, iconRegistry, } from "./registry";
|