@quaffui/quaff 0.1.0-prealpha → 0.1.0-prealpha2

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 (39) hide show
  1. package/dist/components/avatar/QAvatar.svelte.d.ts +4 -4
  2. package/dist/components/breadcrumbs/QBreadcrumbs.svelte.d.ts +4 -4
  3. package/dist/components/breadcrumbs/QBreadcrumbsEl.svelte.d.ts +4 -4
  4. package/dist/components/button/QBtn.svelte.d.ts +4 -4
  5. package/dist/components/card/QCard.svelte.d.ts +4 -4
  6. package/dist/components/card/QCardActions.svelte.d.ts +4 -4
  7. package/dist/components/card/QCardSection.svelte.d.ts +4 -4
  8. package/dist/components/checkbox/QCheckbox.svelte.d.ts +4 -4
  9. package/dist/components/chip/QChip.svelte.d.ts +4 -4
  10. package/dist/components/codeBlock/QCodeBlock.svelte.d.ts +4 -4
  11. package/dist/components/dialog/QDialog.svelte.d.ts +4 -4
  12. package/dist/components/drawer/QDrawer.svelte.d.ts +4 -4
  13. package/dist/components/footer/QFooter.svelte.d.ts +4 -4
  14. package/dist/components/icon/QIcon.svelte.d.ts +4 -4
  15. package/dist/components/input/QInput.svelte.d.ts +4 -4
  16. package/dist/components/layout/QLayout.svelte.d.ts +4 -4
  17. package/dist/components/list/QItem.svelte.d.ts +4 -4
  18. package/dist/components/list/QItemSection.svelte.d.ts +4 -4
  19. package/dist/components/list/QList.svelte.d.ts +4 -4
  20. package/dist/components/private/ContextReseter.svelte.d.ts +2 -2
  21. package/dist/components/private/QApi.svelte.d.ts +2 -2
  22. package/dist/components/private/QDocs.svelte.d.ts +2 -2
  23. package/dist/components/private/QDocsSection.svelte.d.ts +2 -2
  24. package/dist/components/progress/QCircularProgress.svelte.d.ts +4 -4
  25. package/dist/components/progress/QLinearProgress.svelte.d.ts +4 -4
  26. package/dist/components/radio/QRadio.svelte.d.ts +4 -4
  27. package/dist/components/railbar/QRailbar.svelte.d.ts +4 -4
  28. package/dist/components/select/QSelect.svelte.d.ts +4 -4
  29. package/dist/components/separator/QSeparator.svelte.d.ts +4 -4
  30. package/dist/components/table/QTable.svelte.d.ts +4 -4
  31. package/dist/components/tabs/QTab.svelte.d.ts +4 -4
  32. package/dist/components/tabs/QTabs.svelte.d.ts +4 -4
  33. package/dist/components/toggle/QToggle.svelte.d.ts +4 -4
  34. package/dist/components/toolbar/QToolbar.svelte.d.ts +4 -4
  35. package/dist/components/tooltip/QTooltip.svelte.d.ts +4 -4
  36. package/dist/stores/QTheme.d.ts +2 -1
  37. package/dist/stores/Quaff.d.ts +6 -5
  38. package/dist/utils/watchable.d.ts +1 -0
  39. package/package.json +23 -23
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QAvatarProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -19,9 +19,9 @@ declare const __propDef: {
19
19
  default: {};
20
20
  };
21
21
  };
22
- export type QAvatarProps = typeof __propDef.props;
22
+ type QAvatarProps_ = typeof __propDef.props;
23
+ export { QAvatarProps_ as QAvatarProps };
23
24
  export type QAvatarEvents = typeof __propDef.events;
24
25
  export type QAvatarSlots = typeof __propDef.slots;
25
- export default class QAvatar extends SvelteComponentTyped<QAvatarProps, QAvatarEvents, QAvatarSlots> {
26
+ export default class QAvatar extends SvelteComponent<QAvatarProps, QAvatarEvents, QAvatarSlots> {
26
27
  }
27
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QBreadcrumbsProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -15,9 +15,9 @@ declare const __propDef: {
15
15
  default: {};
16
16
  };
17
17
  };
18
- export type QBreadcrumbsProps = typeof __propDef.props;
18
+ type QBreadcrumbsProps_ = typeof __propDef.props;
19
+ export { QBreadcrumbsProps_ as QBreadcrumbsProps };
19
20
  export type QBreadcrumbsEvents = typeof __propDef.events;
20
21
  export type QBreadcrumbsSlots = typeof __propDef.slots;
21
- export default class QBreadcrumbs extends SvelteComponentTyped<QBreadcrumbsProps, QBreadcrumbsEvents, QBreadcrumbsSlots> {
22
+ export default class QBreadcrumbs extends SvelteComponent<QBreadcrumbsProps, QBreadcrumbsEvents, QBreadcrumbsSlots> {
22
23
  }
23
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QBreadcrumbsElProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -18,9 +18,9 @@ declare const __propDef: {
18
18
  default: {};
19
19
  };
20
20
  };
21
- export type QBreadcrumbsElProps = typeof __propDef.props;
21
+ type QBreadcrumbsElProps_ = typeof __propDef.props;
22
+ export { QBreadcrumbsElProps_ as QBreadcrumbsElProps };
22
23
  export type QBreadcrumbsElEvents = typeof __propDef.events;
23
24
  export type QBreadcrumbsElSlots = typeof __propDef.slots;
24
- export default class QBreadcrumbsEl extends SvelteComponentTyped<QBreadcrumbsElProps, QBreadcrumbsElEvents, QBreadcrumbsElSlots> {
25
+ export default class QBreadcrumbsEl extends SvelteComponent<QBreadcrumbsElProps, QBreadcrumbsElEvents, QBreadcrumbsElSlots> {
25
26
  }
26
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QBtnProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -24,9 +24,9 @@ declare const __propDef: {
24
24
  default: {};
25
25
  };
26
26
  };
27
- export type QBtnProps = typeof __propDef.props;
27
+ type QBtnProps_ = typeof __propDef.props;
28
+ export { QBtnProps_ as QBtnProps };
28
29
  export type QBtnEvents = typeof __propDef.events;
29
30
  export type QBtnSlots = typeof __propDef.slots;
30
- export default class QBtn extends SvelteComponentTyped<QBtnProps, QBtnEvents, QBtnSlots> {
31
+ export default class QBtn extends SvelteComponent<QBtnProps, QBtnEvents, QBtnSlots> {
31
32
  }
32
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QCardProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -18,9 +18,9 @@ declare const __propDef: {
18
18
  default: {};
19
19
  };
20
20
  };
21
- export type QCardProps = typeof __propDef.props;
21
+ type QCardProps_ = typeof __propDef.props;
22
+ export { QCardProps_ as QCardProps };
22
23
  export type QCardEvents = typeof __propDef.events;
23
24
  export type QCardSlots = typeof __propDef.slots;
24
- export default class QCard extends SvelteComponentTyped<QCardProps, QCardEvents, QCardSlots> {
25
+ export default class QCard extends SvelteComponent<QCardProps, QCardEvents, QCardSlots> {
25
26
  }
26
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QCardActionsProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -14,9 +14,9 @@ declare const __propDef: {
14
14
  default: {};
15
15
  };
16
16
  };
17
- export type QCardActionsProps = typeof __propDef.props;
17
+ type QCardActionsProps_ = typeof __propDef.props;
18
+ export { QCardActionsProps_ as QCardActionsProps };
18
19
  export type QCardActionsEvents = typeof __propDef.events;
19
20
  export type QCardActionsSlots = typeof __propDef.slots;
20
- export default class QCardActions extends SvelteComponentTyped<QCardActionsProps, QCardActionsEvents, QCardActionsSlots> {
21
+ export default class QCardActions extends SvelteComponent<QCardActionsProps, QCardActionsEvents, QCardActionsSlots> {
21
22
  }
22
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QCardSectionProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -15,9 +15,9 @@ declare const __propDef: {
15
15
  default: {};
16
16
  };
17
17
  };
18
- export type QCardSectionProps = typeof __propDef.props;
18
+ type QCardSectionProps_ = typeof __propDef.props;
19
+ export { QCardSectionProps_ as QCardSectionProps };
19
20
  export type QCardSectionEvents = typeof __propDef.events;
20
21
  export type QCardSectionSlots = typeof __propDef.slots;
21
- export default class QCardSection extends SvelteComponentTyped<QCardSectionProps, QCardSectionEvents, QCardSectionSlots> {
22
+ export default class QCardSection extends SvelteComponent<QCardSectionProps, QCardSectionEvents, QCardSectionSlots> {
22
23
  }
23
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QCheckboxProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -13,9 +13,9 @@ declare const __propDef: {
13
13
  };
14
14
  slots: {};
15
15
  };
16
- export type QCheckboxProps = typeof __propDef.props;
16
+ type QCheckboxProps_ = typeof __propDef.props;
17
+ export { QCheckboxProps_ as QCheckboxProps };
17
18
  export type QCheckboxEvents = typeof __propDef.events;
18
19
  export type QCheckboxSlots = typeof __propDef.slots;
19
- export default class QCheckbox extends SvelteComponentTyped<QCheckboxProps, QCheckboxEvents, QCheckboxSlots> {
20
+ export default class QCheckbox extends SvelteComponent<QCheckboxProps, QCheckboxEvents, QCheckboxSlots> {
20
21
  }
21
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QChipProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -27,9 +27,9 @@ declare const __propDef: {
27
27
  trailing: {};
28
28
  };
29
29
  };
30
- export type QChipProps = typeof __propDef.props;
30
+ type QChipProps_ = typeof __propDef.props;
31
+ export { QChipProps_ as QChipProps };
31
32
  export type QChipEvents = typeof __propDef.events;
32
33
  export type QChipSlots = typeof __propDef.slots;
33
- export default class QChip extends SvelteComponentTyped<QChipProps, QChipEvents, QChipSlots> {
34
+ export default class QChip extends SvelteComponent<QChipProps, QChipEvents, QChipSlots> {
34
35
  }
35
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import "prismjs/themes/prism-twilight.css";
3
3
  import "prismjs/components/prism-typescript";
4
4
  import "prism-svelte";
@@ -15,9 +15,9 @@ declare const __propDef: {
15
15
  };
16
16
  slots: {};
17
17
  };
18
- export type QCodeBlockProps = typeof __propDef.props;
18
+ type QCodeBlockProps_ = typeof __propDef.props;
19
+ export { QCodeBlockProps_ as QCodeBlockProps };
19
20
  export type QCodeBlockEvents = typeof __propDef.events;
20
21
  export type QCodeBlockSlots = typeof __propDef.slots;
21
- export default class QCodeBlock extends SvelteComponentTyped<QCodeBlockProps, QCodeBlockEvents, QCodeBlockSlots> {
22
+ export default class QCodeBlock extends SvelteComponent<QCodeBlockProps, QCodeBlockEvents, QCodeBlockSlots> {
22
23
  }
23
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QDialogProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -26,12 +26,12 @@ declare const __propDef: {
26
26
  default: {};
27
27
  };
28
28
  };
29
- export type QDialogProps = typeof __propDef.props;
29
+ type QDialogProps_ = typeof __propDef.props;
30
+ export { QDialogProps_ as QDialogProps };
30
31
  export type QDialogEvents = typeof __propDef.events;
31
32
  export type QDialogSlots = typeof __propDef.slots;
32
- export default class QDialog extends SvelteComponentTyped<QDialogProps, QDialogEvents, QDialogSlots> {
33
+ export default class QDialog extends SvelteComponent<QDialogProps, QDialogEvents, QDialogSlots> {
33
34
  get hide(): any;
34
35
  get show(): any;
35
36
  get toggle(): any;
36
37
  }
37
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QDrawerProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -28,12 +28,12 @@ declare const __propDef: {
28
28
  default: {};
29
29
  };
30
30
  };
31
- export type QDrawerProps = typeof __propDef.props;
31
+ type QDrawerProps_ = typeof __propDef.props;
32
+ export { QDrawerProps_ as QDrawerProps };
32
33
  export type QDrawerEvents = typeof __propDef.events;
33
34
  export type QDrawerSlots = typeof __propDef.slots;
34
- export default class QDrawer extends SvelteComponentTyped<QDrawerProps, QDrawerEvents, QDrawerSlots> {
35
+ export default class QDrawer extends SvelteComponent<QDrawerProps, QDrawerEvents, QDrawerSlots> {
35
36
  get show(): any;
36
37
  get hide(): any;
37
38
  get toggle(): any;
38
39
  }
39
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QFooterProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -16,9 +16,9 @@ declare const __propDef: {
16
16
  default: {};
17
17
  };
18
18
  };
19
- export type QFooterProps = typeof __propDef.props;
19
+ type QFooterProps_ = typeof __propDef.props;
20
+ export { QFooterProps_ as QFooterProps };
20
21
  export type QFooterEvents = typeof __propDef.events;
21
22
  export type QFooterSlots = typeof __propDef.slots;
22
- export default class QFooter extends SvelteComponentTyped<QFooterProps, QFooterEvents, QFooterSlots> {
23
+ export default class QFooter extends SvelteComponent<QFooterProps, QFooterEvents, QFooterSlots> {
23
24
  }
24
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QIconProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -20,9 +20,9 @@ declare const __propDef: {
20
20
  default: {};
21
21
  };
22
22
  };
23
- export type QIconProps = typeof __propDef.props;
23
+ type QIconProps_ = typeof __propDef.props;
24
+ export { QIconProps_ as QIconProps };
24
25
  export type QIconEvents = typeof __propDef.events;
25
26
  export type QIconSlots = typeof __propDef.slots;
26
- export default class QIcon extends SvelteComponentTyped<QIconProps, QIconEvents, QIconSlots> {
27
+ export default class QIcon extends SvelteComponent<QIconProps, QIconEvents, QIconSlots> {
27
28
  }
28
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QInputProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -24,9 +24,9 @@ declare const __propDef: {
24
24
  append: {};
25
25
  };
26
26
  };
27
- export type QInputProps = typeof __propDef.props;
27
+ type QInputProps_ = typeof __propDef.props;
28
+ export { QInputProps_ as QInputProps };
28
29
  export type QInputEvents = typeof __propDef.events;
29
30
  export type QInputSlots = typeof __propDef.slots;
30
- export default class QInput extends SvelteComponentTyped<QInputProps, QInputEvents, QInputSlots> {
31
+ export default class QInput extends SvelteComponent<QInputProps, QInputEvents, QInputSlots> {
31
32
  }
32
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  export interface DrawerContext {
3
3
  offset: {
4
4
  top: boolean;
@@ -49,9 +49,9 @@ declare const __propDef: {
49
49
  content: {};
50
50
  };
51
51
  };
52
- export type QLayoutProps = typeof __propDef.props;
52
+ type QLayoutProps_ = typeof __propDef.props;
53
+ export { QLayoutProps_ as QLayoutProps };
53
54
  export type QLayoutEvents = typeof __propDef.events;
54
55
  export type QLayoutSlots = typeof __propDef.slots;
55
- export default class QLayout extends SvelteComponentTyped<QLayoutProps, QLayoutEvents, QLayoutSlots> {
56
+ export default class QLayout extends SvelteComponent<QLayoutProps, QLayoutEvents, QLayoutSlots> {
56
57
  }
57
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QItemProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -26,9 +26,9 @@ declare const __propDef: {
26
26
  default: {};
27
27
  };
28
28
  };
29
- export type QItemProps = typeof __propDef.props;
29
+ type QItemProps_ = typeof __propDef.props;
30
+ export { QItemProps_ as QItemProps };
30
31
  export type QItemEvents = typeof __propDef.events;
31
32
  export type QItemSlots = typeof __propDef.slots;
32
- export default class QItem extends SvelteComponentTyped<QItemProps, QItemEvents, QItemSlots> {
33
+ export default class QItem extends SvelteComponent<QItemProps, QItemEvents, QItemSlots> {
33
34
  }
34
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QItemSectionProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -17,9 +17,9 @@ declare const __propDef: {
17
17
  line3: {};
18
18
  };
19
19
  };
20
- export type QItemSectionProps = typeof __propDef.props;
20
+ type QItemSectionProps_ = typeof __propDef.props;
21
+ export { QItemSectionProps_ as QItemSectionProps };
21
22
  export type QItemSectionEvents = typeof __propDef.events;
22
23
  export type QItemSectionSlots = typeof __propDef.slots;
23
- export default class QItemSection extends SvelteComponentTyped<QItemSectionProps, QItemSectionEvents, QItemSectionSlots> {
24
+ export default class QItemSection extends SvelteComponent<QItemSectionProps, QItemSectionEvents, QItemSectionSlots> {
24
25
  }
25
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QListProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -28,9 +28,9 @@ declare const __propDef: {
28
28
  default: {};
29
29
  };
30
30
  };
31
- export type QListProps = typeof __propDef.props;
31
+ type QListProps_ = typeof __propDef.props;
32
+ export { QListProps_ as QListProps };
32
33
  export type QListEvents = typeof __propDef.events;
33
34
  export type QListSlots = typeof __propDef.slots;
34
- export default class QList extends SvelteComponentTyped<QListProps, QListEvents, QListSlots> {
35
+ export default class QList extends SvelteComponent<QListProps, QListEvents, QListSlots> {
35
36
  }
36
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  declare const __propDef: {
3
3
  props: {
4
4
  keys: string | string[];
@@ -13,6 +13,6 @@ declare const __propDef: {
13
13
  export type ContextReseterProps = typeof __propDef.props;
14
14
  export type ContextReseterEvents = typeof __propDef.events;
15
15
  export type ContextReseterSlots = typeof __propDef.slots;
16
- export default class ContextReseter extends SvelteComponentTyped<ContextReseterProps, ContextReseterEvents, ContextReseterSlots> {
16
+ export default class ContextReseter extends SvelteComponent<ContextReseterProps, ContextReseterEvents, ContextReseterSlots> {
17
17
  }
18
18
  export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QComponentDocs } from "../../utils/types";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -12,6 +12,6 @@ declare const __propDef: {
12
12
  export type QApiProps = typeof __propDef.props;
13
13
  export type QApiEvents = typeof __propDef.events;
14
14
  export type QApiSlots = typeof __propDef.slots;
15
- export default class QApi extends SvelteComponentTyped<QApiProps, QApiEvents, QApiSlots> {
15
+ export default class QApi extends SvelteComponent<QApiProps, QApiEvents, QApiSlots> {
16
16
  }
17
17
  export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QComponentDocs } from "$utils/types";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -16,6 +16,6 @@ declare const __propDef: {
16
16
  export type QDocsProps = typeof __propDef.props;
17
17
  export type QDocsEvents = typeof __propDef.events;
18
18
  export type QDocsSlots = typeof __propDef.slots;
19
- export default class QDocs extends SvelteComponentTyped<QDocsProps, QDocsEvents, QDocsSlots> {
19
+ export default class QDocs extends SvelteComponent<QDocsProps, QDocsEvents, QDocsSlots> {
20
20
  }
21
21
  export {};
@@ -1,7 +1,7 @@
1
1
  /** @typedef {typeof __propDef.props} QDocsSectionProps */
2
2
  /** @typedef {typeof __propDef.events} QDocsSectionEvents */
3
3
  /** @typedef {typeof __propDef.slots} QDocsSectionSlots */
4
- export default class QDocsSection extends SvelteComponentTyped<{
4
+ export default class QDocsSection extends SvelteComponent<{
5
5
  title: any;
6
6
  snippets: any;
7
7
  }, {
@@ -13,7 +13,7 @@ export default class QDocsSection extends SvelteComponentTyped<{
13
13
  export type QDocsSectionProps = typeof __propDef.props;
14
14
  export type QDocsSectionEvents = typeof __propDef.events;
15
15
  export type QDocsSectionSlots = typeof __propDef.slots;
16
- import { SvelteComponentTyped } from "svelte";
16
+ import { SvelteComponent } from "svelte";
17
17
  declare const __propDef: {
18
18
  props: {
19
19
  title: any;
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QCircularProgressProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -14,9 +14,9 @@ declare const __propDef: {
14
14
  };
15
15
  slots: {};
16
16
  };
17
- export type QCircularProgressProps = typeof __propDef.props;
17
+ type QCircularProgressProps_ = typeof __propDef.props;
18
+ export { QCircularProgressProps_ as QCircularProgressProps };
18
19
  export type QCircularProgressEvents = typeof __propDef.events;
19
20
  export type QCircularProgressSlots = typeof __propDef.slots;
20
- export default class QCircularProgress extends SvelteComponentTyped<QCircularProgressProps, QCircularProgressEvents, QCircularProgressSlots> {
21
+ export default class QCircularProgress extends SvelteComponent<QCircularProgressProps, QCircularProgressEvents, QCircularProgressSlots> {
21
22
  }
22
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QLinearProgressProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -14,9 +14,9 @@ declare const __propDef: {
14
14
  };
15
15
  slots: {};
16
16
  };
17
- export type QLinearProgressProps = typeof __propDef.props;
17
+ type QLinearProgressProps_ = typeof __propDef.props;
18
+ export { QLinearProgressProps_ as QLinearProgressProps };
18
19
  export type QLinearProgressEvents = typeof __propDef.events;
19
20
  export type QLinearProgressSlots = typeof __propDef.slots;
20
- export default class QLinearProgress extends SvelteComponentTyped<QLinearProgressProps, QLinearProgressEvents, QLinearProgressSlots> {
21
+ export default class QLinearProgress extends SvelteComponent<QLinearProgressProps, QLinearProgressEvents, QLinearProgressSlots> {
21
22
  }
22
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QRadioProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -14,9 +14,9 @@ declare const __propDef: {
14
14
  };
15
15
  slots: {};
16
16
  };
17
- export type QRadioProps = typeof __propDef.props;
17
+ type QRadioProps_ = typeof __propDef.props;
18
+ export { QRadioProps_ as QRadioProps };
18
19
  export type QRadioEvents = typeof __propDef.events;
19
20
  export type QRadioSlots = typeof __propDef.slots;
20
- export default class QRadio extends SvelteComponentTyped<QRadioProps, QRadioEvents, QRadioSlots> {
21
+ export default class QRadio extends SvelteComponent<QRadioProps, QRadioEvents, QRadioSlots> {
21
22
  }
22
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QRailbarProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -15,9 +15,9 @@ declare const __propDef: {
15
15
  default: {};
16
16
  };
17
17
  };
18
- export type QRailbarProps = typeof __propDef.props;
18
+ type QRailbarProps_ = typeof __propDef.props;
19
+ export { QRailbarProps_ as QRailbarProps };
19
20
  export type QRailbarEvents = typeof __propDef.events;
20
21
  export type QRailbarSlots = typeof __propDef.slots;
21
- export default class QRailbar extends SvelteComponentTyped<QRailbarProps, QRailbarEvents, QRailbarSlots> {
22
+ export default class QRailbar extends SvelteComponent<QRailbarProps, QRailbarEvents, QRailbarSlots> {
22
23
  }
23
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QSelectProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -26,9 +26,9 @@ declare const __propDef: {
26
26
  append: {};
27
27
  };
28
28
  };
29
- export type QSelectProps = typeof __propDef.props;
29
+ type QSelectProps_ = typeof __propDef.props;
30
+ export { QSelectProps_ as QSelectProps };
30
31
  export type QSelectEvents = typeof __propDef.events;
31
32
  export type QSelectSlots = typeof __propDef.slots;
32
- export default class QSelect extends SvelteComponentTyped<QSelectProps, QSelectEvents, QSelectSlots> {
33
+ export default class QSelect extends SvelteComponent<QSelectProps, QSelectEvents, QSelectSlots> {
33
34
  }
34
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QSeparatorProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -17,9 +17,9 @@ declare const __propDef: {
17
17
  };
18
18
  slots: {};
19
19
  };
20
- export type QSeparatorProps = typeof __propDef.props;
20
+ type QSeparatorProps_ = typeof __propDef.props;
21
+ export { QSeparatorProps_ as QSeparatorProps };
21
22
  export type QSeparatorEvents = typeof __propDef.events;
22
23
  export type QSeparatorSlots = typeof __propDef.slots;
23
- export default class QSeparator extends SvelteComponentTyped<QSeparatorProps, QSeparatorEvents, QSeparatorSlots> {
24
+ export default class QSeparator extends SvelteComponent<QSeparatorProps, QSeparatorEvents, QSeparatorSlots> {
24
25
  }
25
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QTableProps } from "./props";
3
3
  import type { QTableColumn, QTableRow } from "./props";
4
4
  declare const __propDef: {
@@ -21,9 +21,9 @@ declare const __propDef: {
21
21
  };
22
22
  };
23
23
  };
24
- export type QTableProps = typeof __propDef.props;
24
+ type QTableProps_ = typeof __propDef.props;
25
+ export { QTableProps_ as QTableProps };
25
26
  export type QTableEvents = typeof __propDef.events;
26
27
  export type QTableSlots = typeof __propDef.slots;
27
- export default class QTable extends SvelteComponentTyped<QTableProps, QTableEvents, QTableSlots> {
28
+ export default class QTable extends SvelteComponent<QTableProps, QTableEvents, QTableSlots> {
28
29
  }
29
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QTabProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -20,9 +20,9 @@ declare const __propDef: {
20
20
  default: {};
21
21
  };
22
22
  };
23
- export type QTabProps = typeof __propDef.props;
23
+ type QTabProps_ = typeof __propDef.props;
24
+ export { QTabProps_ as QTabProps };
24
25
  export type QTabEvents = typeof __propDef.events;
25
26
  export type QTabSlots = typeof __propDef.slots;
26
- export default class QTab extends SvelteComponentTyped<QTabProps, QTabEvents, QTabSlots> {
27
+ export default class QTab extends SvelteComponent<QTabProps, QTabEvents, QTabSlots> {
27
28
  }
28
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QTabsProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -15,9 +15,9 @@ declare const __propDef: {
15
15
  default: {};
16
16
  };
17
17
  };
18
- export type QTabsProps = typeof __propDef.props;
18
+ type QTabsProps_ = typeof __propDef.props;
19
+ export { QTabsProps_ as QTabsProps };
19
20
  export type QTabsEvents = typeof __propDef.events;
20
21
  export type QTabsSlots = typeof __propDef.slots;
21
- export default class QTabs extends SvelteComponentTyped<QTabsProps, QTabsEvents, QTabsSlots> {
22
+ export default class QTabs extends SvelteComponent<QTabsProps, QTabsEvents, QTabsSlots> {
22
23
  }
23
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QToggleProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -15,9 +15,9 @@ declare const __propDef: {
15
15
  };
16
16
  slots: {};
17
17
  };
18
- export type QToggleProps = typeof __propDef.props;
18
+ type QToggleProps_ = typeof __propDef.props;
19
+ export { QToggleProps_ as QToggleProps };
19
20
  export type QToggleEvents = typeof __propDef.events;
20
21
  export type QToggleSlots = typeof __propDef.slots;
21
- export default class QToggle extends SvelteComponentTyped<QToggleProps, QToggleEvents, QToggleSlots> {
22
+ export default class QToggle extends SvelteComponent<QToggleProps, QToggleEvents, QToggleSlots> {
22
23
  }
23
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QToolbarProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -15,9 +15,9 @@ declare const __propDef: {
15
15
  default: {};
16
16
  };
17
17
  };
18
- export type QToolbarProps = typeof __propDef.props;
18
+ type QToolbarProps_ = typeof __propDef.props;
19
+ export { QToolbarProps_ as QToolbarProps };
19
20
  export type QToolbarEvents = typeof __propDef.events;
20
21
  export type QToolbarSlots = typeof __propDef.slots;
21
- export default class QToolbar extends SvelteComponentTyped<QToolbarProps, QToolbarEvents, QToolbarSlots> {
22
+ export default class QToolbar extends SvelteComponent<QToolbarProps, QToolbarEvents, QToolbarSlots> {
22
23
  }
23
- export {};
@@ -1,4 +1,4 @@
1
- import { SvelteComponentTyped } from "svelte";
1
+ import { SvelteComponent } from "svelte";
2
2
  import type { QTooltipProps } from "./props";
3
3
  declare const __propDef: {
4
4
  props: {
@@ -14,9 +14,9 @@ declare const __propDef: {
14
14
  default: {};
15
15
  };
16
16
  };
17
- export type QTooltipProps = typeof __propDef.props;
17
+ type QTooltipProps_ = typeof __propDef.props;
18
+ export { QTooltipProps_ as QTooltipProps };
18
19
  export type QTooltipEvents = typeof __propDef.events;
19
20
  export type QTooltipSlots = typeof __propDef.slots;
20
- export default class QTooltip extends SvelteComponentTyped<QTooltipProps, QTooltipEvents, QTooltipSlots> {
21
+ export default class QTooltip extends SvelteComponent<QTooltipProps, QTooltipEvents, QTooltipSlots> {
21
22
  }
22
- export {};
@@ -1,3 +1,4 @@
1
+ /// <reference types="svelte" />
1
2
  interface IMaterialDynamicColorsThemeColorFormatted {
2
3
  primary: string;
3
4
  "on-primary": string;
@@ -33,7 +34,7 @@ interface IMaterialDynamicColorsThemeFormatted {
33
34
  }
34
35
  type CSSDynamicColor = `${keyof IMaterialDynamicColorsThemeColorFormatted}-${keyof IMaterialDynamicColorsThemeFormatted}`;
35
36
  export declare const QTheme: {
36
- subscribe: (this: void, run: import("svelte/store").Subscriber<Record<"error-dark" | "error-light" | "outline-dark" | "outline-light" | "primary-dark" | "primary-light" | "secondary-dark" | "secondary-light" | "tertiary-dark" | "tertiary-light" | "surface-dark" | "surface-light" | "surface-variant-dark" | "surface-variant-light" | "on-primary-dark" | "on-primary-light" | "primary-container-dark" | "primary-container-light" | "on-primary-container-dark" | "on-primary-container-light" | "on-secondary-dark" | "on-secondary-light" | "secondary-container-dark" | "secondary-container-light" | "on-secondary-container-dark" | "on-secondary-container-light" | "on-tertiary-dark" | "on-tertiary-light" | "tertiary-container-dark" | "tertiary-container-light" | "on-tertiary-container-dark" | "on-tertiary-container-light" | "error-container-dark" | "error-container-light" | "on-error-dark" | "on-error-light" | "on-error-container-dark" | "on-error-container-light" | "background-dark" | "background-light" | "on-background-dark" | "on-background-light" | "on-surface-dark" | "on-surface-light" | "on-surface-variant-dark" | "on-surface-variant-light" | "inverse-on-surface-dark" | "inverse-on-surface-light" | "inverse-surface-dark" | "inverse-surface-light" | "inverse-primary-dark" | "inverse-primary-light" | "shadow-dark" | "shadow-light", string>>, invalidate?: ((value?: Record<"error-dark" | "error-light" | "outline-dark" | "outline-light" | "primary-dark" | "primary-light" | "secondary-dark" | "secondary-light" | "tertiary-dark" | "tertiary-light" | "surface-dark" | "surface-light" | "surface-variant-dark" | "surface-variant-light" | "on-primary-dark" | "on-primary-light" | "primary-container-dark" | "primary-container-light" | "on-primary-container-dark" | "on-primary-container-light" | "on-secondary-dark" | "on-secondary-light" | "secondary-container-dark" | "secondary-container-light" | "on-secondary-container-dark" | "on-secondary-container-light" | "on-tertiary-dark" | "on-tertiary-light" | "tertiary-container-dark" | "tertiary-container-light" | "on-tertiary-container-dark" | "on-tertiary-container-light" | "error-container-dark" | "error-container-light" | "on-error-dark" | "on-error-light" | "on-error-container-dark" | "on-error-container-light" | "background-dark" | "background-light" | "on-background-dark" | "on-background-light" | "on-surface-dark" | "on-surface-light" | "on-surface-variant-dark" | "on-surface-variant-light" | "inverse-on-surface-dark" | "inverse-on-surface-light" | "inverse-surface-dark" | "inverse-surface-light" | "inverse-primary-dark" | "inverse-primary-light" | "shadow-dark" | "shadow-light", string> | undefined) => void) | undefined) => import("svelte/store").Unsubscriber;
37
+ subscribe: (this: void, run: import("svelte/store").Subscriber<Record<"error-dark" | "error-light" | "outline-dark" | "outline-light" | "primary-dark" | "primary-light" | "secondary-dark" | "secondary-light" | "tertiary-dark" | "tertiary-light" | "surface-dark" | "surface-light" | "surface-variant-dark" | "surface-variant-light" | "on-primary-dark" | "on-primary-light" | "primary-container-dark" | "primary-container-light" | "on-primary-container-dark" | "on-primary-container-light" | "on-secondary-dark" | "on-secondary-light" | "secondary-container-dark" | "secondary-container-light" | "on-secondary-container-dark" | "on-secondary-container-light" | "on-tertiary-dark" | "on-tertiary-light" | "tertiary-container-dark" | "tertiary-container-light" | "on-tertiary-container-dark" | "on-tertiary-container-light" | "error-container-dark" | "error-container-light" | "on-error-dark" | "on-error-light" | "on-error-container-dark" | "on-error-container-light" | "background-dark" | "background-light" | "on-background-dark" | "on-background-light" | "on-surface-dark" | "on-surface-light" | "on-surface-variant-dark" | "on-surface-variant-light" | "inverse-on-surface-dark" | "inverse-on-surface-light" | "inverse-surface-dark" | "inverse-surface-light" | "inverse-primary-dark" | "inverse-primary-light" | "shadow-dark" | "shadow-light", string>>, invalidate?: import("svelte/store").Invalidator<Record<"error-dark" | "error-light" | "outline-dark" | "outline-light" | "primary-dark" | "primary-light" | "secondary-dark" | "secondary-light" | "tertiary-dark" | "tertiary-light" | "surface-dark" | "surface-light" | "surface-variant-dark" | "surface-variant-light" | "on-primary-dark" | "on-primary-light" | "primary-container-dark" | "primary-container-light" | "on-primary-container-dark" | "on-primary-container-light" | "on-secondary-dark" | "on-secondary-light" | "secondary-container-dark" | "secondary-container-light" | "on-secondary-container-dark" | "on-secondary-container-light" | "on-tertiary-dark" | "on-tertiary-light" | "tertiary-container-dark" | "tertiary-container-light" | "on-tertiary-container-dark" | "on-tertiary-container-light" | "error-container-dark" | "error-container-light" | "on-error-dark" | "on-error-light" | "on-error-container-dark" | "on-error-container-light" | "background-dark" | "background-light" | "on-background-dark" | "on-background-light" | "on-surface-dark" | "on-surface-light" | "on-surface-variant-dark" | "on-surface-variant-light" | "inverse-on-surface-dark" | "inverse-on-surface-light" | "inverse-surface-dark" | "inverse-surface-light" | "inverse-primary-dark" | "inverse-primary-light" | "shadow-dark" | "shadow-light", string>> | undefined) => import("svelte/store").Unsubscriber;
37
38
  setThemeColors: (from: string) => Promise<void>;
38
39
  updateThemeColor: (color: CSSDynamicColor, newValue: string) => void;
39
40
  apply: () => void;
@@ -1,12 +1,13 @@
1
+ /// <reference types="svelte" />
1
2
  /// <reference types="@sveltejs/kit" />
2
3
  export declare const quaffStore: {
3
4
  subscribe: (this: void, run: import("svelte/store").Subscriber<{
4
5
  version: string;
5
6
  dark: boolean;
6
- }>, invalidate?: ((value?: {
7
+ }>, invalidate?: import("svelte/store").Invalidator<{
7
8
  version: string;
8
9
  dark: boolean;
9
- } | undefined) => void) | undefined) => import("svelte/store").Unsubscriber;
10
+ }> | undefined) => import("svelte/store").Unsubscriber;
10
11
  setDarkMode: (newVal: boolean) => void;
11
12
  toggleDarkMode: () => void;
12
13
  };
@@ -22,10 +23,10 @@ export declare const Quaff: import("svelte/store").Readable<{
22
23
  quaff: (this: void, run: import("svelte/store").Subscriber<{
23
24
  version: string;
24
25
  dark: boolean;
25
- }>, invalidate?: ((value?: {
26
+ }>, invalidate?: import("svelte/store").Invalidator<{
26
27
  version: string;
27
28
  dark: boolean;
28
- } | undefined) => void) | undefined) => import("svelte/store").Unsubscriber;
29
- page: (this: void, run: import("svelte/store").Subscriber<import("@sveltejs/kit").Page<Record<string, string>, string | null>>, invalidate?: ((value?: import("@sveltejs/kit").Page<Record<string, string>, string | null> | undefined) => void) | undefined) => import("svelte/store").Unsubscriber;
29
+ }> | undefined) => import("svelte/store").Unsubscriber;
30
+ page: (this: void, run: import("svelte/store").Subscriber<import("@sveltejs/kit").Page<Record<string, string>, string | null>>, invalidate?: import("svelte/store").Invalidator<import("@sveltejs/kit").Page<Record<string, string>, string | null>> | undefined) => import("svelte/store").Unsubscriber;
30
31
  };
31
32
  }>;
@@ -1,2 +1,3 @@
1
+ /// <reference types="svelte" />
1
2
  import { Readable, Writable } from "svelte/store";
2
3
  export declare function watchable<T>(value: T): readonly [Writable<T>, Readable<T | null>];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quaffui/quaff",
3
- "version": "0.1.0-prealpha",
3
+ "version": "0.1.0-prealpha2",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "open": "vite dev --open",
@@ -28,38 +28,38 @@
28
28
  "!dist/**/*.spec.*"
29
29
  ],
30
30
  "peerDependencies": {
31
- "svelte": "^3.54.0"
31
+ "svelte": "^4.0.0"
32
32
  },
33
33
  "devDependencies": {
34
- "@sveltejs/adapter-auto": "^2.0.0",
35
- "@sveltejs/kit": "^1.5.0",
36
- "@sveltejs/package": "^2.0.0",
37
- "@types/node": "^20.3.1",
34
+ "@sveltejs/adapter-auto": "^2.1.0",
35
+ "@sveltejs/kit": "^1.22.4",
36
+ "@sveltejs/package": "^2.2.0",
37
+ "@types/node": "^20.4.6",
38
38
  "@types/prettier": "^2.7.3",
39
39
  "@types/prismjs": "^1.26.0",
40
- "@typescript-eslint/eslint-plugin": "^5.45.0",
41
- "@typescript-eslint/parser": "^5.45.0",
42
- "eslint": "^8.28.0",
43
- "eslint-config-prettier": "^8.5.0",
44
- "eslint-plugin-svelte": "^2.26.0",
45
- "prettier": "^2.8.0",
46
- "prettier-plugin-svelte": "^2.8.1",
47
- "publint": "^0.1.9",
48
- "sass": "^1.62.1",
49
- "svelte": "^3.54.0",
50
- "svelte-check": "^3.0.1",
40
+ "@typescript-eslint/eslint-plugin": "^6.2.1",
41
+ "@typescript-eslint/parser": "^6.2.1",
42
+ "eslint": "^8.46.0",
43
+ "eslint-config-prettier": "^8.9.0",
44
+ "eslint-plugin-svelte": "^2.32.4",
45
+ "prettier": "^3.0.0",
46
+ "prettier-plugin-svelte": "^3.0.3",
47
+ "publint": "^0.2.0",
48
+ "sass": "^1.64.2",
49
+ "svelte": "^4.1.2",
50
+ "svelte-check": "^3.4.6",
51
51
  "ts-node": "^10.9.1",
52
- "tslib": "^2.4.1",
53
- "typescript": "^5.0.0",
54
- "vite": "^4.3.0",
55
- "vitest": "^0.25.3"
52
+ "tslib": "^2.6.1",
53
+ "typescript": "^5.1.6",
54
+ "vite": "^4.4.8",
55
+ "vitest": "^0.34.1"
56
56
  },
57
57
  "svelte": "./dist/index.js",
58
58
  "types": "./dist/index.d.ts",
59
59
  "type": "module",
60
60
  "dependencies": {
61
- "beercss": "^3.2.6",
62
- "material-dynamic-colors": "^0.1.7",
61
+ "beercss": "^3.2.13",
62
+ "material-dynamic-colors": "^1.0.1",
63
63
  "prism-svelte": "0.5.0",
64
64
  "prismjs": "^1.29.0"
65
65
  }