intelliwaketssveltekitv25 1.0.28 → 1.0.30

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.
Files changed (44) hide show
  1. package/dist/About.svelte.d.ts +13 -6
  2. package/dist/AboutBullets.svelte.d.ts +13 -7
  3. package/dist/AccordianSelect.svelte.d.ts +11 -40
  4. package/dist/ActivityOverlay.svelte.d.ts +13 -10
  5. package/dist/ArrayTable.svelte.d.ts +11 -31
  6. package/dist/BlockNav.svelte.d.ts +13 -7
  7. package/dist/ButtonGroup.svelte.d.ts +11 -33
  8. package/dist/Calendar.svelte.d.ts +13 -20
  9. package/dist/CheckBox.svelte.d.ts +13 -21
  10. package/dist/DateRangePicker.svelte.d.ts +13 -16
  11. package/dist/DisplayColor.svelte.d.ts +13 -13
  12. package/dist/DisplayFraction.svelte.d.ts +13 -8
  13. package/dist/DisplayHTML.svelte.d.ts +13 -12
  14. package/dist/DropDown.svelte +2 -1
  15. package/dist/DropDown.svelte.d.ts +13 -27
  16. package/dist/DropDownControl.svelte.d.ts +13 -37
  17. package/dist/EllipsesTruncate.svelte.d.ts +13 -13
  18. package/dist/Icon.svelte.d.ts +13 -29
  19. package/dist/InputNumber.svelte.d.ts +14 -4
  20. package/dist/InputNumberScroll.svelte.d.ts +13 -30
  21. package/dist/ListGroupItems.svelte.d.ts +13 -26
  22. package/dist/MasterDetailLayout.svelte.d.ts +13 -33
  23. package/dist/MessageBoxes.svelte.d.ts +12 -16
  24. package/dist/Modal.svelte.d.ts +13 -40
  25. package/dist/ModalFormAction.svelte.d.ts +13 -31
  26. package/dist/ModalPromptControl.svelte.d.ts +14 -3
  27. package/dist/MultiSelect.svelte.d.ts +11 -65
  28. package/dist/NumberFormat.svelte.d.ts +14 -9
  29. package/dist/Paginator.svelte +28 -13
  30. package/dist/Paginator.svelte.d.ts +14 -12
  31. package/dist/Search.svelte.d.ts +13 -17
  32. package/dist/SelectTimezone.svelte.d.ts +13 -12
  33. package/dist/SlideDown.svelte.d.ts +13 -17
  34. package/dist/SliderDual.svelte.d.ts +11 -26
  35. package/dist/SpinControl.svelte.d.ts +11 -35
  36. package/dist/Switch.svelte.d.ts +13 -20
  37. package/dist/SwitchDateNull.svelte.d.ts +13 -18
  38. package/dist/TabHeader.svelte.d.ts +11 -28
  39. package/dist/TabHref.svelte.d.ts +13 -17
  40. package/dist/TextArea.svelte.d.ts +13 -10
  41. package/dist/TextSpan.svelte.d.ts +13 -8
  42. package/dist/VirtualList.svelte.d.ts +11 -30
  43. package/dist/VirtualTable.svelte.d.ts +11 -35
  44. package/package.json +7 -10
@@ -1,7 +1,14 @@
1
- import type { TAbout } from './AboutData';
2
- type $$ComponentProps = {
3
- abouts: TAbout[];
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
- declare const About: import("svelte").Component<$$ComponentProps, {}, "">;
6
- type About = ReturnType<typeof About>;
7
- export default About;
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 type { TAboutBullets } from './AboutData';
2
- import { AboutBullets } from './';
3
- type $$ComponentProps = {
4
- bullets: TAboutBullets[];
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
- declare const AboutBullets: import("svelte").Component<$$ComponentProps, {}, "">;
7
- type AboutBullets = ReturnType<typeof AboutBullets>;
8
- export default AboutBullets;
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 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;
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(): 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(): {};
3
+ props(): Record<string, never>;
4
+ events(): {} & {
5
+ [evt: string]: CustomEvent<any>;
6
+ };
7
+ slots(): {};
33
8
  }
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']>;
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
- declare const AccordianSelect: $$IsomorphicComponent;
42
- type AccordianSelect<T> = InstanceType<typeof AccordianSelect<T>>;
43
- export default AccordianSelect;
14
+ export {};
@@ -1,11 +1,14 @@
1
- type $$ComponentProps = {
2
- show?: boolean;
3
- allowCancelAfterSeconds?: number;
4
- size?: string;
5
- position?: 'fixed' | 'absolute';
6
- zIndex?: number;
7
- onManualClose?: () => 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: {};
8
8
  };
9
- declare const ActivityOverlay: import("svelte").Component<$$ComponentProps, {}, "show">;
10
- type ActivityOverlay = ReturnType<typeof ActivityOverlay>;
11
- export default ActivityOverlay;
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 { 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;
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(): ReturnType<typeof $$render<T>>['props'];
20
- events(): ReturnType<typeof $$render<T>>['events'];
21
- slots(): ReturnType<typeof $$render<T>>['slots'];
22
- bindings(): "tableRef";
23
- exports(): {};
3
+ props(): Record<string, never>;
4
+ events(): {} & {
5
+ [evt: string]: CustomEvent<any>;
6
+ };
7
+ slots(): {};
24
8
  }
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']>;
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
- declare const ArrayTable: $$IsomorphicComponent;
33
- type ArrayTable<T extends Record<string, any>> = InstanceType<typeof ArrayTable<T>>;
34
- export default ArrayTable;
14
+ export {};
@@ -1,8 +1,14 @@
1
- type $$ComponentProps = {
2
- when: boolean;
3
- id?: string;
4
- forceNav?: 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: {};
5
8
  };
6
- declare const BlockNav: import("svelte").Component<$$ComponentProps, {}, "forceNav">;
7
- type BlockNav = ReturnType<typeof BlockNav>;
8
- export default BlockNav;
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
- 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;
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(): ReturnType<typeof $$render<T>>['props'];
22
- events(): ReturnType<typeof $$render<T>>['events'];
23
- slots(): ReturnType<typeof $$render<T>>['slots'];
24
- bindings(): "value";
25
- exports(): {};
3
+ props(): Record<string, never>;
4
+ events(): {} & {
5
+ [evt: string]: CustomEvent<any>;
6
+ };
7
+ slots(): {};
26
8
  }
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']>;
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
- declare const ButtonGroup: $$IsomorphicComponent;
35
- type ButtonGroup<T> = InstanceType<typeof ButtonGroup<T>>;
36
- export default ButtonGroup;
14
+ export {};
@@ -1,21 +1,14 @@
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;
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
- declare const Calendar: import("svelte").Component<$$ComponentProps, {}, "baseDate" | "dateRangeString" | "applyRangeToSecondDate">;
20
- type Calendar = ReturnType<typeof Calendar>;
21
- export default Calendar;
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
- 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;
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
- declare const CheckBox: import("svelte").Component<$$ComponentProps, {}, "checked">;
21
- type CheckBox = ReturnType<typeof CheckBox>;
22
- export default CheckBox;
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 { 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;
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
- declare const DateRangePicker: import("svelte").Component<$$ComponentProps, {}, "show" | "dateRange">;
16
- type DateRangePicker = ReturnType<typeof DateRangePicker>;
17
- export default DateRangePicker;
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
- 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;
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
- declare const DisplayColor: import("svelte").Component<$$ComponentProps, {}, "">;
13
- type DisplayColor = ReturnType<typeof DisplayColor>;
14
- export default DisplayColor;
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
- type $$ComponentProps = {
2
- value: number | null | undefined;
3
- onNullUndefined?: 'Zero' | 'Dash' | 'Blank';
4
- onBlank?: 'Zero' | 'Dash' | 'Blank';
5
- maxDigitsDisplay?: 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: {};
6
8
  };
7
- declare const DisplayFraction: import("svelte").Component<$$ComponentProps, {}, "">;
8
- type DisplayFraction = ReturnType<typeof DisplayFraction>;
9
- export default DisplayFraction;
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 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;
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
- declare const DisplayHtml: import("svelte").Component<$$ComponentProps, {}, "">;
12
- type DisplayHtml = ReturnType<typeof DisplayHtml>;
13
- export default DisplayHtml;
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 {};
@@ -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 { 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;
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
- declare const DropDown: import("svelte").Component<$$ComponentProps, {}, "show" | "clientWidth">;
27
- type DropDown = ReturnType<typeof DropDown>;
28
- export default DropDown;
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 { 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;
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
- declare const DropDownControl: import("svelte").Component<$$ComponentProps, {}, "show" | "parentDivElement" | "clientWidth">;
37
- type DropDownControl = ReturnType<typeof DropDownControl>;
38
- export default DropDownControl;
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 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;
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
- declare const EllipsesTruncate: import("svelte").Component<$$ComponentProps, {}, "">;
13
- type EllipsesTruncate = ReturnType<typeof EllipsesTruncate>;
14
- export default EllipsesTruncate;
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 {};
@@ -1,30 +1,14 @@
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;
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
- declare const Icon: import("svelte").Component<$$ComponentProps, {}, "">;
29
- type Icon = ReturnType<typeof Icon>;
30
- export default Icon;
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 { type TInputNumberAttributes } from './Functions';
2
- declare const InputNumber: import("svelte").Component<TInputNumberAttributes, {}, "value" | "thisRef">;
3
- type InputNumber = ReturnType<typeof InputNumber>;
4
- export default InputNumber;
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 {};