intelliwaketssveltekitv25 1.0.29 → 1.0.31
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/About.svelte.d.ts +13 -6
- package/dist/AboutBullets.svelte.d.ts +13 -7
- package/dist/AccordianSelect.svelte.d.ts +11 -40
- package/dist/ActivityOverlay.svelte.d.ts +13 -10
- package/dist/ArrayTable.svelte.d.ts +11 -31
- package/dist/BlockNav.svelte.d.ts +13 -7
- package/dist/ButtonGroup.svelte.d.ts +11 -33
- package/dist/Calendar.svelte.d.ts +13 -20
- package/dist/CheckBox.svelte.d.ts +13 -21
- package/dist/DateRangePicker.svelte.d.ts +13 -16
- package/dist/DisplayColor.svelte.d.ts +13 -13
- package/dist/DisplayFraction.svelte.d.ts +13 -8
- package/dist/DisplayHTML.svelte.d.ts +13 -12
- package/dist/DropDown.svelte +2 -1
- package/dist/DropDown.svelte.d.ts +13 -27
- package/dist/DropDownControl.svelte.d.ts +13 -37
- package/dist/EllipsesTruncate.svelte.d.ts +13 -13
- package/dist/Icon.svelte.d.ts +13 -29
- package/dist/InputNumber.svelte.d.ts +14 -4
- package/dist/InputNumberScroll.svelte.d.ts +13 -30
- package/dist/ListGroupItems.svelte.d.ts +13 -26
- package/dist/MasterDetailLayout.svelte.d.ts +13 -33
- package/dist/MessageBoxes.svelte.d.ts +12 -16
- package/dist/Modal.svelte.d.ts +13 -40
- package/dist/ModalFormAction.svelte.d.ts +13 -31
- package/dist/ModalPromptControl.svelte.d.ts +14 -3
- package/dist/MultiSelect.svelte.d.ts +11 -65
- package/dist/NumberFormat.svelte.d.ts +14 -9
- package/dist/Paginator.svelte +27 -13
- package/dist/Paginator.svelte.d.ts +14 -12
- package/dist/Search.svelte.d.ts +13 -17
- package/dist/SelectTimezone.svelte.d.ts +13 -12
- package/dist/SlideDown.svelte.d.ts +13 -17
- package/dist/SliderDual.svelte.d.ts +11 -26
- package/dist/SpinControl.svelte.d.ts +11 -35
- package/dist/Switch.svelte.d.ts +13 -20
- package/dist/SwitchDateNull.svelte.d.ts +13 -18
- package/dist/TabHeader.svelte.d.ts +11 -28
- package/dist/TabHref.svelte.d.ts +13 -17
- package/dist/TextArea.svelte.d.ts +13 -10
- package/dist/TextSpan.svelte.d.ts +13 -8
- package/dist/VirtualList.svelte.d.ts +11 -30
- package/dist/VirtualTable.svelte.d.ts +11 -35
- package/package.json +4 -7
package/dist/About.svelte.d.ts
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
4
8
|
};
|
|
5
|
-
|
|
6
|
-
type
|
|
7
|
-
export
|
|
9
|
+
export type AboutProps = typeof __propDef.props;
|
|
10
|
+
export type AboutEvents = typeof __propDef.events;
|
|
11
|
+
export type AboutSlots = typeof __propDef.slots;
|
|
12
|
+
export default class About extends SvelteComponentTyped<AboutProps, AboutEvents, AboutSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
5
8
|
};
|
|
6
|
-
|
|
7
|
-
type
|
|
8
|
-
export
|
|
9
|
+
export type AboutBulletsProps = typeof __propDef.props;
|
|
10
|
+
export type AboutBulletsEvents = typeof __propDef.events;
|
|
11
|
+
export type AboutBulletsSlots = typeof __propDef.slots;
|
|
12
|
+
export default class AboutBullets extends SvelteComponentTyped<AboutBulletsProps, AboutBulletsEvents, AboutBulletsSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -1,43 +1,14 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { type ActionArray } from './useActions';
|
|
3
|
-
declare function $$render<T>(): {
|
|
4
|
-
props: {
|
|
5
|
-
items: ISpinItem<T>[];
|
|
6
|
-
class?: string;
|
|
7
|
-
centered?: boolean;
|
|
8
|
-
height?: string;
|
|
9
|
-
maxHeight?: string;
|
|
10
|
-
minHeight?: string;
|
|
11
|
-
value?: T | null | undefined;
|
|
12
|
-
disabled?: boolean;
|
|
13
|
-
readonly?: boolean;
|
|
14
|
-
name?: string | undefined;
|
|
15
|
-
form?: string | undefined;
|
|
16
|
-
hidden?: boolean;
|
|
17
|
-
use?: ActionArray;
|
|
18
|
-
required?: boolean;
|
|
19
|
-
show?: any;
|
|
20
|
-
id?: any;
|
|
21
|
-
};
|
|
22
|
-
exports: {};
|
|
23
|
-
bindings: "value" | "show";
|
|
24
|
-
slots: {};
|
|
25
|
-
events: {};
|
|
26
|
-
};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
27
2
|
declare class __sveltets_Render<T> {
|
|
28
|
-
props():
|
|
29
|
-
events():
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
3
|
+
props(): Record<string, never>;
|
|
4
|
+
events(): {} & {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots(): {};
|
|
33
8
|
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
<T>(internal: unknown, props: ReturnType<__sveltets_Render<T>['props']> & {}): ReturnType<__sveltets_Render<T>['exports']>;
|
|
39
|
-
z_$$bindings?: ReturnType<__sveltets_Render<any>['bindings']>;
|
|
9
|
+
export type AccordianSelectProps<T> = ReturnType<__sveltets_Render<T>['props']>;
|
|
10
|
+
export type AccordianSelectEvents<T> = ReturnType<__sveltets_Render<T>['events']>;
|
|
11
|
+
export type AccordianSelectSlots<T> = ReturnType<__sveltets_Render<T>['slots']>;
|
|
12
|
+
export default class AccordianSelect<T> extends SvelteComponentTyped<AccordianSelectProps<T>, AccordianSelectEvents<T>, AccordianSelectSlots<T>> {
|
|
40
13
|
}
|
|
41
|
-
|
|
42
|
-
type AccordianSelect<T> = InstanceType<typeof AccordianSelect<T>>;
|
|
43
|
-
export default AccordianSelect;
|
|
14
|
+
export {};
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
8
8
|
};
|
|
9
|
-
|
|
10
|
-
type
|
|
11
|
-
export
|
|
9
|
+
export type ActivityOverlayProps = typeof __propDef.props;
|
|
10
|
+
export type ActivityOverlayEvents = typeof __propDef.events;
|
|
11
|
+
export type ActivityOverlaySlots = typeof __propDef.slots;
|
|
12
|
+
export default class ActivityOverlay extends SvelteComponentTyped<ActivityOverlayProps, ActivityOverlayEvents, ActivityOverlaySlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -1,34 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare function $$render<T extends Record<string, any>>(): {
|
|
3
|
-
props: {
|
|
4
|
-
arrayData: T[] | null;
|
|
5
|
-
arrayStructure: IArrayStructure<T>;
|
|
6
|
-
bordered?: boolean;
|
|
7
|
-
scrollable?: boolean;
|
|
8
|
-
class?: string;
|
|
9
|
-
minWidth?: string;
|
|
10
|
-
hideCosts?: boolean;
|
|
11
|
-
tableRef?: HTMLTableElement | undefined;
|
|
12
|
-
};
|
|
13
|
-
exports: {};
|
|
14
|
-
bindings: "tableRef";
|
|
15
|
-
slots: {};
|
|
16
|
-
events: {};
|
|
17
|
-
};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
18
2
|
declare class __sveltets_Render<T extends Record<string, any>> {
|
|
19
|
-
props():
|
|
20
|
-
events():
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
3
|
+
props(): Record<string, never>;
|
|
4
|
+
events(): {} & {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots(): {};
|
|
24
8
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
<T extends Record<string, any>>(internal: unknown, props: ReturnType<__sveltets_Render<T>['props']> & {}): ReturnType<__sveltets_Render<T>['exports']>;
|
|
30
|
-
z_$$bindings?: ReturnType<__sveltets_Render<any>['bindings']>;
|
|
9
|
+
export type ArrayTableProps<T extends Record<string, any>> = ReturnType<__sveltets_Render<T>['props']>;
|
|
10
|
+
export type ArrayTableEvents<T extends Record<string, any>> = ReturnType<__sveltets_Render<T>['events']>;
|
|
11
|
+
export type ArrayTableSlots<T extends Record<string, any>> = ReturnType<__sveltets_Render<T>['slots']>;
|
|
12
|
+
export default class ArrayTable<T extends Record<string, any>> extends SvelteComponentTyped<ArrayTableProps<T>, ArrayTableEvents<T>, ArrayTableSlots<T>> {
|
|
31
13
|
}
|
|
32
|
-
|
|
33
|
-
type ArrayTable<T extends Record<string, any>> = InstanceType<typeof ArrayTable<T>>;
|
|
34
|
-
export default ArrayTable;
|
|
14
|
+
export {};
|
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
5
8
|
};
|
|
6
|
-
|
|
7
|
-
type
|
|
8
|
-
export
|
|
9
|
+
export type BlockNavProps = typeof __propDef.props;
|
|
10
|
+
export type BlockNavEvents = typeof __propDef.events;
|
|
11
|
+
export type BlockNavSlots = typeof __propDef.slots;
|
|
12
|
+
export default class BlockNav extends SvelteComponentTyped<BlockNavProps, BlockNavEvents, BlockNavSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -1,36 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
props: {
|
|
3
|
-
value?: T | null;
|
|
4
|
-
options?: (string | {
|
|
5
|
-
key: T;
|
|
6
|
-
name: string;
|
|
7
|
-
disabled?: boolean;
|
|
8
|
-
hidden?: boolean;
|
|
9
|
-
})[];
|
|
10
|
-
class?: string;
|
|
11
|
-
name?: string;
|
|
12
|
-
readonly?: boolean;
|
|
13
|
-
dataColor?: TDefaultColorPalate;
|
|
14
|
-
};
|
|
15
|
-
exports: {};
|
|
16
|
-
bindings: "value";
|
|
17
|
-
slots: {};
|
|
18
|
-
events: {};
|
|
19
|
-
};
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
20
2
|
declare class __sveltets_Render<T> {
|
|
21
|
-
props():
|
|
22
|
-
events():
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
3
|
+
props(): Record<string, never>;
|
|
4
|
+
events(): {} & {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots(): {};
|
|
26
8
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
<T>(internal: unknown, props: ReturnType<__sveltets_Render<T>['props']> & {}): ReturnType<__sveltets_Render<T>['exports']>;
|
|
32
|
-
z_$$bindings?: ReturnType<__sveltets_Render<any>['bindings']>;
|
|
9
|
+
export type ButtonGroupProps<T> = ReturnType<__sveltets_Render<T>['props']>;
|
|
10
|
+
export type ButtonGroupEvents<T> = ReturnType<__sveltets_Render<T>['events']>;
|
|
11
|
+
export type ButtonGroupSlots<T> = ReturnType<__sveltets_Render<T>['slots']>;
|
|
12
|
+
export default class ButtonGroup<T> extends SvelteComponentTyped<ButtonGroupProps<T>, ButtonGroupEvents<T>, ButtonGroupSlots<T>> {
|
|
33
13
|
}
|
|
34
|
-
|
|
35
|
-
type ButtonGroup<T> = InstanceType<typeof ButtonGroup<T>>;
|
|
36
|
-
export default ButtonGroup;
|
|
14
|
+
export {};
|
|
@@ -1,21 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
selectRange?: 'None' | 'Single' | 'Range' | 'Month' | 'Week';
|
|
9
|
-
minYear?: number;
|
|
10
|
-
maxYear?: number;
|
|
11
|
-
maxWidth?: string;
|
|
12
|
-
fyMonthsAdjust?: number | null;
|
|
13
|
-
class?: string;
|
|
14
|
-
dayBlock?: Snippet<[IWeek['days'][number], IWeek]>;
|
|
15
|
-
navigator?: Snippet;
|
|
16
|
-
hideNavigation?: boolean;
|
|
17
|
-
disabled?: boolean;
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
18
8
|
};
|
|
19
|
-
|
|
20
|
-
type
|
|
21
|
-
export
|
|
9
|
+
export type CalendarProps = typeof __propDef.props;
|
|
10
|
+
export type CalendarEvents = typeof __propDef.events;
|
|
11
|
+
export type CalendarSlots = typeof __propDef.slots;
|
|
12
|
+
export default class Calendar extends SvelteComponentTyped<CalendarProps, CalendarEvents, CalendarSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -1,22 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
/** Changes appearance to radial for single option selections */
|
|
9
|
-
radial?: boolean;
|
|
10
|
-
/** Text label for checkbox */
|
|
11
|
-
label?: string;
|
|
12
|
-
/** name for form actions */
|
|
13
|
-
name?: string;
|
|
14
|
-
/** Allows for firing a input event */
|
|
15
|
-
fireInputEvent?: boolean;
|
|
16
|
-
stopPropagation?: boolean;
|
|
17
|
-
preventDefault?: boolean;
|
|
18
|
-
onchange?: (e: Event, checked: boolean) => void;
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
19
8
|
};
|
|
20
|
-
|
|
21
|
-
type
|
|
22
|
-
export
|
|
9
|
+
export type CheckBoxProps = typeof __propDef.props;
|
|
10
|
+
export type CheckBoxEvents = typeof __propDef.events;
|
|
11
|
+
export type CheckBoxSlots = typeof __propDef.slots;
|
|
12
|
+
export default class CheckBox extends SvelteComponentTyped<CheckBoxProps, CheckBoxEvents, CheckBoxSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -1,17 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
setCookieName?: string;
|
|
9
|
-
invalidate?: string | string[] | 'All' | 'app:All' | null;
|
|
10
|
-
allowCustom?: boolean;
|
|
11
|
-
onchange?: (dateRange: TDateRangeString) => void;
|
|
12
|
-
show?: boolean;
|
|
13
|
-
fyMonthsAdjust?: number | null;
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
14
8
|
};
|
|
15
|
-
|
|
16
|
-
type
|
|
17
|
-
export
|
|
9
|
+
export type DateRangePickerProps = typeof __propDef.props;
|
|
10
|
+
export type DateRangePickerEvents = typeof __propDef.events;
|
|
11
|
+
export type DateRangePickerSlots = typeof __propDef.slots;
|
|
12
|
+
export default class DateRangePicker extends SvelteComponentTyped<DateRangePickerProps, DateRangePickerEvents, DateRangePickerSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
allowInvisible?: boolean;
|
|
9
|
-
showNoColorSymbol?: boolean;
|
|
10
|
-
forceNoColorSymbol?: boolean;
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
11
8
|
};
|
|
12
|
-
|
|
13
|
-
type
|
|
14
|
-
export
|
|
9
|
+
export type DisplayColorProps = typeof __propDef.props;
|
|
10
|
+
export type DisplayColorEvents = typeof __propDef.events;
|
|
11
|
+
export type DisplayColorSlots = typeof __propDef.slots;
|
|
12
|
+
export default class DisplayColor extends SvelteComponentTyped<DisplayColorProps, DisplayColorEvents, DisplayColorSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -1,9 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
6
8
|
};
|
|
7
|
-
|
|
8
|
-
type
|
|
9
|
-
export
|
|
9
|
+
export type DisplayFractionProps = typeof __propDef.props;
|
|
10
|
+
export type DisplayFractionEvents = typeof __propDef.events;
|
|
11
|
+
export type DisplayFractionSlots = typeof __propDef.slots;
|
|
12
|
+
export default class DisplayFraction extends SvelteComponentTyped<DisplayFractionProps, DisplayFractionEvents, DisplayFractionSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
*/
|
|
9
|
-
noLinkReplace?: boolean;
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
10
8
|
};
|
|
11
|
-
|
|
12
|
-
type
|
|
13
|
-
export
|
|
9
|
+
export type DisplayHtmlProps = typeof __propDef.props;
|
|
10
|
+
export type DisplayHtmlEvents = typeof __propDef.events;
|
|
11
|
+
export type DisplayHtmlSlots = typeof __propDef.slots;
|
|
12
|
+
export default class DisplayHtml extends SvelteComponentTyped<DisplayHtmlProps, DisplayHtmlEvents, DisplayHtmlSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
package/dist/DropDown.svelte
CHANGED
|
@@ -282,8 +282,9 @@
|
|
|
282
282
|
tabindex={0}>
|
|
283
283
|
{#if button}
|
|
284
284
|
{@render button()}
|
|
285
|
+
{:else if buttonTitle}
|
|
286
|
+
{buttonTitle}
|
|
285
287
|
{/if}
|
|
286
|
-
{buttonTitle ?? ''}
|
|
287
288
|
{#if !noCaret}
|
|
288
289
|
<svg
|
|
289
290
|
class='-mr-1 h-5 w-5 mt-0.5 absolute right-1 top-1/2 -translate-y-1/2 transition-transform duration-300'
|
|
@@ -1,28 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
buttonTitle?: string | null;
|
|
9
|
-
buttonClass?: string;
|
|
10
|
-
controlClass?: string;
|
|
11
|
-
toggleClass?: string;
|
|
12
|
-
inputControl?: boolean;
|
|
13
|
-
fullBlock?: boolean;
|
|
14
|
-
bodyClass?: string;
|
|
15
|
-
sameSize?: boolean;
|
|
16
|
-
zIndex?: number;
|
|
17
|
-
disabled?: boolean;
|
|
18
|
-
hidden?: boolean;
|
|
19
|
-
hideEmptyDDActions?: boolean;
|
|
20
|
-
button?: Snippet;
|
|
21
|
-
verbose?: boolean;
|
|
22
|
-
actions?: Snippet;
|
|
23
|
-
dataColor?: TDefaultColorPalate;
|
|
24
|
-
clientWidth?: number;
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
25
8
|
};
|
|
26
|
-
|
|
27
|
-
type
|
|
28
|
-
export
|
|
9
|
+
export type DropDownProps = typeof __propDef.props;
|
|
10
|
+
export type DropDownEvents = typeof __propDef.events;
|
|
11
|
+
export type DropDownSlots = typeof __propDef.slots;
|
|
12
|
+
export default class DropDown extends SvelteComponentTyped<DropDownProps, DropDownEvents, DropDownSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -1,38 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
onfocusin?: FocusEventHandler<HTMLDivElement>;
|
|
9
|
-
onfocusout?: FocusEventHandler<HTMLDivElement>;
|
|
10
|
-
onkeyup?: KeyboardEventHandler<HTMLDivElement>;
|
|
11
|
-
onclick?: MouseEventHandler<HTMLDivElement>;
|
|
12
|
-
manualShowHide?: boolean;
|
|
13
|
-
allowOutsideClose?: boolean;
|
|
14
|
-
position?: TDropDownControlPosition | null;
|
|
15
|
-
drop?: TDropDownControlDrop | null;
|
|
16
|
-
sameSize?: boolean;
|
|
17
|
-
controlClass?: string;
|
|
18
|
-
toggleClass?: string;
|
|
19
|
-
bodyClass?: string;
|
|
20
|
-
noScroll?: boolean;
|
|
21
|
-
fullBlock?: boolean;
|
|
22
|
-
bubble?: boolean;
|
|
23
|
-
verbose?: boolean;
|
|
24
|
-
resizeTS?: number;
|
|
25
|
-
elFocus?: HTMLElement | null;
|
|
26
|
-
zIndex?: number;
|
|
27
|
-
disabled?: boolean;
|
|
28
|
-
index?: number;
|
|
29
|
-
parentDivElement?: HTMLDivElement | null;
|
|
30
|
-
hidden?: boolean;
|
|
31
|
-
toggle?: Snippet;
|
|
32
|
-
body?: Snippet;
|
|
33
|
-
dataColor?: TDefaultColorPalate;
|
|
34
|
-
clientWidth?: number;
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
35
8
|
};
|
|
36
|
-
|
|
37
|
-
type
|
|
38
|
-
export
|
|
9
|
+
export type DropDownControlProps = typeof __propDef.props;
|
|
10
|
+
export type DropDownControlEvents = typeof __propDef.events;
|
|
11
|
+
export type DropDownControlSlots = typeof __propDef.slots;
|
|
12
|
+
export default class DropDownControl extends SvelteComponentTyped<DropDownControlProps, DropDownControlEvents, DropDownControlSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
noTruncate?: boolean;
|
|
9
|
-
print?: boolean;
|
|
10
|
-
children?: Snippet;
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
11
8
|
};
|
|
12
|
-
|
|
13
|
-
type
|
|
14
|
-
export
|
|
9
|
+
export type EllipsesTruncateProps = typeof __propDef.props;
|
|
10
|
+
export type EllipsesTruncateEvents = typeof __propDef.events;
|
|
11
|
+
export type EllipsesTruncateSlots = typeof __propDef.slots;
|
|
12
|
+
export default class EllipsesTruncate extends SvelteComponentTyped<EllipsesTruncateProps, EllipsesTruncateEvents, EllipsesTruncateSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
package/dist/Icon.svelte.d.ts
CHANGED
|
@@ -1,30 +1,14 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
size?: string;
|
|
9
|
-
color?: string | null;
|
|
10
|
-
dataColor?: TDefaultColorPalate | null;
|
|
11
|
-
fw?: boolean;
|
|
12
|
-
pull?: 'left' | 'right';
|
|
13
|
-
scale?: number;
|
|
14
|
-
translateX?: number;
|
|
15
|
-
translateY?: number;
|
|
16
|
-
rotate?: string | number | undefined;
|
|
17
|
-
flip?: 'horizontal' | 'vertical' | 'both' | boolean;
|
|
18
|
-
spin?: boolean;
|
|
19
|
-
pulse?: boolean;
|
|
20
|
-
primaryColor?: string;
|
|
21
|
-
secondaryColor?: string;
|
|
22
|
-
primaryOpacity?: number;
|
|
23
|
-
secondaryOpacity?: number;
|
|
24
|
-
swapOpacity?: boolean;
|
|
25
|
-
invisible?: boolean;
|
|
26
|
-
hidden?: boolean;
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
27
8
|
};
|
|
28
|
-
|
|
29
|
-
type
|
|
30
|
-
export
|
|
9
|
+
export type IconProps = typeof __propDef.props;
|
|
10
|
+
export type IconEvents = typeof __propDef.events;
|
|
11
|
+
export type IconSlots = typeof __propDef.slots;
|
|
12
|
+
export default class Icon extends SvelteComponentTyped<IconProps, IconEvents, IconSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare const
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { SvelteComponentTyped } from "svelte";
|
|
2
|
+
declare const __propDef: {
|
|
3
|
+
props: Record<string, never>;
|
|
4
|
+
events: {
|
|
5
|
+
[evt: string]: CustomEvent<any>;
|
|
6
|
+
};
|
|
7
|
+
slots: {};
|
|
8
|
+
};
|
|
9
|
+
export type InputNumberProps = typeof __propDef.props;
|
|
10
|
+
export type InputNumberEvents = typeof __propDef.events;
|
|
11
|
+
export type InputNumberSlots = typeof __propDef.slots;
|
|
12
|
+
export default class InputNumber extends SvelteComponentTyped<InputNumberProps, InputNumberEvents, InputNumberSlots> {
|
|
13
|
+
}
|
|
14
|
+
export {};
|