@lumx/vue 4.3.2-alpha.1 → 4.3.2-alpha.2
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/CONTRIBUTING.md +12 -0
- package/components/button/Button.d.ts +1 -1
- package/components/button/ButtonGroup.d.ts +1 -1
- package/components/button/IconButton.d.ts +1 -1
- package/components/checkbox/Checkbox.d.ts +1 -1
- package/components/divider/Divider.d.ts +1 -1
- package/components/flag/Flag.d.ts +1 -1
- package/components/flex-box/FlexBox.d.ts +1 -1
- package/components/heading/Heading.d.ts +1 -1
- package/components/icon/Icon.d.ts +1 -1
- package/components/input-helper/InputHelper.d.ts +1 -1
- package/components/input-label/InputLabel.d.ts +1 -1
- package/components/link/Link.d.ts +21 -0
- package/components/link/index.d.ts +2 -0
- package/components/message/Message.d.ts +1 -1
- package/components/radio-button/RadioButton.d.ts +1 -1
- package/components/skeleton/SkeletonCircle.d.ts +1 -1
- package/components/skeleton/SkeletonRectangle.d.ts +1 -1
- package/components/skeleton/SkeletonTypography.d.ts +1 -1
- package/components/skeleton/index.d.ts +7 -10
- package/components/switch/Switch.d.ts +1 -1
- package/components/text/Text.d.ts +1 -1
- package/index.d.ts +1 -1
- package/index.js +1184 -1172
- package/index.js.map +1 -1
- package/package.json +5 -6
- package/stories/utils/useAttrsWithoutHandlers.d.ts +1 -1
- package/utils/VueToJSX.d.ts +1 -3
- package/components/badge/Badge.d.ts +0 -13
- package/components/badge/BadgeWrapper.d.ts +0 -8
- package/components/badge/index.d.ts +0 -4
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "vite build",
|
|
13
|
-
"type-check": "
|
|
13
|
+
"type-check": "yarn tsc -p tsconfig.json",
|
|
14
14
|
"start:storybook": "storybook dev -p 9000",
|
|
15
15
|
"build:storybook": "storybook build",
|
|
16
16
|
"test": "vitest run --run"
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"main": "index.js",
|
|
21
21
|
"types": "index.d.ts",
|
|
22
22
|
"sideEffects": false,
|
|
23
|
-
"version": "4.3.2-alpha.
|
|
23
|
+
"version": "4.3.2-alpha.2",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@lumx/core": "^4.3.2-alpha.
|
|
26
|
-
"@lumx/icons": "^4.3.2-alpha.
|
|
25
|
+
"@lumx/core": "^4.3.2-alpha.2",
|
|
26
|
+
"@lumx/icons": "^4.3.2-alpha.2",
|
|
27
27
|
"@vueuse/core": "^14.1.0"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
@@ -52,8 +52,7 @@
|
|
|
52
52
|
"vite-plugin-static-copy": "^3.1.4",
|
|
53
53
|
"vite-tsconfig-paths": "^5.1.4",
|
|
54
54
|
"vitest": "^4.0.18",
|
|
55
|
-
"vue": "^3.5.27"
|
|
56
|
-
"vue-tsc": "^3.2.4"
|
|
55
|
+
"vue": "^3.5.27"
|
|
57
56
|
},
|
|
58
57
|
"stableVersion": "4.3.1"
|
|
59
58
|
}
|
package/utils/VueToJSX.d.ts
CHANGED
|
@@ -9,6 +9,4 @@ export type VueToJSXProps<Props, OmitProps extends keyof Props = never> = Omit<P
|
|
|
9
9
|
/** Class name forwarded to the root element of the component. */
|
|
10
10
|
class?: string;
|
|
11
11
|
};
|
|
12
|
-
export declare const keysOf: <T>() => <K extends readonly (keyof T)[]>(...keys: [keyof T] extends [K[number]] ? K : [Error: "\u274C Missing keys in your list:", Exclude<keyof T, K[number]>]) =>
|
|
13
|
-
required: false;
|
|
14
|
-
}>;
|
|
12
|
+
export declare const keysOf: <T>() => <K extends readonly (keyof T)[]>(...keys: [keyof T] extends [K[number]] ? K : [Error: "\u274C Missing keys in your list:", Exclude<keyof T, K[number]>]) => K;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { BadgeProps as UIProps } from '@lumx/core/js/components/Badge';
|
|
2
|
-
import { VueToJSXProps } from '../../utils/VueToJSX';
|
|
3
|
-
export type BadgeProps = VueToJSXProps<UIProps>;
|
|
4
|
-
/**
|
|
5
|
-
* Badge component.
|
|
6
|
-
*
|
|
7
|
-
* @param props Component props.
|
|
8
|
-
* @return Vue element.
|
|
9
|
-
*/
|
|
10
|
-
declare const Badge: import('vue').DefineSetupFnComponent<BadgeProps, {}, {}, Omit<UIProps, "className" | "children" | "ref" | "onChange" | "onClick"> & {
|
|
11
|
-
class?: string;
|
|
12
|
-
} & {}, import('vue').PublicProps>;
|
|
13
|
-
export default Badge;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { BadgeWrapperProps as UIProps, CLASSNAME, COMPONENT_NAME, DEFAULT_PROPS } from '@lumx/core/js/components/Badge/BadgeWrapper';
|
|
2
|
-
import { VueToJSXProps } from '../../utils/VueToJSX';
|
|
3
|
-
export type BadgeWrapperProps = VueToJSXProps<UIProps>;
|
|
4
|
-
export { CLASSNAME, COMPONENT_NAME, DEFAULT_PROPS };
|
|
5
|
-
declare const BadgeWrapper: import('vue').DefineSetupFnComponent<BadgeWrapperProps, {}, {}, Omit<UIProps, "className" | "children" | "ref" | "onChange" | "onClick"> & {
|
|
6
|
-
class?: string;
|
|
7
|
-
} & {}, import('vue').PublicProps>;
|
|
8
|
-
export default BadgeWrapper;
|