@lumx/vue 4.3.2-alpha.33 → 4.3.2-alpha.34

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.
@@ -11,7 +11,11 @@ export { CLASSNAME, COMPONENT_NAME, DEFAULT_PROPS };
11
11
  * @param props Component props.
12
12
  * @return Vue element.
13
13
  */
14
- declare const Link: import('vue').DefineSetupFnComponent<LinkProps, {}, {}, Omit<UIProps, "className" | "label" | import('@lumx/core/js/types').PropsToOverride | "children"> & {
14
+ declare const Link: import('vue').DefineSetupFnComponent<LinkProps, {
15
+ click: (event: Event) => boolean;
16
+ }, {}, Omit<UIProps, "className" | "label" | import('@lumx/core/js/types').PropsToOverride | "children"> & {
15
17
  class?: string;
16
- } & {}, import('vue').PublicProps>;
18
+ } & {
19
+ onClick?: ((event: Event) => any) | undefined;
20
+ }, import('vue').PublicProps>;
17
21
  export default Link;
@@ -0,0 +1,9 @@
1
+ import { ProgressCircularProps as UIProps, ProgressCircularSize, CLASSNAME, COMPONENT_NAME, DEFAULT_PROPS } from '@lumx/core/js/components/ProgressCircular';
2
+ import { VueToJSXProps } from '../../utils/VueToJSX';
3
+ export type ProgressCircularProps = VueToJSXProps<UIProps, 'ref' | 'svgProps' | 'circleProps'>;
4
+ export type { ProgressCircularSize };
5
+ export { CLASSNAME, COMPONENT_NAME, DEFAULT_PROPS };
6
+ declare const ProgressCircular: import('vue').DefineSetupFnComponent<ProgressCircularProps, {}, {}, Omit<UIProps, "className" | import('@lumx/core/js/types').PropsToOverride | "children" | "svgProps" | "circleProps"> & {
7
+ class?: string;
8
+ } & {}, import('vue').PublicProps>;
9
+ export default ProgressCircular;
@@ -0,0 +1,22 @@
1
+ declare const _default: {
2
+ component: any;
3
+ args: Partial<import('@lumx/core/js/components/ProgressCircular').ProgressCircularProps>;
4
+ argTypes: {
5
+ size: {
6
+ control: {
7
+ type: "select" | "inline-radio";
8
+ };
9
+ options: import('../..').ProgressCircularSize[];
10
+ mapping: Record<string, import('../..').ProgressCircularSize> | undefined;
11
+ };
12
+ };
13
+ title: string;
14
+ };
15
+ export default _default;
16
+ export declare const Default: {};
17
+ export declare const AllSizes: {
18
+ decorators: ((story: any, context: any) => any)[];
19
+ };
20
+ export declare const Inline: {
21
+ [x: string]: any;
22
+ };
@@ -0,0 +1,8 @@
1
+ import { ProgressLinearProps as UIProps, CLASSNAME, COMPONENT_NAME, DEFAULT_PROPS } from '@lumx/core/js/components/ProgressLinear';
2
+ import { VueToJSXProps } from '../../utils/VueToJSX';
3
+ export type ProgressLinearProps = VueToJSXProps<UIProps, 'ref'>;
4
+ export { CLASSNAME, COMPONENT_NAME, DEFAULT_PROPS };
5
+ declare const ProgressLinear: import('vue').DefineSetupFnComponent<ProgressLinearProps, {}, {}, Omit<UIProps, "className" | import('@lumx/core/js/types').PropsToOverride | "children"> & {
6
+ class?: string;
7
+ } & {}, import('vue').PublicProps>;
8
+ export default ProgressLinear;
@@ -0,0 +1,6 @@
1
+ export { default as ProgressCircular } from './ProgressCircular';
2
+ export type { ProgressCircularProps, ProgressCircularSize } from './ProgressCircular';
3
+ export { CLASSNAME as PROGRESS_CIRCULAR_CLASSNAME, COMPONENT_NAME as PROGRESS_CIRCULAR_COMPONENT_NAME } from './ProgressCircular';
4
+ export { default as ProgressLinear } from './ProgressLinear';
5
+ export type { ProgressLinearProps } from './ProgressLinear';
6
+ export { CLASSNAME as PROGRESS_LINEAR_CLASSNAME, COMPONENT_NAME as PROGRESS_LINEAR_COMPONENT_NAME } from './ProgressLinear';
package/index.d.ts CHANGED
@@ -13,6 +13,7 @@ export * from './components/input-helper';
13
13
  export * from './components/input-label';
14
14
  export * from './components/link';
15
15
  export * from './components/message';
16
+ export * from './components/progress';
16
17
  export * from './components/radio-button';
17
18
  export * from './components/skeleton';
18
19
  export * from './components/switch';