@prom-ui/core 0.0.5 → 0.0.6
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/Body/index.d.ts +3 -0
- package/Body/index.js +14 -0
- package/Body/package.json +9 -0
- package/Body/style.css +741 -0
- package/Box/index.d.ts +2 -0
- package/Box/index.js +20 -0
- package/Box/package.json +9 -0
- package/Box/style.css +9676 -0
- package/Button/index.d.ts +8 -0
- package/Button/index.js +87 -0
- package/Button/package.json +10 -0
- package/Button/style.css +3393 -0
- package/Flex/index.d.ts +2 -0
- package/Flex/index.js +25 -0
- package/Flex/package.json +9 -0
- package/Flex/style.css +786 -0
- package/Grid/index.d.ts +2 -0
- package/Grid/index.js +25 -0
- package/Grid/package.json +9 -0
- package/Grid/style.css +7350 -0
- package/Image/index.d.ts +2 -0
- package/Image/index.js +20 -0
- package/Image/package.json +9 -0
- package/Image/style.css +664 -0
- package/Line/index.d.ts +2 -0
- package/Line/index.js +20 -0
- package/Line/package.json +9 -0
- package/Line/style.css +138 -0
- package/Link/index.d.ts +2 -0
- package/Link/index.js +22 -0
- package/Link/package.json +9 -0
- package/Link/style.css +259 -0
- package/List/index.d.ts +2 -0
- package/List/index.js +25 -0
- package/List/package.json +9 -0
- package/List/style.css +312 -0
- package/Picture/index.d.ts +2 -0
- package/Picture/index.js +25 -0
- package/Picture/package.json +9 -0
- package/Picture/style.css +1426 -0
- package/Spinner/index.d.ts +8 -0
- package/Spinner/index.js +78 -0
- package/{Test2 → Spinner}/package.json +2 -2
- package/Spinner/style.css +80 -0
- package/Text/index.d.ts +2 -0
- package/Text/index.js +20 -0
- package/Text/package.json +9 -0
- package/Text/style.css +840 -0
- package/package.json +16 -3
- package/Test/index.d.ts +0 -1
- package/Test/index.js +0 -11
- package/Test/package.json +0 -6
- package/Test2/Components.d.ts +0 -2
- package/Test2/index.d.ts +0 -3
- package/Test2/index.js +0 -30
- package/Test2/style.css +0 -11
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prom-ui/core",
|
|
3
3
|
"author": "e.marchenko",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.6",
|
|
5
5
|
"description": "core ui blocks",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"prebuild": "rm -rf dist && mkdir dist && cp -v package.json README.md CHANGELOG.md dist",
|
|
@@ -20,10 +20,23 @@
|
|
|
20
20
|
"directory": "dist"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"
|
|
23
|
+
"@prom-ui/core": "file:./src",
|
|
24
|
+
"evokit": "3.2.3",
|
|
25
|
+
"evokit-body": "3.2.0",
|
|
26
|
+
"evokit-box": "3.4.0",
|
|
27
|
+
"evokit-button": "3.0.1",
|
|
28
|
+
"evokit-flex": "3.2.1",
|
|
29
|
+
"evokit-grid": "3.3.0",
|
|
30
|
+
"evokit-image": "3.2.0",
|
|
31
|
+
"evokit-line": "3.1.0",
|
|
32
|
+
"evokit-link": "3.2.0",
|
|
33
|
+
"evokit-list": "3.3.0",
|
|
34
|
+
"evokit-picture": "3.2.0",
|
|
35
|
+
"evokit-text": "3.2.0"
|
|
24
36
|
},
|
|
25
37
|
"peerDependencies": {
|
|
38
|
+
"prop-types": "*",
|
|
26
39
|
"react": "*"
|
|
27
40
|
},
|
|
28
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "f5b7b3226807f230cd6bbfe0f0270f43185159f7"
|
|
29
42
|
}
|
package/Test/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const Test: () => void;
|
package/Test/index.js
DELETED
package/Test/package.json
DELETED
package/Test2/Components.d.ts
DELETED
package/Test2/index.d.ts
DELETED
package/Test2/index.js
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
require("./style.css");
|
|
4
|
-
|
|
5
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
6
|
-
|
|
7
|
-
var evokit = require('evokit');
|
|
8
|
-
var React = require('react');
|
|
9
|
-
|
|
10
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
11
|
-
|
|
12
|
-
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
|
13
|
-
|
|
14
|
-
var css$1 = {"root":"Components_root__RHtJ4"};
|
|
15
|
-
|
|
16
|
-
var Components = function () {
|
|
17
|
-
return React__default["default"].createElement("div", {
|
|
18
|
-
className: css$1.root
|
|
19
|
-
}, "\u043F\u0440\u0438\u0432\u0435\u0442");
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
var css = {"ek-myblock":"Test2_ek-myblock__c2Y4J","ek-myblock_color_red":"Test2_ek-myblock_color_red__H5exA"};
|
|
23
|
-
|
|
24
|
-
var Test2 = evokit.createBlock('div', 'myblock', ['color'], {
|
|
25
|
-
css: css
|
|
26
|
-
});
|
|
27
|
-
var ComponentsText = Components;
|
|
28
|
-
|
|
29
|
-
exports.ComponentsText = ComponentsText;
|
|
30
|
-
exports.Test2 = Test2;
|