@ikonai/sdk-react-ui-standard 1.0.19 → 1.0.21
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/icons/index.d.ts +1 -1
- package/icons/lucide-icons.d.ts +3 -1
- package/index.d.ts +2 -2
- package/index.js +6093 -6072
- package/package.json +1 -1
- package/standard-module.d.ts +11 -3
package/icons/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { type IconProps, type IconComponent, type IconResolver, registerIconLibrary, setDefaultIconLibrary, getDefaultIconLibrary, getIcon, getRegisteredLibraries, isIconLibraryRegistered, } from './icon-registry';
|
|
2
|
-
export { registerLucideIcons } from './lucide-icons';
|
|
2
|
+
export { registerLucideIconsModule, registerLucideIcons } from './lucide-icons';
|
package/icons/lucide-icons.d.ts
CHANGED
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import { IkonUiRegistry } from '../../../sdk-react-ui/src/index.ts';
|
|
2
|
-
export declare function
|
|
2
|
+
export declare function registerLucideIconsModule(_registry: IkonUiRegistry): void;
|
|
3
|
+
/** @deprecated Use registerLucideIconsModule */
|
|
4
|
+
export declare const registerLucideIcons: typeof registerLucideIconsModule;
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { IKON_UI_RADIX_MODULE, createRadixResolvers, loadRadixModule, registerRadixModule, } from './standard-module';
|
|
1
|
+
export { IKON_UI_STANDARD_MODULE, createStandardUiResolvers, loadStandardUiModule, registerStandardUiModule, IKON_UI_RADIX_MODULE, createRadixResolvers, loadRadixModule, registerRadixModule, } from './standard-module';
|
|
2
2
|
export { createRadixButtonResolver } from './components/radix-button';
|
|
3
3
|
export { createRadixDialogResolver } from './components/radix-dialog';
|
|
4
4
|
export { createRadixHeadingResolver } from './components/radix-heading';
|
|
@@ -28,4 +28,4 @@ export { createRadixInfiniteScrollViewResolver } from './components/radix-infini
|
|
|
28
28
|
export { createNivoBarChartResolver, createNivoLineChartResolver, createNivoPieChartResolver, } from './components/nivo-charts';
|
|
29
29
|
export { generateUploadId, validateFile, type FileInfo, type FileSelectedPayload, type FileUploadStartedPayload, type FileUploadProgressPayload, type FileUploadCompletePayload, type FileUploadErrorPayload, } from './utils/file-upload';
|
|
30
30
|
export { toStringValue, toBooleanValue, toNumberValue, toActionId, combineClassNames, pickPrimitiveProps, createVoidDispatcher, createStringDispatcher, createNullableBooleanDispatcher, toStringListValue, toStyleIdList, collectSlotChildren, type SlotChildCollection, } from './standard-core';
|
|
31
|
-
export { type IconProps, type IconComponent, type IconResolver, registerIconLibrary, setDefaultIconLibrary, getDefaultIconLibrary, getIcon, getRegisteredLibraries, isIconLibraryRegistered, registerLucideIcons, } from './icons';
|
|
31
|
+
export { type IconProps, type IconComponent, type IconResolver, registerIconLibrary, setDefaultIconLibrary, getDefaultIconLibrary, getIcon, getRegisteredLibraries, isIconLibraryRegistered, registerLucideIconsModule, registerLucideIcons, } from './icons';
|