@lumx/vue 4.2.1-alpha.7 → 4.2.1-alpha.9

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/package.json CHANGED
@@ -20,10 +20,10 @@
20
20
  "main": "index.js",
21
21
  "types": "index.d.ts",
22
22
  "sideEffects": false,
23
- "version": "4.2.1-alpha.7",
23
+ "version": "4.2.1-alpha.9",
24
24
  "dependencies": {
25
- "@lumx/core": "^4.2.1-alpha.7",
26
- "@lumx/icons": "^4.2.1-alpha.7",
25
+ "@lumx/core": "^4.2.1-alpha.9",
26
+ "@lumx/icons": "^4.2.1-alpha.9",
27
27
  "@vueuse/core": "^14.1.0"
28
28
  },
29
29
  "peerDependencies": {
@@ -5,7 +5,7 @@
5
5
  * @template Props - The base props type
6
6
  * @template OmitProps - Additional props to omit beyond the defaults (children, className, ref)
7
7
  */
8
- export type VueToJSXProps<Props, OmitProps extends keyof Props = never> = Omit<Props, 'children' | 'className' | 'ref' | OmitProps> & {
8
+ export type VueToJSXProps<Props, OmitProps extends keyof Props = never> = Omit<Props, 'children' | 'className' | 'ref' | 'onClick' | 'onChange' | OmitProps> & {
9
9
  /** Class name forwarded to the root element of the component. */
10
10
  class?: string;
11
11
  };
@@ -1,18 +0,0 @@
1
- import { HeadingProps } from '@lumx/core/js/components/Heading';
2
- declare function __VLS_template(): {
3
- attrs: Partial<{}>;
4
- slots: {
5
- default?(_: {}): any;
6
- };
7
- refs: {};
8
- rootEl: any;
9
- };
10
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
- declare const __VLS_component: import('vue').DefineComponent<HeadingProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<HeadingProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
13
- export default _default;
14
- type __VLS_WithTemplateSlots<T, S> = T & {
15
- new (): {
16
- $slots: S;
17
- };
18
- };
@@ -1,21 +0,0 @@
1
- type __VLS_Props = {
2
- /** The heading level to start at. If left undefined, the parent context will be used, if any. */
3
- level?: number;
4
- };
5
- declare function __VLS_template(): {
6
- attrs: Partial<{}>;
7
- slots: {
8
- default?(_: {}): any;
9
- };
10
- refs: {};
11
- rootEl: any;
12
- };
13
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
- declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
15
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
- export default _default;
17
- type __VLS_WithTemplateSlots<T, S> = T & {
18
- new (): {
19
- $slots: S;
20
- };
21
- };
@@ -1,5 +0,0 @@
1
- import { TextProps } from '@lumx/core/js/components/Text';
2
- declare const _default: import('vue').DefineComponent<TextProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TextProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
3
- 'tooltip-label': unknown;
4
- }, any>;
5
- export default _default;