@prom-ui/core 0.0.5 → 0.0.8

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.
Files changed (80) hide show
  1. package/Body/index.d.ts +3 -0
  2. package/Body/index.js +14 -0
  3. package/Body/package.json +9 -0
  4. package/Body/style.css +741 -0
  5. package/Box/index.d.ts +2 -0
  6. package/Box/index.js +20 -0
  7. package/Box/package.json +9 -0
  8. package/Box/style.css +9676 -0
  9. package/Button/index.d.ts +8 -0
  10. package/Button/index.js +87 -0
  11. package/Button/package.json +9 -0
  12. package/Button/style.css +3393 -0
  13. package/Checkbox/index.d.ts +8 -0
  14. package/Checkbox/index.js +99 -0
  15. package/Checkbox/package.json +10 -0
  16. package/Checkbox/style.css +133 -0
  17. package/Flex/index.d.ts +2 -0
  18. package/Flex/index.js +25 -0
  19. package/Flex/package.json +9 -0
  20. package/Flex/style.css +786 -0
  21. package/Grid/index.d.ts +2 -0
  22. package/Grid/index.js +25 -0
  23. package/Grid/package.json +9 -0
  24. package/Grid/style.css +7350 -0
  25. package/Icon/index.d.ts +12 -0
  26. package/Icon/index.js +79 -0
  27. package/{Test2 → Icon}/package.json +2 -2
  28. package/Icon/style.css +46 -0
  29. package/Image/index.d.ts +2 -0
  30. package/Image/index.js +20 -0
  31. package/Image/package.json +9 -0
  32. package/Image/style.css +664 -0
  33. package/Input/index.d.ts +23 -0
  34. package/Input/index.js +84 -0
  35. package/Input/package.json +9 -0
  36. package/Input/style.css +345 -0
  37. package/Line/index.d.ts +2 -0
  38. package/Line/index.js +20 -0
  39. package/Line/package.json +9 -0
  40. package/Line/style.css +138 -0
  41. package/Link/index.d.ts +2 -0
  42. package/Link/index.js +22 -0
  43. package/Link/package.json +9 -0
  44. package/Link/style.css +259 -0
  45. package/List/index.d.ts +2 -0
  46. package/List/index.js +25 -0
  47. package/List/package.json +9 -0
  48. package/List/style.css +312 -0
  49. package/Picture/index.d.ts +2 -0
  50. package/Picture/index.js +25 -0
  51. package/Picture/package.json +9 -0
  52. package/Picture/style.css +1426 -0
  53. package/Rating/index.d.ts +9 -0
  54. package/Rating/index.js +101 -0
  55. package/Rating/package.json +9 -0
  56. package/Rating/style.css +26 -0
  57. package/Skeleton/index.d.ts +12 -0
  58. package/Skeleton/index.js +113 -0
  59. package/Skeleton/package.json +9 -0
  60. package/Skeleton/style.css +145 -0
  61. package/Spinner/index.d.ts +9 -0
  62. package/Spinner/index.js +78 -0
  63. package/Spinner/package.json +9 -0
  64. package/Spinner/style.css +80 -0
  65. package/Text/index.d.ts +2 -0
  66. package/Text/index.js +20 -0
  67. package/Text/package.json +9 -0
  68. package/Text/style.css +840 -0
  69. package/Tumbler/index.d.ts +8 -0
  70. package/Tumbler/index.js +98 -0
  71. package/Tumbler/package.json +10 -0
  72. package/Tumbler/style.css +118 -0
  73. package/package.json +20 -3
  74. package/Test/index.d.ts +0 -1
  75. package/Test/index.js +0 -11
  76. package/Test/package.json +0 -6
  77. package/Test2/Components.d.ts +0 -2
  78. package/Test2/index.d.ts +0 -3
  79. package/Test2/index.js +0 -30
  80. package/Test2/style.css +0 -11
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ declare type Props = {
3
+ type?: 'checkbox' | 'radio';
4
+ className?: string;
5
+ loading?: boolean;
6
+ };
7
+ export declare const Checkbox: React.FC<Props>;
8
+ export {};
@@ -0,0 +1,99 @@
1
+ 'use strict';
2
+
3
+ require("./style.css");
4
+
5
+ Object.defineProperty(exports, '__esModule', { value: true });
6
+
7
+ var React = require('react');
8
+ var reactTransitionGroup = require('react-transition-group');
9
+ var PropTypes = require('prop-types');
10
+ var classNames = require('classnames');
11
+ var Spinner = require('@prom-ui/core/Spinner');
12
+
13
+ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
14
+
15
+ var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
16
+ var PropTypes__default = /*#__PURE__*/_interopDefaultLegacy(PropTypes);
17
+ var classNames__default = /*#__PURE__*/_interopDefaultLegacy(classNames);
18
+
19
+ /******************************************************************************
20
+ Copyright (c) Microsoft Corporation.
21
+
22
+ Permission to use, copy, modify, and/or distribute this software for any
23
+ purpose with or without fee is hereby granted.
24
+
25
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
26
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
27
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
28
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
29
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
30
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
31
+ PERFORMANCE OF THIS SOFTWARE.
32
+ ***************************************************************************** */
33
+
34
+ var __assign = function() {
35
+ __assign = Object.assign || function __assign(t) {
36
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
37
+ s = arguments[i];
38
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
39
+ }
40
+ return t;
41
+ };
42
+ return __assign.apply(this, arguments);
43
+ };
44
+
45
+ function __rest(s, e) {
46
+ var t = {};
47
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
48
+ t[p] = s[p];
49
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
50
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
51
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
52
+ t[p[i]] = s[p[i]];
53
+ }
54
+ return t;
55
+ }
56
+
57
+ var css = {"root":"Checkbox__root___JbPkR","view":"Checkbox__view___Smb1v","input":"Checkbox__input___-KDH8","inputLoading":"Checkbox__inputLoading___3-2zC","spinner":"Checkbox__spinner___K7NKz","spinnerEnterActive":"Checkbox__spinnerEnterActive___ASYih","spinnerEnterDone":"Checkbox__spinnerEnterDone___vsNQ-","spinnerExitActive":"Checkbox__spinnerExitActive___X-b7M","spinnerExitDone":"Checkbox__spinnerExitDone___MP3D6"};
58
+
59
+ var Checkbox = React.forwardRef(function (_a, ref) {
60
+ var _b;
61
+
62
+ var className = _a.className,
63
+ loading = _a.loading,
64
+ props = __rest(_a, ["className", "loading"]);
65
+
66
+ return React__default["default"].createElement("div", {
67
+ className: classNames__default["default"](css.root, className)
68
+ }, React__default["default"].createElement("input", __assign({
69
+ className: classNames__default["default"](css.input, (_b = {}, _b[css.inputLoading] = loading, _b)),
70
+ ref: ref,
71
+ disabled: loading
72
+ }, props)), React__default["default"].createElement("div", {
73
+ className: css.view
74
+ }, React__default["default"].createElement(reactTransitionGroup.CSSTransition, {
75
+ in: loading,
76
+ timeout: 100,
77
+ classNames: {
78
+ enterActive: css.spinnerEnterActive,
79
+ enterDone: css.spinnerEnterDone,
80
+ exitActive: css.spinnerExitActive,
81
+ exitDone: css.spinnerExitDone
82
+ },
83
+ unmountOnExit: true
84
+ }, React__default["default"].createElement(Spinner.Spinner, {
85
+ className: css.spinner,
86
+ width: '100%',
87
+ height: '100%'
88
+ }))));
89
+ });
90
+ Checkbox.propTypes = {
91
+ type: PropTypes__default["default"].oneOf(['checkbox', 'radio']),
92
+ loading: PropTypes__default["default"].bool
93
+ };
94
+ Checkbox.defaultProps = {
95
+ type: 'checkbox',
96
+ loading: false
97
+ };
98
+
99
+ exports.Checkbox = Checkbox;
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@prom-ui/core/Checkbox",
3
+ "version": "0.0.8",
4
+ "main": "index.js",
5
+ "types": "index.d.ts",
6
+ "dependencies": {
7
+ "classnames": "2.3.1",
8
+ "react-transition-group": "4.4.2"
9
+ }
10
+ }
@@ -0,0 +1,133 @@
1
+ .Checkbox__root___JbPkR {
2
+ display: block;
3
+ box-sizing: border-box;
4
+ width: 18px;
5
+ height: 18px;
6
+ position: relative;
7
+ margin: calc((var(--pds-line-height) - 18px) / 2) 0;
8
+ flex-shrink: 0;
9
+ }
10
+
11
+ .Checkbox__view___Smb1v {
12
+ width: 100%;
13
+ height: 100%;
14
+ position: relative
15
+ }
16
+
17
+ .Checkbox__view___Smb1v::before,
18
+ .Checkbox__view___Smb1v::after {
19
+ content: "";
20
+ position: absolute;
21
+ left: 0;
22
+ top: 0;
23
+ width: 100%;
24
+ height: 100%;
25
+ box-sizing: border-box;
26
+ transition: 100ms ease-in-out;
27
+ transition-property: border-radius, background-color, border-color, opacity;
28
+ }
29
+
30
+ .Checkbox__view___Smb1v::before {
31
+ border-radius: var(--pds-round-xxs);
32
+ border: 2px var(--black-400) solid;
33
+ background: var(--white);
34
+ }
35
+
36
+ .Checkbox__view___Smb1v::after {
37
+ background-repeat: no-repeat;
38
+ background-position: center;
39
+ opacity: 0;
40
+ }
41
+
42
+ .Checkbox__input___-KDH8 {
43
+ position: absolute;
44
+ left: 0;
45
+ top: 0;
46
+ width: 100%;
47
+ height: 100%;
48
+ z-index: 1;
49
+ -webkit-appearance: none;
50
+ -moz-appearance: none;
51
+ appearance: none;
52
+ opacity: 0;
53
+ padding: 0;
54
+ margin: 0;
55
+ cursor: pointer
56
+ }
57
+
58
+ .Checkbox__input___-KDH8:disabled {
59
+ cursor: default;
60
+ }
61
+
62
+ .Checkbox__input___-KDH8[type="checkbox"] + .Checkbox__view___Smb1v::after {
63
+ background-image: url("data:image/svg+xml,%3Csvg width='10' height='9' viewBox='0 0 10 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.807L3.64375 7.345L8.93125 1' stroke='%2301011B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
64
+ }
65
+
66
+ .Checkbox__input___-KDH8[type="radio"] + .Checkbox__view___Smb1v::before {
67
+ border-radius: 50%;
68
+ }
69
+
70
+ .Checkbox__input___-KDH8[type="radio"] + .Checkbox__view___Smb1v::after {
71
+ background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4' cy='4' r='4' fill='%2301011B'/%3E%3C/svg%3E");
72
+ }
73
+
74
+ .Checkbox__input___-KDH8:focus-visible + .Checkbox__view___Smb1v::before {
75
+ outline: var(--pds-round-xxs) auto Highlight;
76
+ outline: var(--pds-round-xxs) auto -webkit-focus-ring-color;
77
+ }
78
+
79
+ .Checkbox__input___-KDH8:checked + .Checkbox__view___Smb1v::before {
80
+ background-color: var(--yellow-500);
81
+ border-color: var(--yellow-500);
82
+ }
83
+
84
+ .Checkbox__input___-KDH8:checked + .Checkbox__view___Smb1v::after {
85
+ opacity: 1;
86
+ }
87
+
88
+ .Checkbox__input___-KDH8:disabled + .Checkbox__view___Smb1v::before {
89
+ background-color: var(--black-200);
90
+ border-color: var(--black-200);
91
+ color: var(--black-700);
92
+ }
93
+
94
+ .Checkbox__input___-KDH8.Checkbox__inputLoading___3-2zC + .Checkbox__view___Smb1v::before {
95
+ border-radius: 50%;
96
+ background-color: var(--white);
97
+ border-color: var(--black-400);
98
+ }
99
+
100
+ .Checkbox__input___-KDH8:checked:disabled + .Checkbox__view___Smb1v::after {
101
+ opacity: .5;
102
+ }
103
+
104
+ .Checkbox__spinner___K7NKz {
105
+ color: var(--violet-500);
106
+ opacity: 0;
107
+ transition: opacity 100ms ease-in-out;
108
+ }
109
+
110
+ .Checkbox__spinnerEnterActive___ASYih,
111
+ .Checkbox__spinnerEnterDone___vsNQ- {
112
+ opacity: 1;
113
+ }
114
+
115
+ .Checkbox__spinnerExitActive___X-b7M,
116
+ .Checkbox__spinnerExitDone___MP3D6 {
117
+ opacity: 0;
118
+ }
119
+
120
+ @media (hover) {
121
+ .Checkbox__input___-KDH8:hover + .Checkbox__view___Smb1v::before {
122
+ border-color: var(--black-500);
123
+ }
124
+ .Checkbox__input___-KDH8:checked:hover + .Checkbox__view___Smb1v::before {
125
+ border-color: var(--yellow-500);
126
+ }
127
+ .Checkbox__input___-KDH8:disabled:hover + .Checkbox__view___Smb1v::before {
128
+ border-color: var(--black-200);
129
+ }
130
+ .Checkbox__input___-KDH8.Checkbox__inputLoading___3-2zC:hover + .Checkbox__view___Smb1v::before {
131
+ border-color: var(--black-400);
132
+ }
133
+ }
@@ -0,0 +1,2 @@
1
+ import { Flex } from 'evokit-flex';
2
+ export { Flex };
package/Flex/index.js ADDED
@@ -0,0 +1,25 @@
1
+ 'use strict';
2
+
3
+ require("./style.css");
4
+
5
+ Object.defineProperty(exports, '__esModule', { value: true });
6
+
7
+ var evokitFlex = require('evokit-flex');
8
+
9
+ var css = {"ek-flex":"Flex__ek-flex___Ekgwv","ek-flex__item":"Flex__ek-flex__item___s97UX","ek-flex__item_display_block":"Flex__ek-flex__item_display_block___Rgs0P","ek-flex__item_display_none":"Flex__ek-flex__item_display_none___0zVpN","ek-flex__item_align_start":"Flex__ek-flex__item_align_start___u67AK","ek-flex__item_align_end":"Flex__ek-flex__item_align_end___K7fVg","ek-flex__item_align_center":"Flex__ek-flex__item_align_center___meKKt","ek-flex__item_align_baseline":"Flex__ek-flex__item_align_baseline___kZcLY","ek-flex__item_align_stretch":"Flex__ek-flex__item_align_stretch___oC0kP","ek-flex__item_order_0":"Flex__ek-flex__item_order_0___9ROY0","ek-flex__item_order_1":"Flex__ek-flex__item_order_1___oMPDD","ek-flex__item_order_2":"Flex__ek-flex__item_order_2___OHTuw","ek-flex__item_order_3":"Flex__ek-flex__item_order_3___tkTgx","ek-flex__item_order_4":"Flex__ek-flex__item_order_4___iVbXB","ek-flex__item_order_5":"Flex__ek-flex__item_order_5___Lxonp","ek-flex__item_order_6":"Flex__ek-flex__item_order_6___JOKUh","ek-flex__item_order_7":"Flex__ek-flex__item_order_7___-Flnq","ek-flex__item_order_8":"Flex__ek-flex__item_order_8___V-f-C","ek-flex__item_order_9":"Flex__ek-flex__item_order_9___gmeNu","ek-flex__item_order_10":"Flex__ek-flex__item_order_10___qQ8I3","ek-flex__item_empty_hidden":"Flex__ek-flex__item_empty_hidden___c7RIN","ek-flex_display_flex":"Flex__ek-flex_display_flex___VHsXs","ek-flex_display_inline-flex":"Flex__ek-flex_display_inline-flex___afsWs","ek-flex_display_none":"Flex__ek-flex_display_none___11fAI","ek-flex_content_start":"Flex__ek-flex_content_start___0ZDma","ek-flex_content-align_start":"Flex__ek-flex_content-align_start___RVq99","ek-flex_content-justify_start":"Flex__ek-flex_content-justify_start___PAy6n","ek-flex_content_end":"Flex__ek-flex_content_end___O7wqF","ek-flex_content-align_end":"Flex__ek-flex_content-align_end___Wb2Y-","ek-flex_content-justify_end":"Flex__ek-flex_content-justify_end___Eu-Ok","ek-flex_content_center":"Flex__ek-flex_content_center___8Z7vT","ek-flex_content-align_center":"Flex__ek-flex_content-align_center___vTTwi","ek-flex_content-justify_center":"Flex__ek-flex_content-justify_center___Ar-yr","ek-flex_content_between":"Flex__ek-flex_content_between___SFgsk","ek-flex_content-align_between":"Flex__ek-flex_content-align_between___gm2py","ek-flex_content-justify_between":"Flex__ek-flex_content-justify_between___GFMnf","ek-flex_content_around":"Flex__ek-flex_content_around___GOUeJ","ek-flex_content-align_around":"Flex__ek-flex_content-align_around___axBC0","ek-flex_content-justify_around":"Flex__ek-flex_content-justify_around___t4FVV","ek-flex_content_stretch":"Flex__ek-flex_content_stretch___2g2sA","ek-flex_content-align_stretch":"Flex__ek-flex_content-align_stretch___OxWlV","ek-flex_content-justify_stretch":"Flex__ek-flex_content-justify_stretch___tgNuU","ek-flex_items_start":"Flex__ek-flex_items_start___8hixr","ek-flex_items_end":"Flex__ek-flex_items_end___UZCez","ek-flex_items_center":"Flex__ek-flex_items_center___CSxkQ","ek-flex_items_baseline":"Flex__ek-flex_items_baseline___uulaD","ek-flex_items_stretch":"Flex__ek-flex_items_stretch___78TDd","ek-flex_direction_row":"Flex__ek-flex_direction_row___0Cdl5","ek-flex_direction_row-reverse":"Flex__ek-flex_direction_row-reverse___-4b05","ek-flex_direction_column":"Flex__ek-flex_direction_column___BrJgz","ek-flex_direction_column-reverse":"Flex__ek-flex_direction_column-reverse___PrAzv","ek-flex_wrap_nowrap":"Flex__ek-flex_wrap_nowrap___df3jW","ek-flex_wrap_wrap":"Flex__ek-flex_wrap_wrap___EDmnC","ek-flex_wrap_wrap-reverse":"Flex__ek-flex_wrap_wrap-reverse___z7Nop","ek-flex_height_auto":"Flex__ek-flex_height_auto___cLU-q","ek-flex_height_inherit":"Flex__ek-flex_height_inherit___trSbN","ek-flex_height_1-1":"Flex__ek-flex_height_1-1___7olBc","ek-flex__item_display_block@small":"Flex__ek-flex__item_display_block--small___O2otV","ek-flex__item_display_none@small":"Flex__ek-flex__item_display_none--small___wWV2y","ek-flex__item_align_start@small":"Flex__ek-flex__item_align_start--small___9tir2","ek-flex__item_align_end@small":"Flex__ek-flex__item_align_end--small___OAWVk","ek-flex__item_align_center@small":"Flex__ek-flex__item_align_center--small___z6o1V","ek-flex__item_align_baseline@small":"Flex__ek-flex__item_align_baseline--small___shWs-","ek-flex__item_align_stretch@small":"Flex__ek-flex__item_align_stretch--small___Bml-z","ek-flex__item_order_0@small":"Flex__ek-flex__item_order_0--small___Dkv2s","ek-flex__item_order_1@small":"Flex__ek-flex__item_order_1--small___iPvn0","ek-flex__item_order_2@small":"Flex__ek-flex__item_order_2--small___xg5uR","ek-flex__item_order_3@small":"Flex__ek-flex__item_order_3--small___5CzCg","ek-flex__item_order_4@small":"Flex__ek-flex__item_order_4--small___USXxd","ek-flex__item_order_5@small":"Flex__ek-flex__item_order_5--small___yB9Ez","ek-flex__item_order_6@small":"Flex__ek-flex__item_order_6--small___-9DaY","ek-flex__item_order_7@small":"Flex__ek-flex__item_order_7--small___eG6TW","ek-flex__item_order_8@small":"Flex__ek-flex__item_order_8--small___Ic7u4","ek-flex__item_order_9@small":"Flex__ek-flex__item_order_9--small___0klgH","ek-flex__item_order_10@small":"Flex__ek-flex__item_order_10--small___p1l3f","ek-flex__item_empty_hidden@small":"Flex__ek-flex__item_empty_hidden--small___IMLfb","ek-flex_display_flex@small":"Flex__ek-flex_display_flex--small___y1K5X","ek-flex_display_inline-flex@small":"Flex__ek-flex_display_inline-flex--small___arayJ","ek-flex_display_none@small":"Flex__ek-flex_display_none--small___h0GoR","ek-flex_content_start@small":"Flex__ek-flex_content_start--small___haLV9","ek-flex_content-align_start@small":"Flex__ek-flex_content-align_start--small___RFcr2","ek-flex_content-justify_start@small":"Flex__ek-flex_content-justify_start--small___-0zHa","ek-flex_content_end@small":"Flex__ek-flex_content_end--small___rJcNV","ek-flex_content-align_end@small":"Flex__ek-flex_content-align_end--small___4BTcT","ek-flex_content-justify_end@small":"Flex__ek-flex_content-justify_end--small___lwPTY","ek-flex_content_center@small":"Flex__ek-flex_content_center--small___gJkEW","ek-flex_content-align_center@small":"Flex__ek-flex_content-align_center--small___pf4FC","ek-flex_content-justify_center@small":"Flex__ek-flex_content-justify_center--small___3lgW5","ek-flex_content_between@small":"Flex__ek-flex_content_between--small___9dxmH","ek-flex_content-align_between@small":"Flex__ek-flex_content-align_between--small___M-oqH","ek-flex_content-justify_between@small":"Flex__ek-flex_content-justify_between--small___pHyeo","ek-flex_content_around@small":"Flex__ek-flex_content_around--small___S9lqT","ek-flex_content-align_around@small":"Flex__ek-flex_content-align_around--small___UQ2CB","ek-flex_content-justify_around@small":"Flex__ek-flex_content-justify_around--small___JThPg","ek-flex_content_stretch@small":"Flex__ek-flex_content_stretch--small___yJDe7","ek-flex_content-align_stretch@small":"Flex__ek-flex_content-align_stretch--small___ykoOL","ek-flex_content-justify_stretch@small":"Flex__ek-flex_content-justify_stretch--small___JPvN0","ek-flex_items_start@small":"Flex__ek-flex_items_start--small___mEp0Z","ek-flex_items_end@small":"Flex__ek-flex_items_end--small___t15jw","ek-flex_items_center@small":"Flex__ek-flex_items_center--small___gAFEO","ek-flex_items_baseline@small":"Flex__ek-flex_items_baseline--small___r6Q24","ek-flex_items_stretch@small":"Flex__ek-flex_items_stretch--small___Ro8dh","ek-flex_direction_row@small":"Flex__ek-flex_direction_row--small___kwOMV","ek-flex_direction_row-reverse@small":"Flex__ek-flex_direction_row-reverse--small___auY-N","ek-flex_direction_column@small":"Flex__ek-flex_direction_column--small___v733a","ek-flex_direction_column-reverse@small":"Flex__ek-flex_direction_column-reverse--small___Z62s8","ek-flex_wrap_nowrap@small":"Flex__ek-flex_wrap_nowrap--small___dTdfs","ek-flex_wrap_wrap@small":"Flex__ek-flex_wrap_wrap--small___f-dpo","ek-flex_wrap_wrap-reverse@small":"Flex__ek-flex_wrap_wrap-reverse--small___bbf4E","ek-flex_height_auto@small":"Flex__ek-flex_height_auto--small___8jj7X","ek-flex_height_inherit@small":"Flex__ek-flex_height_inherit--small___lj-1b","ek-flex_height_1-1@small":"Flex__ek-flex_height_1-1--small___gN00n","ek-flex__item_display_block@medium":"Flex__ek-flex__item_display_block--medium___tE3ph","ek-flex__item_display_none@medium":"Flex__ek-flex__item_display_none--medium___1AORx","ek-flex__item_align_start@medium":"Flex__ek-flex__item_align_start--medium___OJnb6","ek-flex__item_align_end@medium":"Flex__ek-flex__item_align_end--medium___PXld6","ek-flex__item_align_center@medium":"Flex__ek-flex__item_align_center--medium___DP6wi","ek-flex__item_align_baseline@medium":"Flex__ek-flex__item_align_baseline--medium___iqGRt","ek-flex__item_align_stretch@medium":"Flex__ek-flex__item_align_stretch--medium___HS3A-","ek-flex__item_order_0@medium":"Flex__ek-flex__item_order_0--medium___OEHum","ek-flex__item_order_1@medium":"Flex__ek-flex__item_order_1--medium___SjBQ3","ek-flex__item_order_2@medium":"Flex__ek-flex__item_order_2--medium___mauDx","ek-flex__item_order_3@medium":"Flex__ek-flex__item_order_3--medium___gwAc3","ek-flex__item_order_4@medium":"Flex__ek-flex__item_order_4--medium___u52Wb","ek-flex__item_order_5@medium":"Flex__ek-flex__item_order_5--medium___A5aa1","ek-flex__item_order_6@medium":"Flex__ek-flex__item_order_6--medium___ZqzPj","ek-flex__item_order_7@medium":"Flex__ek-flex__item_order_7--medium___HZ-1n","ek-flex__item_order_8@medium":"Flex__ek-flex__item_order_8--medium___W7kAu","ek-flex__item_order_9@medium":"Flex__ek-flex__item_order_9--medium___WIgMJ","ek-flex__item_order_10@medium":"Flex__ek-flex__item_order_10--medium___MW6-p","ek-flex__item_empty_hidden@medium":"Flex__ek-flex__item_empty_hidden--medium___whUtb","ek-flex_display_flex@medium":"Flex__ek-flex_display_flex--medium___zVu-k","ek-flex_display_inline-flex@medium":"Flex__ek-flex_display_inline-flex--medium___SSrzU","ek-flex_display_none@medium":"Flex__ek-flex_display_none--medium___pBzQW","ek-flex_content_start@medium":"Flex__ek-flex_content_start--medium___W5VT9","ek-flex_content-align_start@medium":"Flex__ek-flex_content-align_start--medium___OKV1N","ek-flex_content-justify_start@medium":"Flex__ek-flex_content-justify_start--medium___DAS0V","ek-flex_content_end@medium":"Flex__ek-flex_content_end--medium___x374T","ek-flex_content-align_end@medium":"Flex__ek-flex_content-align_end--medium___LwNv8","ek-flex_content-justify_end@medium":"Flex__ek-flex_content-justify_end--medium___iqCxW","ek-flex_content_center@medium":"Flex__ek-flex_content_center--medium___H0jQH","ek-flex_content-align_center@medium":"Flex__ek-flex_content-align_center--medium___BBium","ek-flex_content-justify_center@medium":"Flex__ek-flex_content-justify_center--medium___53yKG","ek-flex_content_between@medium":"Flex__ek-flex_content_between--medium___WmEI9","ek-flex_content-align_between@medium":"Flex__ek-flex_content-align_between--medium___93LNI","ek-flex_content-justify_between@medium":"Flex__ek-flex_content-justify_between--medium___t-ePT","ek-flex_content_around@medium":"Flex__ek-flex_content_around--medium___dRYXw","ek-flex_content-align_around@medium":"Flex__ek-flex_content-align_around--medium___dgopR","ek-flex_content-justify_around@medium":"Flex__ek-flex_content-justify_around--medium___blA1z","ek-flex_content_stretch@medium":"Flex__ek-flex_content_stretch--medium___BbXir","ek-flex_content-align_stretch@medium":"Flex__ek-flex_content-align_stretch--medium___AggRB","ek-flex_content-justify_stretch@medium":"Flex__ek-flex_content-justify_stretch--medium___FdeBE","ek-flex_items_start@medium":"Flex__ek-flex_items_start--medium___5ksg4","ek-flex_items_end@medium":"Flex__ek-flex_items_end--medium___Vycqb","ek-flex_items_center@medium":"Flex__ek-flex_items_center--medium___UNtsX","ek-flex_items_baseline@medium":"Flex__ek-flex_items_baseline--medium___TKBt-","ek-flex_items_stretch@medium":"Flex__ek-flex_items_stretch--medium___m4e3S","ek-flex_direction_row@medium":"Flex__ek-flex_direction_row--medium___4RHMd","ek-flex_direction_row-reverse@medium":"Flex__ek-flex_direction_row-reverse--medium___ogp2I","ek-flex_direction_column@medium":"Flex__ek-flex_direction_column--medium___r6hJj","ek-flex_direction_column-reverse@medium":"Flex__ek-flex_direction_column-reverse--medium___l3-L-","ek-flex_wrap_nowrap@medium":"Flex__ek-flex_wrap_nowrap--medium___TtLAa","ek-flex_wrap_wrap@medium":"Flex__ek-flex_wrap_wrap--medium___uZcW5","ek-flex_wrap_wrap-reverse@medium":"Flex__ek-flex_wrap_wrap-reverse--medium___h8dBc","ek-flex_height_auto@medium":"Flex__ek-flex_height_auto--medium___WLmSR","ek-flex_height_inherit@medium":"Flex__ek-flex_height_inherit--medium___qHWje","ek-flex_height_1-1@medium":"Flex__ek-flex_height_1-1--medium___8ElT-","ek-flex__item_display_block@large":"Flex__ek-flex__item_display_block--large___0YYUO","ek-flex__item_display_none@large":"Flex__ek-flex__item_display_none--large___ulwYD","ek-flex__item_align_start@large":"Flex__ek-flex__item_align_start--large___PLhAn","ek-flex__item_align_end@large":"Flex__ek-flex__item_align_end--large___q73ch","ek-flex__item_align_center@large":"Flex__ek-flex__item_align_center--large___SVumf","ek-flex__item_align_baseline@large":"Flex__ek-flex__item_align_baseline--large___25qMv","ek-flex__item_align_stretch@large":"Flex__ek-flex__item_align_stretch--large___2PT0C","ek-flex__item_order_0@large":"Flex__ek-flex__item_order_0--large___hTzvY","ek-flex__item_order_1@large":"Flex__ek-flex__item_order_1--large___CmLGR","ek-flex__item_order_2@large":"Flex__ek-flex__item_order_2--large___H9PaM","ek-flex__item_order_3@large":"Flex__ek-flex__item_order_3--large___lK2dk","ek-flex__item_order_4@large":"Flex__ek-flex__item_order_4--large___8HAcv","ek-flex__item_order_5@large":"Flex__ek-flex__item_order_5--large___aqiC8","ek-flex__item_order_6@large":"Flex__ek-flex__item_order_6--large___pj2tR","ek-flex__item_order_7@large":"Flex__ek-flex__item_order_7--large___PDD42","ek-flex__item_order_8@large":"Flex__ek-flex__item_order_8--large___h0V8p","ek-flex__item_order_9@large":"Flex__ek-flex__item_order_9--large___IzzhZ","ek-flex__item_order_10@large":"Flex__ek-flex__item_order_10--large___kDdwy","ek-flex__item_empty_hidden@large":"Flex__ek-flex__item_empty_hidden--large___QqfKH","ek-flex_display_flex@large":"Flex__ek-flex_display_flex--large___yeKsG","ek-flex_display_inline-flex@large":"Flex__ek-flex_display_inline-flex--large___UnoXn","ek-flex_display_none@large":"Flex__ek-flex_display_none--large___C3wO-","ek-flex_content_start@large":"Flex__ek-flex_content_start--large___PJbRs","ek-flex_content-align_start@large":"Flex__ek-flex_content-align_start--large___FHHns","ek-flex_content-justify_start@large":"Flex__ek-flex_content-justify_start--large___6uxvn","ek-flex_content_end@large":"Flex__ek-flex_content_end--large___AW2iT","ek-flex_content-align_end@large":"Flex__ek-flex_content-align_end--large___t0ytb","ek-flex_content-justify_end@large":"Flex__ek-flex_content-justify_end--large___tI9QF","ek-flex_content_center@large":"Flex__ek-flex_content_center--large___NtwPc","ek-flex_content-align_center@large":"Flex__ek-flex_content-align_center--large___1dkcu","ek-flex_content-justify_center@large":"Flex__ek-flex_content-justify_center--large___N4UyT","ek-flex_content_between@large":"Flex__ek-flex_content_between--large___LvU8g","ek-flex_content-align_between@large":"Flex__ek-flex_content-align_between--large___0uUSf","ek-flex_content-justify_between@large":"Flex__ek-flex_content-justify_between--large___ybZf1","ek-flex_content_around@large":"Flex__ek-flex_content_around--large___LqG4K","ek-flex_content-align_around@large":"Flex__ek-flex_content-align_around--large___7MjpW","ek-flex_content-justify_around@large":"Flex__ek-flex_content-justify_around--large___1jpHy","ek-flex_content_stretch@large":"Flex__ek-flex_content_stretch--large___oSGCv","ek-flex_content-align_stretch@large":"Flex__ek-flex_content-align_stretch--large___EJd1M","ek-flex_content-justify_stretch@large":"Flex__ek-flex_content-justify_stretch--large___xiO99","ek-flex_items_start@large":"Flex__ek-flex_items_start--large___Jo-HX","ek-flex_items_end@large":"Flex__ek-flex_items_end--large___lumaU","ek-flex_items_center@large":"Flex__ek-flex_items_center--large___Fjzu3","ek-flex_items_baseline@large":"Flex__ek-flex_items_baseline--large___m9DaV","ek-flex_items_stretch@large":"Flex__ek-flex_items_stretch--large___-VU-k","ek-flex_direction_row@large":"Flex__ek-flex_direction_row--large___dD4DB","ek-flex_direction_row-reverse@large":"Flex__ek-flex_direction_row-reverse--large___14DJ5","ek-flex_direction_column@large":"Flex__ek-flex_direction_column--large___mFM7l","ek-flex_direction_column-reverse@large":"Flex__ek-flex_direction_column-reverse--large___xH3dk","ek-flex_wrap_nowrap@large":"Flex__ek-flex_wrap_nowrap--large___Gyen6","ek-flex_wrap_wrap@large":"Flex__ek-flex_wrap_wrap--large___QoA6P","ek-flex_wrap_wrap-reverse@large":"Flex__ek-flex_wrap_wrap-reverse--large___gBHir","ek-flex_height_auto@large":"Flex__ek-flex_height_auto--large___zEhpy","ek-flex_height_inherit@large":"Flex__ek-flex_height_inherit--large___gRq8f","ek-flex_height_1-1@large":"Flex__ek-flex_height_1-1--large___26-gt"};
10
+
11
+ evokitFlex.Flex.defaultProps = {
12
+ 'flex-preset': {
13
+ css: css
14
+ }
15
+ };
16
+ evokitFlex.Flex.Item.defaultProps = {
17
+ 'flex-item-preset': {
18
+ css: css
19
+ }
20
+ };
21
+
22
+ Object.defineProperty(exports, 'Flex', {
23
+ enumerable: true,
24
+ get: function () { return evokitFlex.Flex; }
25
+ });
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "@prom-ui/core/Flex",
3
+ "version": "0.0.8",
4
+ "main": "index.js",
5
+ "types": "index.d.ts",
6
+ "dependencies": {
7
+ "evokit-flex": "3.2.1"
8
+ }
9
+ }