plain-design 1.0.0-beta.39 → 1.0.0-beta.40

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "plain-design",
3
- "version": "1.0.0-beta.39",
3
+ "version": "1.0.0-beta.40",
4
4
  "description": "",
5
5
  "main": "dist/plain-design.min.js",
6
6
  "module": "dist/plain-design.commonjs.min.js",
@@ -110,7 +110,7 @@
110
110
  @include comp(input) {
111
111
  &:not(.input-multiple) {
112
112
  .input-box {
113
- padding-bottom: 4px;
113
+ padding-bottom: 3px;
114
114
  }
115
115
  }
116
116
  }
@@ -1,4 +1,5 @@
1
1
  import {setComponentPrefix} from "plain-design-composition";
2
+ import packageJson from '../../package.json';
2
3
 
3
4
  export {Application} from "./components/Application";
4
5
  export type {iApplicationConfiguration} from './components/Application/utils/application.utils';
@@ -208,3 +209,5 @@ export {useStyle, StyleProps, ThemeShape, ThemeSize, ThemeStatus} from './uses/u
208
209
  export type {tStyleComputed, UseStyleProvideData} from './uses/useStyle';
209
210
 
210
211
  setComponentPrefix(globalComponentPrefix);
212
+
213
+ export const version = packageJson.version;