@invopop/popui 0.0.107 → 0.0.108
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SvelteComponent } from "svelte";
|
|
2
|
-
import type { Badge, FeedItemStatus, TableField
|
|
2
|
+
import type { Badge, FeedItemStatus, TableField } from './types';
|
|
3
3
|
declare const __propDef: {
|
|
4
4
|
props: {
|
|
5
5
|
field: TableField;
|
|
@@ -7,7 +7,7 @@ declare const __propDef: {
|
|
|
7
7
|
isMobile?: boolean | undefined;
|
|
8
8
|
badge?: Badge | null | undefined;
|
|
9
9
|
status?: FeedItemStatus | null | undefined;
|
|
10
|
-
icons?:
|
|
10
|
+
icons?: any[] | null | undefined;
|
|
11
11
|
};
|
|
12
12
|
events: {
|
|
13
13
|
copied: CustomEvent<any>;
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
import { SvelteComponent } from "svelte";
|
|
2
|
-
import { type IconSource } from '@steeze-ui/svelte-icon';
|
|
3
2
|
import type { StatusType } from './types.js';
|
|
4
3
|
declare const __propDef: {
|
|
5
4
|
props: {
|
|
6
5
|
[x: string]: any;
|
|
7
|
-
icon?:
|
|
6
|
+
icon?: any;
|
|
8
7
|
name?: string | undefined;
|
|
9
8
|
disabled?: boolean | undefined;
|
|
10
9
|
date?: string | undefined;
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { SvelteComponent } from "svelte";
|
|
2
|
-
import { type IconSource } from '@steeze-ui/svelte-icon';
|
|
3
2
|
declare const __propDef: {
|
|
4
3
|
props: {
|
|
5
4
|
[x: string]: any;
|
|
6
5
|
value?: string | undefined;
|
|
7
6
|
shortcut?: string | undefined;
|
|
8
7
|
placeholder?: string | undefined;
|
|
9
|
-
icon?:
|
|
8
|
+
icon?: any;
|
|
10
9
|
focusOnLoad?: boolean | undefined;
|
|
11
10
|
focus?: (() => void) | undefined;
|
|
12
11
|
toggle?: (() => void) | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@invopop/popui",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.108",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"dev": "vite dev",
|
|
7
7
|
"build": "vite build && npm run package",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"@floating-ui/core": "^1.5.1",
|
|
87
87
|
"@invopop/ui-icons": "0.0.70",
|
|
88
88
|
"@steeze-ui/heroicons": "^2.2.3",
|
|
89
|
-
"@steeze-ui/svelte-icon": "
|
|
89
|
+
"@steeze-ui/svelte-icon": "1.3.2",
|
|
90
90
|
"@twind/core": "^1.1.3",
|
|
91
91
|
"@twind/preset-autoprefix": "^1.0.7",
|
|
92
92
|
"@twind/preset-tailwind": "^1.1.4",
|