@rkosafo/cai.components 0.0.13 → 0.0.14

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/index.d.ts CHANGED
@@ -22,7 +22,7 @@ export * from './ui/tableLoader/index.js';
22
22
  export * from './ui/alertDialog/index.js';
23
23
  export * from './ui/accordion/index.js';
24
24
  export * from './ui/tab/index.js';
25
- export * from "./ui/icons/index.js";
25
+ export * from './ui/icons/index.js';
26
26
  export * from './forms/input/index.js';
27
27
  export * from './forms/label/index.js';
28
28
  export * from './forms/datepicker/index.js';
@@ -40,4 +40,5 @@ export * from './forms/FormRadio/index.js';
40
40
  export * from './builders/filters/index.js';
41
41
  export * from './types/index.js';
42
42
  export * from './utils/index.js';
43
+ import 'iconify-icon';
43
44
  export { YouTube, BaseEditor };
package/dist/index.js CHANGED
@@ -23,7 +23,7 @@ export * from './ui/tableLoader/index.js';
23
23
  export * from './ui/alertDialog/index.js';
24
24
  export * from './ui/accordion/index.js';
25
25
  export * from './ui/tab/index.js';
26
- export * from "./ui/icons/index.js";
26
+ export * from './ui/icons/index.js';
27
27
  export * from './forms/input/index.js';
28
28
  export * from './forms/label/index.js';
29
29
  export * from './forms/datepicker/index.js';
@@ -41,4 +41,5 @@ export * from './forms/FormRadio/index.js';
41
41
  export * from './builders/filters/index.js';
42
42
  export * from './types/index.js';
43
43
  export * from './utils/index.js';
44
+ import 'iconify-icon';
44
45
  export { YouTube, BaseEditor };
@@ -0,0 +1,5 @@
1
+ declare const IconifyIcon: import("svelte").Component<{
2
+ icon: any;
3
+ } & Record<string, any>, {}, "">;
4
+ type IconifyIcon = ReturnType<typeof IconifyIcon>;
5
+ export default IconifyIcon;
@@ -1 +1 @@
1
- export { default as Icons } from './Icons.svelte';
1
+ export { default as IconifyIcon } from './IconifyIcon.svelte';
@@ -1 +1 @@
1
- export { default as Icons } from './Icons.svelte';
1
+ export { default as IconifyIcon } from './IconifyIcon.svelte';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rkosafo/cai.components",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "files": [
5
5
  "dist",
6
6
  "!dist/**/*.test.*",
@@ -1,5 +0,0 @@
1
- declare const Icons: import("svelte").Component<{
2
- icon: any;
3
- } & Record<string, any>, {}, "">;
4
- type Icons = ReturnType<typeof Icons>;
5
- export default Icons;