@lumx/vue 3.20.1-alpha.0 → 3.20.1-alpha.1
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/index.js +1 -5
- package/package.json +3 -3
- package/src/Icon.tsx +1 -3
- package/src/components/icon/Icon.tsx +1 -3
- package/src/icon/Icon.tsx +1 -3
package/index.js
CHANGED
|
@@ -1080,11 +1080,7 @@ const Kn = pt({
|
|
|
1080
1080
|
}
|
|
1081
1081
|
// GenericProps may include other props, but these are the main ones from IconProps
|
|
1082
1082
|
},
|
|
1083
|
-
setup
|
|
1084
|
-
return {
|
|
1085
|
-
props: r
|
|
1086
|
-
};
|
|
1087
|
-
},
|
|
1083
|
+
// setup function removed; props are accessible via this.props in render
|
|
1088
1084
|
render() {
|
|
1089
1085
|
return gt(w, ze([{}, this.props]));
|
|
1090
1086
|
}
|
package/package.json
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
"url": "https://github.com/lumapps/design-system/issues"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@lumx/core": "^3.20.1-alpha.
|
|
10
|
-
"@lumx/icons": "^3.20.1-alpha.
|
|
9
|
+
"@lumx/core": "^3.20.1-alpha.1",
|
|
10
|
+
"@lumx/icons": "^3.20.1-alpha.1",
|
|
11
11
|
"vue-demi": "^0.14.10"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
@@ -117,5 +117,5 @@
|
|
|
117
117
|
"storybook:vue2": "vue-demi-switch 2 vue2 && yarn start:storybook"
|
|
118
118
|
},
|
|
119
119
|
"sideEffects": false,
|
|
120
|
-
"version": "3.20.1-alpha.
|
|
120
|
+
"version": "3.20.1-alpha.1"
|
|
121
121
|
}
|
package/src/Icon.tsx
CHANGED
|
@@ -41,9 +41,7 @@ export default defineComponent({
|
|
|
41
41
|
},
|
|
42
42
|
// GenericProps may include other props, but these are the main ones from IconProps
|
|
43
43
|
},
|
|
44
|
-
setup
|
|
45
|
-
return { props };
|
|
46
|
-
},
|
|
44
|
+
// setup function removed; props are accessible via this.props in render
|
|
47
45
|
render() {
|
|
48
46
|
return <UI {...this.props} />;
|
|
49
47
|
},
|
|
@@ -41,9 +41,7 @@ export default defineComponent({
|
|
|
41
41
|
},
|
|
42
42
|
// GenericProps may include other props, but these are the main ones from IconProps
|
|
43
43
|
},
|
|
44
|
-
setup
|
|
45
|
-
return { props };
|
|
46
|
-
},
|
|
44
|
+
// setup function removed; props are accessible via this.props in render
|
|
47
45
|
render() {
|
|
48
46
|
return <UI {...this.props} />;
|
|
49
47
|
},
|
package/src/icon/Icon.tsx
CHANGED
|
@@ -41,9 +41,7 @@ export default defineComponent({
|
|
|
41
41
|
},
|
|
42
42
|
// GenericProps may include other props, but these are the main ones from IconProps
|
|
43
43
|
},
|
|
44
|
-
setup
|
|
45
|
-
return { props };
|
|
46
|
-
},
|
|
44
|
+
// setup function removed; props are accessible via this.props in render
|
|
47
45
|
render() {
|
|
48
46
|
return <UI {...this.props} />;
|
|
49
47
|
},
|