intelliwaketssveltekitv25 1.0.31 → 1.0.33
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 +6 -13
- package/dist/AboutBullets.svelte.d.ts +7 -13
- package/dist/AccordianSelect.svelte.d.ts +40 -11
- package/dist/ActivityOverlay.svelte.d.ts +10 -13
- package/dist/ArrayTable.svelte.d.ts +31 -11
- package/dist/BlockNav.svelte.d.ts +7 -13
- package/dist/ButtonGroup.svelte.d.ts +33 -11
- package/dist/Calendar.svelte.d.ts +20 -13
- package/dist/CheckBox.svelte.d.ts +21 -13
- package/dist/DateRangePicker.svelte.d.ts +16 -13
- package/dist/DisplayColor.svelte.d.ts +13 -13
- package/dist/DisplayFraction.svelte.d.ts +8 -13
- package/dist/DisplayHTML.svelte.d.ts +12 -13
- package/dist/DropDown.svelte.d.ts +27 -13
- package/dist/DropDownControl.svelte.d.ts +37 -13
- package/dist/EllipsesTruncate.svelte.d.ts +13 -13
- package/dist/Icon.svelte.d.ts +29 -13
- package/dist/InputNumber.svelte.d.ts +4 -14
- package/dist/InputNumberScroll.svelte.d.ts +30 -13
- package/dist/ListGroupItems.svelte.d.ts +26 -13
- package/dist/MasterDetailLayout.svelte.d.ts +33 -13
- package/dist/MessageBoxes.svelte.d.ts +16 -12
- package/dist/Modal.svelte.d.ts +40 -13
- package/dist/ModalFormAction.svelte.d.ts +31 -13
- package/dist/ModalPromptControl.svelte.d.ts +3 -14
- package/dist/MultiSelect.svelte.d.ts +65 -11
- package/dist/NumberFormat.svelte.d.ts +9 -14
- package/dist/Paginator.svelte +4 -1
- package/dist/Paginator.svelte.d.ts +12 -14
- package/dist/Search.svelte.d.ts +17 -13
- package/dist/SelectTimezone.svelte.d.ts +12 -13
- package/dist/SlideDown.svelte.d.ts +17 -13
- package/dist/SliderDual.svelte.d.ts +26 -11
- package/dist/SpinControl.svelte.d.ts +35 -11
- package/dist/Switch.svelte.d.ts +20 -13
- package/dist/SwitchDateNull.svelte.d.ts +18 -13
- package/dist/TabHeader.svelte.d.ts +28 -11
- package/dist/TabHref.svelte.d.ts +17 -13
- package/dist/TextArea.svelte.d.ts +10 -13
- package/dist/TextSpan.svelte.d.ts +8 -13
- package/dist/VirtualList.svelte.d.ts +30 -11
- package/dist/VirtualTable.svelte.d.ts +35 -11
- package/package.json +6 -2
package/dist/About.svelte.d.ts
CHANGED
|
@@ -1,14 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
events: {
|
|
5
|
-
[evt: string]: CustomEvent<any>;
|
|
6
|
-
};
|
|
7
|
-
slots: {};
|
|
1
|
+
import type { TAbout } from './AboutData';
|
|
2
|
+
type $$ComponentProps = {
|
|
3
|
+
abouts: TAbout[];
|
|
8
4
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export default class About extends SvelteComponentTyped<AboutProps, AboutEvents, AboutSlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
5
|
+
declare const About: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
6
|
+
type About = ReturnType<typeof About>;
|
|
7
|
+
export default About;
|
|
@@ -1,14 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
[evt: string]: CustomEvent<any>;
|
|
6
|
-
};
|
|
7
|
-
slots: {};
|
|
1
|
+
import type { TAboutBullets } from './AboutData';
|
|
2
|
+
import { AboutBullets } from './';
|
|
3
|
+
type $$ComponentProps = {
|
|
4
|
+
bullets: TAboutBullets[];
|
|
8
5
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export default class AboutBullets extends SvelteComponentTyped<AboutBulletsProps, AboutBulletsEvents, AboutBulletsSlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
6
|
+
declare const AboutBullets: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
7
|
+
type AboutBullets = ReturnType<typeof AboutBullets>;
|
|
8
|
+
export default AboutBullets;
|
|
@@ -1,14 +1,43 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import type { ISpinItem } from './Definitions';
|
|
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;
|
|
6
21
|
};
|
|
7
|
-
|
|
22
|
+
exports: {};
|
|
23
|
+
bindings: "value" | "show";
|
|
24
|
+
slots: {};
|
|
25
|
+
events: {};
|
|
26
|
+
};
|
|
27
|
+
declare class __sveltets_Render<T> {
|
|
28
|
+
props(): ReturnType<typeof $$render<T>>['props'];
|
|
29
|
+
events(): ReturnType<typeof $$render<T>>['events'];
|
|
30
|
+
slots(): ReturnType<typeof $$render<T>>['slots'];
|
|
31
|
+
bindings(): "value" | "show";
|
|
32
|
+
exports(): {};
|
|
8
33
|
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
34
|
+
interface $$IsomorphicComponent {
|
|
35
|
+
new <T>(options: import('svelte').ComponentConstructorOptions<ReturnType<__sveltets_Render<T>['props']>>): import('svelte').SvelteComponent<ReturnType<__sveltets_Render<T>['props']>, ReturnType<__sveltets_Render<T>['events']>, ReturnType<__sveltets_Render<T>['slots']>> & {
|
|
36
|
+
$$bindings?: ReturnType<__sveltets_Render<T>['bindings']>;
|
|
37
|
+
} & ReturnType<__sveltets_Render<T>['exports']>;
|
|
38
|
+
<T>(internal: unknown, props: ReturnType<__sveltets_Render<T>['props']> & {}): ReturnType<__sveltets_Render<T>['exports']>;
|
|
39
|
+
z_$$bindings?: ReturnType<__sveltets_Render<any>['bindings']>;
|
|
13
40
|
}
|
|
14
|
-
|
|
41
|
+
declare const AccordianSelect: $$IsomorphicComponent;
|
|
42
|
+
type AccordianSelect<T> = InstanceType<typeof AccordianSelect<T>>;
|
|
43
|
+
export default AccordianSelect;
|
|
@@ -1,14 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
show?: boolean;
|
|
3
|
+
allowCancelAfterSeconds?: number;
|
|
4
|
+
size?: string;
|
|
5
|
+
position?: 'fixed' | 'absolute';
|
|
6
|
+
zIndex?: number;
|
|
7
|
+
onManualClose?: () => void;
|
|
8
8
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export default class ActivityOverlay extends SvelteComponentTyped<ActivityOverlayProps, ActivityOverlayEvents, ActivityOverlaySlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
9
|
+
declare const ActivityOverlay: import("svelte").Component<$$ComponentProps, {}, "show">;
|
|
10
|
+
type ActivityOverlay = ReturnType<typeof ActivityOverlay>;
|
|
11
|
+
export default ActivityOverlay;
|
|
@@ -1,14 +1,34 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare
|
|
3
|
-
props
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { type IArrayStructure } from './ArrayFunctions';
|
|
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;
|
|
6
12
|
};
|
|
7
|
-
|
|
13
|
+
exports: {};
|
|
14
|
+
bindings: "tableRef";
|
|
15
|
+
slots: {};
|
|
16
|
+
events: {};
|
|
17
|
+
};
|
|
18
|
+
declare class __sveltets_Render<T extends Record<string, any>> {
|
|
19
|
+
props(): ReturnType<typeof $$render<T>>['props'];
|
|
20
|
+
events(): ReturnType<typeof $$render<T>>['events'];
|
|
21
|
+
slots(): ReturnType<typeof $$render<T>>['slots'];
|
|
22
|
+
bindings(): "tableRef";
|
|
23
|
+
exports(): {};
|
|
8
24
|
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
25
|
+
interface $$IsomorphicComponent {
|
|
26
|
+
new <T extends Record<string, any>>(options: import('svelte').ComponentConstructorOptions<ReturnType<__sveltets_Render<T>['props']>>): import('svelte').SvelteComponent<ReturnType<__sveltets_Render<T>['props']>, ReturnType<__sveltets_Render<T>['events']>, ReturnType<__sveltets_Render<T>['slots']>> & {
|
|
27
|
+
$$bindings?: ReturnType<__sveltets_Render<T>['bindings']>;
|
|
28
|
+
} & ReturnType<__sveltets_Render<T>['exports']>;
|
|
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']>;
|
|
13
31
|
}
|
|
14
|
-
|
|
32
|
+
declare const ArrayTable: $$IsomorphicComponent;
|
|
33
|
+
type ArrayTable<T extends Record<string, any>> = InstanceType<typeof ArrayTable<T>>;
|
|
34
|
+
export default ArrayTable;
|
|
@@ -1,14 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
[evt: string]: CustomEvent<any>;
|
|
6
|
-
};
|
|
7
|
-
slots: {};
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
when: boolean;
|
|
3
|
+
id?: string;
|
|
4
|
+
forceNav?: boolean;
|
|
8
5
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export default class BlockNav extends SvelteComponentTyped<BlockNavProps, BlockNavEvents, BlockNavSlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
6
|
+
declare const BlockNav: import("svelte").Component<$$ComponentProps, {}, "forceNav">;
|
|
7
|
+
type BlockNav = ReturnType<typeof BlockNav>;
|
|
8
|
+
export default BlockNav;
|
|
@@ -1,14 +1,36 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
declare function $$render<T>(): {
|
|
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;
|
|
6
14
|
};
|
|
7
|
-
|
|
15
|
+
exports: {};
|
|
16
|
+
bindings: "value";
|
|
17
|
+
slots: {};
|
|
18
|
+
events: {};
|
|
19
|
+
};
|
|
20
|
+
declare class __sveltets_Render<T> {
|
|
21
|
+
props(): ReturnType<typeof $$render<T>>['props'];
|
|
22
|
+
events(): ReturnType<typeof $$render<T>>['events'];
|
|
23
|
+
slots(): ReturnType<typeof $$render<T>>['slots'];
|
|
24
|
+
bindings(): "value";
|
|
25
|
+
exports(): {};
|
|
8
26
|
}
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
27
|
+
interface $$IsomorphicComponent {
|
|
28
|
+
new <T>(options: import('svelte').ComponentConstructorOptions<ReturnType<__sveltets_Render<T>['props']>>): import('svelte').SvelteComponent<ReturnType<__sveltets_Render<T>['props']>, ReturnType<__sveltets_Render<T>['events']>, ReturnType<__sveltets_Render<T>['slots']>> & {
|
|
29
|
+
$$bindings?: ReturnType<__sveltets_Render<T>['bindings']>;
|
|
30
|
+
} & ReturnType<__sveltets_Render<T>['exports']>;
|
|
31
|
+
<T>(internal: unknown, props: ReturnType<__sveltets_Render<T>['props']> & {}): ReturnType<__sveltets_Render<T>['exports']>;
|
|
32
|
+
z_$$bindings?: ReturnType<__sveltets_Render<any>['bindings']>;
|
|
13
33
|
}
|
|
14
|
-
|
|
34
|
+
declare const ButtonGroup: $$IsomorphicComponent;
|
|
35
|
+
type ButtonGroup<T> = InstanceType<typeof ButtonGroup<T>>;
|
|
36
|
+
export default ButtonGroup;
|
|
@@ -1,14 +1,21 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { type IWeek, type TDateRangeString } from './DateRangeFunctions';
|
|
2
|
+
import type { Snippet } from 'svelte';
|
|
3
|
+
type $$ComponentProps = {
|
|
4
|
+
baseDate?: string;
|
|
5
|
+
dateRangeString?: TDateRangeString | null;
|
|
6
|
+
applyRangeToSecondDate?: boolean;
|
|
7
|
+
onSelectRange?: (dateRangeString: TDateRangeString) => void;
|
|
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;
|
|
8
18
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export default class Calendar extends SvelteComponentTyped<CalendarProps, CalendarEvents, CalendarSlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
19
|
+
declare const Calendar: import("svelte").Component<$$ComponentProps, {}, "baseDate" | "dateRangeString" | "applyRangeToSecondDate">;
|
|
20
|
+
type Calendar = ReturnType<typeof Calendar>;
|
|
21
|
+
export default Calendar;
|
|
@@ -1,14 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
/** Whether or not the input is checked */
|
|
3
|
+
checked?: boolean;
|
|
4
|
+
/** Allows for styling border */
|
|
5
|
+
inputClass?: string;
|
|
6
|
+
/** Allows for styling the indicator box */
|
|
7
|
+
indicatorClass?: string;
|
|
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;
|
|
8
19
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export default class CheckBox extends SvelteComponentTyped<CheckBoxProps, CheckBoxEvents, CheckBoxSlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
20
|
+
declare const CheckBox: import("svelte").Component<$$ComponentProps, {}, "checked">;
|
|
21
|
+
type CheckBox = ReturnType<typeof CheckBox>;
|
|
22
|
+
export default CheckBox;
|
|
@@ -1,14 +1,17 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { type TDateRangeString } from './DateRangeFunctions';
|
|
2
|
+
type $$ComponentProps = {
|
|
3
|
+
dateRange: TDateRangeString;
|
|
4
|
+
dateRanges?: TDateRangeString[];
|
|
5
|
+
controlClass?: string;
|
|
6
|
+
toggleClass?: string;
|
|
7
|
+
bodyClass?: string;
|
|
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;
|
|
8
14
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export default class DateRangePicker extends SvelteComponentTyped<DateRangePickerProps, DateRangePickerEvents, DateRangePickerSlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
15
|
+
declare const DateRangePicker: import("svelte").Component<$$ComponentProps, {}, "show" | "dateRange">;
|
|
16
|
+
type DateRangePicker = ReturnType<typeof DateRangePicker>;
|
|
17
|
+
export default DateRangePicker;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
/** 0-360 (0/360 red, 120 green, 240 blue */
|
|
3
|
+
hue?: number | null;
|
|
4
|
+
/** 0-100 */
|
|
5
|
+
saturation?: number | null;
|
|
6
|
+
/** 0-100 */
|
|
7
|
+
lightness?: number | null;
|
|
8
|
+
allowInvisible?: boolean;
|
|
9
|
+
showNoColorSymbol?: boolean;
|
|
10
|
+
forceNoColorSymbol?: boolean;
|
|
8
11
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export default class DisplayColor extends SvelteComponentTyped<DisplayColorProps, DisplayColorEvents, DisplayColorSlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
12
|
+
declare const DisplayColor: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
13
|
+
type DisplayColor = ReturnType<typeof DisplayColor>;
|
|
14
|
+
export default DisplayColor;
|
|
@@ -1,14 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
};
|
|
7
|
-
slots: {};
|
|
1
|
+
type $$ComponentProps = {
|
|
2
|
+
value: number | null | undefined;
|
|
3
|
+
onNullUndefined?: 'Zero' | 'Dash' | 'Blank';
|
|
4
|
+
onBlank?: 'Zero' | 'Dash' | 'Blank';
|
|
5
|
+
maxDigitsDisplay?: number;
|
|
8
6
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export default class DisplayFraction extends SvelteComponentTyped<DisplayFractionProps, DisplayFractionEvents, DisplayFractionSlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
7
|
+
declare const DisplayFraction: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
8
|
+
type DisplayFraction = ReturnType<typeof DisplayFraction>;
|
|
9
|
+
export default DisplayFraction;
|
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import type { Snippet } from 'svelte';
|
|
2
|
+
type $$ComponentProps = {
|
|
3
|
+
value: string | null | undefined | Snippet;
|
|
4
|
+
anchorClasses?: string;
|
|
5
|
+
hidden?: boolean;
|
|
6
|
+
/**
|
|
7
|
+
* Use the noLinkReplace property to not try to change a URL into an anchor link
|
|
8
|
+
*/
|
|
9
|
+
noLinkReplace?: boolean;
|
|
8
10
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export default class DisplayHtml extends SvelteComponentTyped<DisplayHtmlProps, DisplayHtmlEvents, DisplayHtmlSlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
11
|
+
declare const DisplayHtml: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
12
|
+
type DisplayHtml = ReturnType<typeof DisplayHtml>;
|
|
13
|
+
export default DisplayHtml;
|
|
@@ -1,14 +1,28 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { type Snippet } from 'svelte';
|
|
2
|
+
import type { IDDAction, TDropDownControlPosition } from './Definitions';
|
|
3
|
+
type $$ComponentProps = {
|
|
4
|
+
show?: boolean;
|
|
5
|
+
position?: TDropDownControlPosition;
|
|
6
|
+
ddActions?: IDDAction[];
|
|
7
|
+
noCaret?: boolean;
|
|
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;
|
|
8
25
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export default class DropDown extends SvelteComponentTyped<DropDownProps, DropDownEvents, DropDownSlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
26
|
+
declare const DropDown: import("svelte").Component<$$ComponentProps, {}, "show" | "clientWidth">;
|
|
27
|
+
type DropDown = ReturnType<typeof DropDown>;
|
|
28
|
+
export default DropDown;
|
|
@@ -1,14 +1,38 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { type Snippet } from 'svelte';
|
|
2
|
+
import type { TDropDownControlDrop, TDropDownControlPosition } from './Definitions';
|
|
3
|
+
import type { FocusEventHandler, KeyboardEventHandler, MouseEventHandler } from 'svelte/elements';
|
|
4
|
+
type $$ComponentProps = {
|
|
5
|
+
show?: boolean;
|
|
6
|
+
onblur?: FocusEventHandler<HTMLDivElement>;
|
|
7
|
+
onkeydown?: KeyboardEventHandler<HTMLDivElement>;
|
|
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;
|
|
8
35
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export default class DropDownControl extends SvelteComponentTyped<DropDownControlProps, DropDownControlEvents, DropDownControlSlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
36
|
+
declare const DropDownControl: import("svelte").Component<$$ComponentProps, {}, "show" | "parentDivElement" | "clientWidth">;
|
|
37
|
+
type DropDownControl = ReturnType<typeof DropDownControl>;
|
|
38
|
+
export default DropDownControl;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import type { Snippet } from 'svelte';
|
|
2
|
+
type $$ComponentProps = {
|
|
3
|
+
text: string | number | null | undefined;
|
|
4
|
+
prefix?: string | null;
|
|
5
|
+
suffix?: string | null;
|
|
6
|
+
class?: string;
|
|
7
|
+
hidden?: boolean;
|
|
8
|
+
noTruncate?: boolean;
|
|
9
|
+
print?: boolean;
|
|
10
|
+
children?: Snippet;
|
|
8
11
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export default class EllipsesTruncate extends SvelteComponentTyped<EllipsesTruncateProps, EllipsesTruncateEvents, EllipsesTruncateSlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
12
|
+
declare const EllipsesTruncate: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
13
|
+
type EllipsesTruncate = ReturnType<typeof EllipsesTruncate>;
|
|
14
|
+
export default EllipsesTruncate;
|
package/dist/Icon.svelte.d.ts
CHANGED
|
@@ -1,14 +1,30 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import type { IconDefinition } from '@fortawesome/fontawesome-common-types';
|
|
2
|
+
type $$ComponentProps = {
|
|
3
|
+
class?: string;
|
|
4
|
+
id?: string;
|
|
5
|
+
style?: string;
|
|
6
|
+
icon?: IconDefinition | null | undefined;
|
|
7
|
+
title?: string | undefined;
|
|
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;
|
|
8
27
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export
|
|
12
|
-
export default class Icon extends SvelteComponentTyped<IconProps, IconEvents, IconSlots> {
|
|
13
|
-
}
|
|
14
|
-
export {};
|
|
28
|
+
declare const Icon: import("svelte").Component<$$ComponentProps, {}, "">;
|
|
29
|
+
type Icon = ReturnType<typeof Icon>;
|
|
30
|
+
export default Icon;
|
|
@@ -1,14 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
declare const
|
|
3
|
-
|
|
4
|
-
|
|
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 {};
|
|
1
|
+
import { type TInputNumberAttributes } from './Functions';
|
|
2
|
+
declare const InputNumber: import("svelte").Component<TInputNumberAttributes, {}, "value" | "thisRef">;
|
|
3
|
+
type InputNumber = ReturnType<typeof InputNumber>;
|
|
4
|
+
export default InputNumber;
|