@homecode/ui 4.27.17 → 4.27.20
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/dist/esm/src/components/Input/Input.js +20 -3
- package/dist/esm/src/components/Popup/Popup.styl.js +1 -1
- package/dist/esm/src/components/Scroll/Scroll.styl.js +1 -1
- package/dist/esm/src/components/Select/Select.styl.js +2 -2
- package/dist/esm/types/src/components/Icon/Icon.d.ts +92 -86
- package/dist/esm/types/src/components/Icon/icons/index.d.ts +92 -91
- package/dist/esm/types/src/components/Notifications/Notifications.d.ts +3 -2
- package/package.json +1 -1
|
@@ -68,7 +68,24 @@ const Input = forwardRef((props, ref) => {
|
|
|
68
68
|
return val;
|
|
69
69
|
};
|
|
70
70
|
const onTextareaPaste = e => {
|
|
71
|
-
//
|
|
71
|
+
// Prevent default paste behavior to strip formatting
|
|
72
|
+
e.preventDefault();
|
|
73
|
+
// Get plain text from clipboard
|
|
74
|
+
const text = (e.clipboardData || window.clipboardData)?.getData('text/plain') || '';
|
|
75
|
+
// Insert plain text at cursor position
|
|
76
|
+
if (document.queryCommandSupported('insertText')) {
|
|
77
|
+
document.execCommand('insertText', false, text);
|
|
78
|
+
}
|
|
79
|
+
else {
|
|
80
|
+
// Fallback for older browsers
|
|
81
|
+
const selection = window.getSelection();
|
|
82
|
+
if (!selection.rangeCount)
|
|
83
|
+
return;
|
|
84
|
+
selection.deleteFromDocument();
|
|
85
|
+
selection.getRangeAt(0).insertNode(document.createTextNode(text));
|
|
86
|
+
selection.collapseToEnd();
|
|
87
|
+
}
|
|
88
|
+
// Update the value after paste
|
|
72
89
|
setTimeout(() => {
|
|
73
90
|
if (inputRef.current) {
|
|
74
91
|
const newValue = inputRef.current.innerText;
|
|
@@ -243,7 +260,7 @@ const Input = forwardRef((props, ref) => {
|
|
|
243
260
|
updateAutoComplete();
|
|
244
261
|
if (value !== inputValue) {
|
|
245
262
|
if (isTextArea)
|
|
246
|
-
setTextareaValue(String(value));
|
|
263
|
+
setTextareaValue(String(value ?? ''));
|
|
247
264
|
setInputValue(value);
|
|
248
265
|
}
|
|
249
266
|
if (autoFocus && inputRef.current) {
|
|
@@ -252,7 +269,7 @@ const Input = forwardRef((props, ref) => {
|
|
|
252
269
|
}, [value, autoFocus]);
|
|
253
270
|
useEffect(() => {
|
|
254
271
|
if (isTextArea)
|
|
255
|
-
setTextareaValue(String(value));
|
|
272
|
+
setTextareaValue(String(value ?? ''));
|
|
256
273
|
}, []);
|
|
257
274
|
const Control = isTextArea ? 'span' : 'input';
|
|
258
275
|
const classes = cn(S.root, isTextArea && S.isTextArea, S[`size-${size}`], S[`variant-${variant}`], isFocused && S.isFocused, error && S.hasError, hasClear && S.hasClear, disabled && S.isDisabled, round && S.round, className);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import styleInject from '../../../node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
|
-
var css_248z = ".Popup_root__uQ-fP{display:inline-block;position:relative}.Popup_contentWrapper__2yi-2{opacity:0;pointer-events:none;position:absolute}.Popup_contentWrapper__2yi-2.Popup_animating__kR0qF{transition:opacity .1s ease-out}.Popup_contentWrapper__2yi-2.Popup_isOpen__BRIdP{opacity:1;pointer-events:all}.Popup_contentWrapper__2yi-2.Popup_inline__1-l1S.Popup_isOpen__BRIdP{position:relative}.Popup_contentWrapper__2yi-2:not(.Popup_inline__1-l1S),.Popup_contentWrapper__2yi-2:not(.Popup_inline__1-l1S)>.Popup_content__e8Qyu{position:absolute}.Popup_trigger__jQNaQ{cursor:pointer}.Popup_trigger__jQNaQ.Popup_isOpen__BRIdP{position:relative;z-index:11}.Popup_trigger__jQNaQ.Popup_disabled__DlE9y{opacity:.4;pointer-events:none}.Popup_content__e8Qyu{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:var(--decent-color);box-shadow:inset 0 0 0 1px var(--accent-color-alpha-50);max-width:70vw;min-width:100%;overflow:hidden;position:relative;transform-origin:top center;
|
|
3
|
+
var css_248z = ".Popup_root__uQ-fP{display:inline-block;position:relative}.Popup_contentWrapper__2yi-2{opacity:0;pointer-events:none;position:absolute}.Popup_contentWrapper__2yi-2.Popup_animating__kR0qF{transition:opacity .1s ease-out}.Popup_contentWrapper__2yi-2.Popup_isOpen__BRIdP{opacity:1;pointer-events:all}.Popup_contentWrapper__2yi-2.Popup_inline__1-l1S.Popup_isOpen__BRIdP{position:relative}.Popup_contentWrapper__2yi-2:not(.Popup_inline__1-l1S),.Popup_contentWrapper__2yi-2:not(.Popup_inline__1-l1S)>.Popup_content__e8Qyu{position:absolute}.Popup_trigger__jQNaQ{cursor:pointer}.Popup_trigger__jQNaQ.Popup_isOpen__BRIdP{position:relative;z-index:11}.Popup_trigger__jQNaQ.Popup_disabled__DlE9y{opacity:.4;pointer-events:none}.Popup_content__e8Qyu{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:var(--decent-color);box-shadow:inset 0 0 0 1px var(--accent-color-alpha-50);max-width:70vw;min-width:100%;overflow:hidden;position:relative;transform-origin:top center;z-index:11}.Popup_content__e8Qyu:before{background-color:var(--accent-color-alpha-50);bottom:0;content:\"\";left:0;pointer-events:none;position:absolute;right:0;top:0}.Popup_content__e8Qyu.Popup_blur__1hfU8{-webkit-backdrop-filter:blur(50px);backdrop-filter:blur(50px);background-color:var(--decent-color-alpha-500)}.Popup_content__e8Qyu.Popup_size-s__UmixP{border-radius:4px}.Popup_content__e8Qyu.Popup_size-s__UmixP.Popup_round__7rD1m{border-radius:15px}.Popup_content__e8Qyu.Popup_size-m__FYpTL{border-radius:6px}.Popup_content__e8Qyu.Popup_size-m__FYpTL.Popup_round__7rD1m{border-radius:20px}.Popup_content__e8Qyu.Popup_size-l__BTS57{border-radius:8px}.Popup_content__e8Qyu.Popup_size-l__BTS57.Popup_round__7rD1m{border-radius:25px}.Popup_content__e8Qyu.Popup_elevation-1__vmP3e{box-shadow:inset 0 0 0 1px var(--accent-color-alpha-50),0 0 var(--indent-s) 2px var(--decent-color-alpha-500)}.Popup_content__e8Qyu.Popup_elevation-2__Ci4sI{box-shadow:inset 0 0 0 1px var(--accent-color-alpha-50),0 0 var(--indent-m) 2px var(--decent-color-alpha-500)}.Popup_content__e8Qyu.Popup_outlined__g3cJV:after{border-radius:inherit;bottom:0;content:\"\";left:0;pointer-events:none;position:absolute;right:0;top:0}.Popup_isOpen__BRIdP .Popup_content__e8Qyu{opacity:1;pointer-events:all;transform:scaleX(1)}.Popup_animating__kR0qF{transition:70ms ease-out;transition-property:transform,opacity,margin}.Popup_axis-top__BaLgG{bottom:100%}.Popup_axis-bottom__hZwwr{top:100%}.Popup_axis-right__LMYVy{left:100%}.Popup_axis-left__SFKm-{right:100%}.Popup_float-top__8SQAu{bottom:0}.Popup_float-right__mdm-3{left:0}.Popup_float-bottom__7flve{top:0}.Popup_float-left__tz7fX{right:0}.Popup_axis-bottom__hZwwr,.Popup_axis-top__BaLgG{transform:scaleY(.5)}.Popup_axis-bottom__hZwwr.Popup_float-middle__Dmnn1,.Popup_axis-top__BaLgG.Popup_float-middle__Dmnn1{left:50%;transform:translateX(-50%) scaleY(.5)}.Popup_isOpen__BRIdP .Popup_axis-bottom__hZwwr.Popup_float-middle__Dmnn1,.Popup_isOpen__BRIdP .Popup_axis-top__BaLgG.Popup_float-middle__Dmnn1{transform:translateX(-50%) scaleX(1)}.Popup_axis-left__SFKm-,.Popup_axis-right__LMYVy{transform:scaleX(.5)}.Popup_axis-left__SFKm-.Popup_float-middle__Dmnn1,.Popup_axis-right__LMYVy.Popup_float-middle__Dmnn1{top:50%;transform:translateY(-50%) scaleX(.5)}.Popup_isOpen__BRIdP .Popup_axis-left__SFKm-.Popup_float-middle__Dmnn1,.Popup_isOpen__BRIdP .Popup_axis-right__LMYVy.Popup_float-middle__Dmnn1{transform:translateY(-50%) scaleX(1)}.Popup_axis-top__BaLgG.Popup_float-middle__Dmnn1{transform-origin:bottom center}.Popup_axis-top__BaLgG.Popup_float-right__mdm-3{transform-origin:bottom left}.Popup_axis-top__BaLgG.Popup_float-left__tz7fX{transform-origin:bottom right}.Popup_axis-bottom__hZwwr.Popup_float-middle__Dmnn1{transform-origin:top center}.Popup_axis-bottom__hZwwr.Popup_float-right__mdm-3{transform-origin:top left}.Popup_axis-bottom__hZwwr.Popup_float-left__tz7fX{transform-origin:top right}.Popup_axis-right__LMYVy.Popup_float-middle__Dmnn1{transform-origin:center left}.Popup_axis-right__LMYVy.Popup_float-top__8SQAu{transform-origin:bottom left}.Popup_axis-right__LMYVy.Popup_float-bottom__7flve{transform-origin:top left}.Popup_axis-left__SFKm-.Popup_float-middle__Dmnn1{transform-origin:center right}.Popup_axis-left__SFKm-.Popup_float-top__8SQAu{transform-origin:bottom right}.Popup_axis-left__SFKm-.Popup_float-bottom__7flve{transform-origin:top right}";
|
|
4
4
|
var S = {"root":"Popup_root__uQ-fP","contentWrapper":"Popup_contentWrapper__2yi-2","animating":"Popup_animating__kR0qF","isOpen":"Popup_isOpen__BRIdP","inline":"Popup_inline__1-l1S","content":"Popup_content__e8Qyu","trigger":"Popup_trigger__jQNaQ","disabled":"Popup_disabled__DlE9y","blur":"Popup_blur__1hfU8","size-s":"Popup_size-s__UmixP","round":"Popup_round__7rD1m","size-m":"Popup_size-m__FYpTL","size-l":"Popup_size-l__BTS57","elevation-1":"Popup_elevation-1__vmP3e","elevation-2":"Popup_elevation-2__Ci4sI","outlined":"Popup_outlined__g3cJV","axis-top":"Popup_axis-top__BaLgG","axis-bottom":"Popup_axis-bottom__hZwwr","axis-right":"Popup_axis-right__LMYVy","axis-left":"Popup_axis-left__SFKm-","float-top":"Popup_float-top__8SQAu","float-right":"Popup_float-right__mdm-3","float-bottom":"Popup_float-bottom__7flve","float-left":"Popup_float-left__tz7fX","float-middle":"Popup_float-middle__Dmnn1"};
|
|
5
5
|
styleInject(css_248z);
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import styleInject from '../../../node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
|
-
var css_248z = ".Scroll_root__NNx5K{--hide-delay:0.3s;display:flex;position:relative}.Scroll_inner__DmxTb{-webkit-overflow-scrolling:touch;-ms-overflow-style:none;overflow:hidden;position:relative;scrollbar-width:none;transition:
|
|
3
|
+
var css_248z = ".Scroll_root__NNx5K{--hide-delay:0.3s;display:flex;position:relative}.Scroll_inner__DmxTb{-webkit-overflow-scrolling:touch;-ms-overflow-style:none;overflow:hidden;position:relative;scrollbar-width:none;transition:-webkit-mask-image .3s ease-out;transition:mask-image .3s ease-out;transition:mask-image .3s ease-out,-webkit-mask-image .3s ease-out;width:100%}.Scroll_inner__DmxTb.Scroll_smooth__2vqKe{scroll-behavior:smooth}.Scroll_inner__DmxTb::-webkit-scrollbar{display:none}.Scroll_y__2xWol .Scroll_inner__DmxTb{max-height:100%;overflow-y:auto}.Scroll_x__--Ycm .Scroll_inner__DmxTb{max-width:100%;overflow-x:auto}.Scroll_fadeSize-s__WeI0f .Scroll_inner__DmxTb{--fade-size:10px}.Scroll_fadeSize-m__Hb-1p .Scroll_inner__DmxTb{--fade-size:16px}.Scroll_fadeSize-l__E0CbA .Scroll_inner__DmxTb{--fade-size:20px}.Scroll_fadeSize-xl__jcYk0 .Scroll_inner__DmxTb{--fade-size:30px}.Scroll_y__2xWol .Scroll_inner__DmxTb.Scroll_hasOffsetTop__zEkUg.Scroll_hasOffsetBottom__S2rCM{-webkit-mask-image:linear-gradient(to bottom,transparent,#000 var(--fade-size),#000 calc(100% - var(--fade-size)),transparent);mask-image:linear-gradient(to bottom,transparent,#000 var(--fade-size),#000 calc(100% - var(--fade-size)),transparent)}.Scroll_y__2xWol .Scroll_inner__DmxTb.Scroll_hasOffsetTop__zEkUg{-webkit-mask-image:linear-gradient(to bottom,transparent,#000 var(--fade-size));mask-image:linear-gradient(to bottom,transparent,#000 var(--fade-size))}.Scroll_y__2xWol .Scroll_inner__DmxTb.Scroll_hasOffsetBottom__S2rCM{-webkit-mask-image:linear-gradient(to top,transparent,#000 var(--fade-size));mask-image:linear-gradient(to top,transparent,#000 var(--fade-size))}.Scroll_x__--Ycm .Scroll_inner__DmxTb.Scroll_hasOffsetLeft__WWEyC.Scroll_hasOffsetRight__HhJWt{-webkit-mask-image:linear-gradient(to right,transparent,#000 var(--fade-size),#000 calc(100% - var(--fade-size)),transparent);mask-image:linear-gradient(to right,transparent,#000 var(--fade-size),#000 calc(100% - var(--fade-size)),transparent)}.Scroll_x__--Ycm .Scroll_inner__DmxTb.Scroll_hasOffsetLeft__WWEyC{-webkit-mask-image:linear-gradient(to right,transparent,#000 var(--fade-size));mask-image:linear-gradient(to right,transparent,#000 var(--fade-size))}.Scroll_x__--Ycm .Scroll_inner__DmxTb.Scroll_hasOffsetRight__HhJWt{-webkit-mask-image:linear-gradient(to left,transparent,#000 var(--fade-size));mask-image:linear-gradient(to left,transparent,#000 var(--fade-size))}.Scroll_thumb__ccEPj{background-color:var(--accent-color-alpha-200);border-radius:1px;position:absolute;transform-origin:center;transition:background-color .1s ease-out}.Scroll_y__2xWol>.Scroll_thumb__ccEPj{min-height:30px;top:0;width:100%}.Scroll_x__--Ycm>.Scroll_thumb__ccEPj{height:100%;left:0;min-width:30px}.Scroll_bar__6CL7R{border-radius:2px;cursor:pointer;overscroll-behavior:contain;position:absolute;touch-action:none;transition:.1s opacity var(--hide-delay) ease-out;z-index:2}.Scroll_autoHide__URLqx>.Scroll_bar__6CL7R{opacity:0;transition:.3s opacity calc(var(--hide-delay)*.6) ease-out}.Scroll_bar__6CL7R:before{content:\"\";pointer-events:none;position:absolute;transition:.3s background-color var(--hide-delay) ease-out}.Scroll_bar__6CL7R.Scroll_isActive__Nkkmi,.Scroll_isDesktop__7r-bH .Scroll_bar__6CL7R:hover{opacity:1;transition-delay:0s;z-index:1}.Scroll_bar__6CL7R.Scroll_isActive__Nkkmi:before,.Scroll_isDesktop__7r-bH .Scroll_bar__6CL7R:hover:before{background-color:var(--accent-color-alpha-100)}.Scroll_bar__6CL7R.Scroll_isActive__Nkkmi .Scroll_thumb__ccEPj,.Scroll_isDesktop__7r-bH .Scroll_bar__6CL7R:hover .Scroll_thumb__ccEPj{background-color:var(--active-color)}.Scroll_isScrolling__yV2Pj .Scroll_bar__6CL7R{opacity:1;transition:none}.Scroll_bar__6CL7R.Scroll_y__2xWol{bottom:8px;right:0;top:8px}.Scroll_isTouch__Vb2mT .Scroll_bar__6CL7R.Scroll_y__2xWol{width:32px}.Scroll_bar__6CL7R.Scroll_y__2xWol .Scroll_thumb__ccEPj,.Scroll_bar__6CL7R.Scroll_y__2xWol:before{right:0}.Scroll_bar__6CL7R.Scroll_y__2xWol:before{height:100%;width:16px}.Scroll_bar__6CL7R.Scroll_x__--Ycm{bottom:0;height:16px;left:8px;right:8px}.Scroll_isTouch__Vb2mT .Scroll_bar__6CL7R.Scroll_x__--Ycm{height:32px}.Scroll_bar__6CL7R.Scroll_x__--Ycm .Scroll_thumb__ccEPj,.Scroll_bar__6CL7R.Scroll_x__--Ycm:before{bottom:0}.Scroll_bar__6CL7R.Scroll_x__--Ycm:before{width:100%}.Scroll_bar__6CL7R.Scroll_x__--Ycm{height:32px}.Scroll_bar__6CL7R.Scroll_x__--Ycm .Scroll_thumb__ccEPj,.Scroll_bar__6CL7R.Scroll_x__--Ycm:before{top:50%;transform:translateY(-50%)}.Scroll_size-s__px8sG>.Scroll_bar__6CL7R.Scroll_x__--Ycm .Scroll_thumb__ccEPj,.Scroll_size-s__px8sG>.Scroll_bar__6CL7R.Scroll_x__--Ycm:before{border-radius:.5px;height:1px}.Scroll_size-m__gfTwB>.Scroll_bar__6CL7R.Scroll_x__--Ycm .Scroll_thumb__ccEPj,.Scroll_size-m__gfTwB>.Scroll_bar__6CL7R.Scroll_x__--Ycm:before{border-radius:2.5px;height:5px}.Scroll_size-l__Pe4z7>.Scroll_bar__6CL7R.Scroll_x__--Ycm .Scroll_thumb__ccEPj,.Scroll_size-l__Pe4z7>.Scroll_bar__6CL7R.Scroll_x__--Ycm:before{border-radius:4.5px;height:9px}.Scroll_bar__6CL7R.Scroll_y__2xWol{width:32px}.Scroll_bar__6CL7R.Scroll_y__2xWol .Scroll_thumb__ccEPj,.Scroll_bar__6CL7R.Scroll_y__2xWol:before{right:50%;transform:translateX(50%)}.Scroll_size-s__px8sG>.Scroll_bar__6CL7R.Scroll_y__2xWol .Scroll_thumb__ccEPj,.Scroll_size-s__px8sG>.Scroll_bar__6CL7R.Scroll_y__2xWol:before{width:1px}.Scroll_size-m__gfTwB>.Scroll_bar__6CL7R.Scroll_y__2xWol .Scroll_thumb__ccEPj,.Scroll_size-m__gfTwB>.Scroll_bar__6CL7R.Scroll_y__2xWol:before{border-radius:2.5px;width:5px}.Scroll_size-l__Pe4z7>.Scroll_bar__6CL7R.Scroll_y__2xWol .Scroll_thumb__ccEPj,.Scroll_size-l__Pe4z7>.Scroll_bar__6CL7R.Scroll_y__2xWol:before{border-radius:4.5px;width:9px}";
|
|
4
4
|
var S = {"root":"Scroll_root__NNx5K","inner":"Scroll_inner__DmxTb","smooth":"Scroll_smooth__2vqKe","y":"Scroll_y__2xWol","x":"Scroll_x__--Ycm","fadeSize-s":"Scroll_fadeSize-s__WeI0f","fadeSize-m":"Scroll_fadeSize-m__Hb-1p","fadeSize-l":"Scroll_fadeSize-l__E0CbA","fadeSize-xl":"Scroll_fadeSize-xl__jcYk0","hasOffsetTop":"Scroll_hasOffsetTop__zEkUg","hasOffsetBottom":"Scroll_hasOffsetBottom__S2rCM","hasOffsetLeft":"Scroll_hasOffsetLeft__WWEyC","hasOffsetRight":"Scroll_hasOffsetRight__HhJWt","thumb":"Scroll_thumb__ccEPj","bar":"Scroll_bar__6CL7R","autoHide":"Scroll_autoHide__URLqx","isDesktop":"Scroll_isDesktop__7r-bH","isActive":"Scroll_isActive__Nkkmi","isScrolling":"Scroll_isScrolling__yV2Pj","isTouch":"Scroll_isTouch__Vb2mT","size-s":"Scroll_size-s__px8sG","size-m":"Scroll_size-m__gfTwB","size-l":"Scroll_size-l__Pe4z7"};
|
|
5
5
|
styleInject(css_248z);
|
|
6
6
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import styleInject from '../../../node_modules/style-inject/dist/style-inject.es.js';
|
|
2
2
|
|
|
3
|
-
var css_248z = ".Select_root__mjOjv{max-height:200px;max-width:100%;position:relative}.Select_root__mjOjv.Select_disabled__AlOQi{opacity:.4;pointer-events:none}.Select_additionalLabel__K0--Z{flex-grow:1;overflow:hidden;text-align:left;text-overflow:ellipsis}.Select_trigger__OH48f{position:relative;z-index:1}.Select_triggerArrow__1LEop{flex-shrink:0;margin-left:var(--indent-s);transition:transform .2s ease-out}.Select_size-m__jp7n- .Select_triggerArrow__1LEop{margin-left:var(--indent-m)}.Select_size-l__b4EEy .Select_triggerArrow__1LEop{margin-left:var(--indent-l)}.Select_triggerButton__lErtt .Select_triggerArrow__1LEop{margin-right:0}.Select_triggerArrow__1LEop.Select_isOpen__WlMUH{transform:rotateX(-180deg)}.Select_disabled__AlOQi .Select_triggerArrow__1LEop{color:var(--text3-color)}.Select_triggerButton__lErtt{justify-content:space-between;text-align:left;width:100%}.Select_triggerButton__lErtt.Select_hasTriggerArrow__vPLad>span{max-width:calc(100% - 22px)}.Select_triggerButton__lErtt.Select_isError__WJJLq{box-shadow:inset 0 0 0 2px var(--danger-color)}.Select_triggerButton__lErtt .Select_triggerButtonLabel__XXLzh{line-height:1.2em;opacity:0;overflow:hidden;text-overflow:ellipsis}.Select_triggerButton__lErtt .Select_triggerButtonLabel__XXLzh.Select_hasSelected__zQhBV{opacity:1}.Select_presetPanel__Yu94r{box-shadow:inset 0 -1px 0 var(--decent-color-alpha-100);display:flex;padding:5px}.Select_presetButton__BAl0q{flex-grow:1;justify-content:center}.Select_presetButton__BAl0q+.Select_presetButton__BAl0q{margin-left:8px}.Select_options__3C0-v{max-height:200px;overflow-y:auto}.keyboard .Select_options__3C0-v{pointer-events:none}.Select_option__iJkfJ{align-items:center;
|
|
4
|
-
var S = {"root":"Select_root__mjOjv","disabled":"Select_disabled__AlOQi","additionalLabel":"Select_additionalLabel__K0--Z","trigger":"Select_trigger__OH48f","triggerArrow":"Select_triggerArrow__1LEop","size-m":"Select_size-m__jp7n-","size-l":"Select_size-l__b4EEy","triggerButton":"Select_triggerButton__lErtt","isOpen":"Select_isOpen__WlMUH","hasTriggerArrow":"Select_hasTriggerArrow__vPLad","isError":"Select_isError__WJJLq","triggerButtonLabel":"Select_triggerButtonLabel__XXLzh","hasSelected":"Select_hasSelected__zQhBV","presetPanel":"Select_presetPanel__Yu94r","presetButton":"Select_presetButton__BAl0q","options":"Select_options__3C0-v","option":"Select_option__iJkfJ","
|
|
3
|
+
var css_248z = ".Select_root__mjOjv{max-height:200px;max-width:100%;position:relative}.Select_root__mjOjv.Select_disabled__AlOQi{opacity:.4;pointer-events:none}.Select_additionalLabel__K0--Z{flex-grow:1;overflow:hidden;text-align:left;text-overflow:ellipsis}.Select_trigger__OH48f{position:relative;z-index:1}.Select_triggerArrow__1LEop{flex-shrink:0;margin-left:var(--indent-s);transition:transform .2s ease-out}.Select_size-m__jp7n- .Select_triggerArrow__1LEop{margin-left:var(--indent-m)}.Select_size-l__b4EEy .Select_triggerArrow__1LEop{margin-left:var(--indent-l)}.Select_triggerButton__lErtt .Select_triggerArrow__1LEop{margin-right:0}.Select_triggerArrow__1LEop.Select_isOpen__WlMUH{transform:rotateX(-180deg)}.Select_disabled__AlOQi .Select_triggerArrow__1LEop{color:var(--text3-color)}.Select_triggerButton__lErtt{justify-content:space-between;text-align:left;width:100%}.Select_triggerButton__lErtt.Select_hasTriggerArrow__vPLad>span{max-width:calc(100% - 22px)}.Select_triggerButton__lErtt.Select_isError__WJJLq{box-shadow:inset 0 0 0 2px var(--danger-color)}.Select_triggerButton__lErtt .Select_triggerButtonLabel__XXLzh{line-height:1.2em;opacity:0;overflow:hidden;text-overflow:ellipsis}.Select_triggerButton__lErtt .Select_triggerButtonLabel__XXLzh.Select_hasSelected__zQhBV{opacity:1}.Select_presetPanel__Yu94r{box-shadow:inset 0 -1px 0 var(--decent-color-alpha-100);display:flex;padding:5px}.Select_presetButton__BAl0q{flex-grow:1;justify-content:center}.Select_presetButton__BAl0q+.Select_presetButton__BAl0q{margin-left:8px}.Select_options__3C0-v{max-height:200px;overflow-y:auto}.keyboard .Select_options__3C0-v{pointer-events:none}.Select_option__iJkfJ{align-items:center;cursor:pointer;display:flex;overflow:hidden;padding-bottom:0!important;padding-top:0!important;position:relative;text-align:left;text-overflow:ellipsis;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:nowrap;width:calc(100% - 2px)}.Select_isTree__SiTaD .Select_option__iJkfJ{min-height:36px}.Select_size-s__qBK9t .Select_option__iJkfJ{font-size:12px;height:26px;padding:0 14px}.Select_size-m__jp7n- .Select_option__iJkfJ{font-size:16px;height:34px;padding:0 16px}.Select_size-l__b4EEy .Select_option__iJkfJ{font-size:20px;height:42px;padding:0 18px}.Select_size-xl__0OerX .Select_option__iJkfJ{font-size:24px;height:50px;padding:0 20px}.Select_option__iJkfJ:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.Select_option__iJkfJ:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.Select_isTree__SiTaD .Select_option__iJkfJ{padding-left:30px}.Select_option__iJkfJ.Select_isGroup__aP1lY{color:var(--accent-color);font-weight:500;pointer-events:none}.Select_isExpanded__rG8R1>.Select_option__iJkfJ{display:flex}.Select_option__iJkfJ>span{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Select_option__iJkfJ:before{content:\"\";display:inline-block}.Select_option__iJkfJ.Select_level-0__vu03A:before{content:none}.Select_option__iJkfJ.Select_level-1__ozH2U:before{min-width:24px;width:24px}.Select_option__iJkfJ.Select_level-2__XDqeh:before{min-width:48px;width:48px}.Select_option__iJkfJ.Select_level-3__Bc9XS:before{min-width:72px;width:72px}.Select_option__iJkfJ.Select_level-4__KfQcQ:before{min-width:96px;width:96px}.Select_option__iJkfJ.Select_level-5__DGSDM:before{min-width:120px;width:120px}.Select_option__iJkfJ.Select_level-6__p688A:before{min-width:144px;width:144px}.Select_option__iJkfJ.Select_isIndeterminate__dy-xV,.Select_option__iJkfJ.Select_isSelected__n3ZeN{background-color:var(--active-color-alpha-500)}.keyboard .Select_option__iJkfJ.Select_isFocused__oZSgY,.pointer .Select_option__iJkfJ:hover{box-shadow:inset 100vw 0 0 0 var(--accent-color-alpha-200)}.Select_expandButton__UTwlR{background-color:transparent!important;display:flex;height:100%;justify-content:flex-end;overflow:visible;padding:0;position:relative;width:30px}.Select_expandButton__UTwlR:before{content:\"\";display:block;height:calc(100% + 20px);position:absolute;right:0;top:-10;width:100px}.Select_size-m__jp7n- .Select_expandButton__UTwlR{margin-left:-40px}.Select_size-l__b4EEy .Select_expandButton__UTwlR{margin-left:-46px}.Select_expandIcon__gWAIB{-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .1s ease-out}.Select_isExpanded__rG8R1 .Select_expandIcon__gWAIB{transform:rotate(90deg) translateZ(0)}.Select_expandButton__UTwlR:hover .Select_expandIcon__gWAIB{color:var(--primary-color)}@keyframes Select_fadeIn__QpAwZ{0%{opacity:0}10%{opacity:0}to{opacity:1}}";
|
|
4
|
+
var S = {"root":"Select_root__mjOjv","disabled":"Select_disabled__AlOQi","additionalLabel":"Select_additionalLabel__K0--Z","trigger":"Select_trigger__OH48f","triggerArrow":"Select_triggerArrow__1LEop","size-m":"Select_size-m__jp7n-","size-l":"Select_size-l__b4EEy","triggerButton":"Select_triggerButton__lErtt","isOpen":"Select_isOpen__WlMUH","hasTriggerArrow":"Select_hasTriggerArrow__vPLad","isError":"Select_isError__WJJLq","triggerButtonLabel":"Select_triggerButtonLabel__XXLzh","hasSelected":"Select_hasSelected__zQhBV","presetPanel":"Select_presetPanel__Yu94r","presetButton":"Select_presetButton__BAl0q","options":"Select_options__3C0-v","option":"Select_option__iJkfJ","isTree":"Select_isTree__SiTaD","size-s":"Select_size-s__qBK9t","size-xl":"Select_size-xl__0OerX","isGroup":"Select_isGroup__aP1lY","isExpanded":"Select_isExpanded__rG8R1","level-0":"Select_level-0__vu03A","level-1":"Select_level-1__ozH2U","level-2":"Select_level-2__XDqeh","level-3":"Select_level-3__Bc9XS","level-4":"Select_level-4__KfQcQ","level-5":"Select_level-5__DGSDM","level-6":"Select_level-6__p688A","isSelected":"Select_isSelected__n3ZeN","isIndeterminate":"Select_isIndeterminate__dy-xV","isFocused":"Select_isFocused__oZSgY","expandButton":"Select_expandButton__UTwlR","expandIcon":"Select_expandIcon__gWAIB","fadeIn":"Select_fadeIn__QpAwZ"};
|
|
5
5
|
styleInject(css_248z);
|
|
6
6
|
|
|
7
7
|
export { S as default };
|
|
@@ -1,91 +1,97 @@
|
|
|
1
|
+
/// <reference types="uilib/declarations" />
|
|
1
2
|
import * as T from './Icon.types';
|
|
2
3
|
export declare const icons: {
|
|
3
|
-
attach: () => Promise<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
4
|
+
attach: () => Promise<typeof import("*.svg")>;
|
|
5
|
+
apple: () => Promise<typeof import("*.svg")>;
|
|
6
|
+
arrowRight: () => Promise<typeof import("*.svg")>;
|
|
7
|
+
arrowLeft: () => Promise<typeof import("*.svg")>;
|
|
8
|
+
arrowUp: () => Promise<typeof import("*.svg")>;
|
|
9
|
+
arrowDown: () => Promise<typeof import("*.svg")>;
|
|
10
|
+
avatar: () => Promise<typeof import("*.svg")>;
|
|
11
|
+
bookmark: () => Promise<typeof import("*.svg")>;
|
|
12
|
+
bookmarkAdd: () => Promise<typeof import("*.svg")>;
|
|
13
|
+
brain: () => Promise<typeof import("*.svg")>;
|
|
14
|
+
brokenImage: () => Promise<typeof import("*.svg")>;
|
|
15
|
+
camera: () => Promise<typeof import("*.svg")>;
|
|
16
|
+
chat: () => Promise<typeof import("*.svg")>;
|
|
17
|
+
check: () => Promise<typeof import("*.svg")>;
|
|
18
|
+
close: () => Promise<typeof import("*.svg")>;
|
|
19
|
+
colors: () => Promise<typeof import("*.svg")>;
|
|
20
|
+
compass: () => Promise<typeof import("*.svg")>;
|
|
21
|
+
copy: () => Promise<typeof import("*.svg")>;
|
|
22
|
+
checkers: () => Promise<typeof import("*.svg")>;
|
|
23
|
+
chevronUp: () => Promise<typeof import("*.svg")>;
|
|
24
|
+
chevronDown: () => Promise<typeof import("*.svg")>;
|
|
25
|
+
chevronRight: () => Promise<typeof import("*.svg")>;
|
|
26
|
+
chevronLeft: () => Promise<typeof import("*.svg")>;
|
|
27
|
+
clearAll: () => Promise<typeof import("*.svg")>;
|
|
28
|
+
cubes: () => Promise<typeof import("*.svg")>;
|
|
29
|
+
delete: () => Promise<typeof import("*.svg")>;
|
|
30
|
+
draft: () => Promise<typeof import("*.svg")>;
|
|
31
|
+
dragHandlerHorizontal: () => Promise<typeof import("*.svg")>;
|
|
32
|
+
dragHandlerVertical: () => Promise<typeof import("*.svg")>;
|
|
33
|
+
edit: () => Promise<typeof import("*.svg")>;
|
|
34
|
+
email: () => Promise<typeof import("*.svg")>;
|
|
35
|
+
externalLink: () => Promise<typeof import("*.svg")>;
|
|
36
|
+
eye: () => Promise<typeof import("*.svg")>;
|
|
37
|
+
forward: () => Promise<typeof import("*.svg")>;
|
|
38
|
+
folder: () => Promise<typeof import("*.svg")>;
|
|
39
|
+
folderOpen: () => Promise<typeof import("*.svg")>;
|
|
40
|
+
fullscreen: () => Promise<typeof import("*.svg")>;
|
|
41
|
+
fullscreenExit: () => Promise<typeof import("*.svg")>;
|
|
42
|
+
function: () => Promise<typeof import("*.svg")>;
|
|
43
|
+
flyover: () => Promise<typeof import("*.svg")>;
|
|
44
|
+
gear: () => Promise<typeof import("*.svg")>;
|
|
45
|
+
geolocation: () => Promise<typeof import("*.svg")>;
|
|
46
|
+
globe: () => Promise<typeof import("*.svg")>;
|
|
47
|
+
google: () => Promise<typeof import("*.svg")>;
|
|
48
|
+
group: () => Promise<typeof import("*.svg")>;
|
|
49
|
+
github: () => Promise<typeof import("*.svg")>;
|
|
50
|
+
history: () => Promise<typeof import("*.svg")>;
|
|
51
|
+
image: () => Promise<typeof import("*.svg")>;
|
|
52
|
+
instagram: () => Promise<typeof import("*.svg")>;
|
|
53
|
+
home: () => Promise<typeof import("*.svg")>;
|
|
54
|
+
layers: () => Promise<typeof import("*.svg")>;
|
|
55
|
+
link: () => Promise<typeof import("*.svg")>;
|
|
56
|
+
loader: () => Promise<typeof import("*.svg")>;
|
|
57
|
+
lock: () => Promise<typeof import("*.svg")>;
|
|
58
|
+
lockOpen: () => Promise<typeof import("*.svg")>;
|
|
59
|
+
map: () => Promise<typeof import("*.svg")>;
|
|
60
|
+
menu: () => Promise<typeof import("*.svg")>;
|
|
61
|
+
mic: () => Promise<typeof import("*.svg")>;
|
|
62
|
+
micMuted: () => Promise<typeof import("*.svg")>;
|
|
63
|
+
minus: () => Promise<typeof import("*.svg")>;
|
|
64
|
+
moreVertical: () => Promise<typeof import("*.svg")>;
|
|
65
|
+
moreHorizontal: () => Promise<typeof import("*.svg")>;
|
|
66
|
+
output: () => Promise<typeof import("*.svg")>;
|
|
67
|
+
pause: () => Promise<typeof import("*.svg")>;
|
|
68
|
+
play: () => Promise<typeof import("*.svg")>;
|
|
69
|
+
plus: () => Promise<typeof import("*.svg")>;
|
|
70
|
+
redo: () => Promise<typeof import("*.svg")>;
|
|
71
|
+
undo: () => Promise<typeof import("*.svg")>;
|
|
72
|
+
usage: () => Promise<typeof import("*.svg")>;
|
|
73
|
+
requiredStar: () => Promise<typeof import("*.svg")>;
|
|
74
|
+
rewind: () => Promise<typeof import("*.svg")>;
|
|
75
|
+
rocket: () => Promise<typeof import("*.svg")>;
|
|
76
|
+
route: () => Promise<typeof import("*.svg")>;
|
|
77
|
+
routeFrom: () => Promise<typeof import("*.svg")>;
|
|
78
|
+
routeTo: () => Promise<typeof import("*.svg")>;
|
|
79
|
+
save: () => Promise<typeof import("*.svg")>;
|
|
80
|
+
search: () => Promise<typeof import("*.svg")>;
|
|
81
|
+
send: () => Promise<typeof import("*.svg")>;
|
|
82
|
+
settings: () => Promise<typeof import("*.svg")>;
|
|
83
|
+
shoppingBag: () => Promise<typeof import("*.svg")>;
|
|
84
|
+
smile: () => Promise<typeof import("*.svg")>;
|
|
85
|
+
soundWave: () => Promise<typeof import("*.svg")>;
|
|
86
|
+
sparks: () => Promise<typeof import("*.svg")>;
|
|
87
|
+
star: () => Promise<typeof import("*.svg")>;
|
|
88
|
+
stop: () => Promise<typeof import("*.svg")>;
|
|
89
|
+
stopInCircle: () => Promise<typeof import("*.svg")>;
|
|
90
|
+
syncArrows: () => Promise<typeof import("*.svg")>;
|
|
91
|
+
table: () => Promise<typeof import("*.svg")>;
|
|
92
|
+
telegram: () => Promise<typeof import("*.svg")>;
|
|
93
|
+
tool: () => Promise<typeof import("*.svg")>;
|
|
94
|
+
trafficLight: () => Promise<typeof import("*.svg")>;
|
|
89
95
|
};
|
|
90
96
|
export type { IconType } from './Icon.types';
|
|
91
97
|
export declare function Icon(props: T.Props): JSX.Element;
|
|
@@ -1,94 +1,95 @@
|
|
|
1
|
+
/// <reference types="uilib/declarations" />
|
|
1
2
|
declare const _default: {
|
|
2
|
-
attach: () => Promise<
|
|
3
|
-
apple: () => Promise<
|
|
4
|
-
arrowRight: () => Promise<
|
|
5
|
-
arrowLeft: () => Promise<
|
|
6
|
-
arrowUp: () => Promise<
|
|
7
|
-
arrowDown: () => Promise<
|
|
8
|
-
avatar: () => Promise<
|
|
9
|
-
bookmark: () => Promise<
|
|
10
|
-
bookmarkAdd: () => Promise<
|
|
11
|
-
brain: () => Promise<
|
|
12
|
-
brokenImage: () => Promise<
|
|
13
|
-
camera: () => Promise<
|
|
14
|
-
chat: () => Promise<
|
|
15
|
-
check: () => Promise<
|
|
16
|
-
close: () => Promise<
|
|
17
|
-
colors: () => Promise<
|
|
18
|
-
compass: () => Promise<
|
|
19
|
-
copy: () => Promise<
|
|
20
|
-
checkers: () => Promise<
|
|
21
|
-
chevronUp: () => Promise<
|
|
22
|
-
chevronDown: () => Promise<
|
|
23
|
-
chevronRight: () => Promise<
|
|
24
|
-
chevronLeft: () => Promise<
|
|
25
|
-
clearAll: () => Promise<
|
|
26
|
-
cubes: () => Promise<
|
|
27
|
-
delete: () => Promise<
|
|
28
|
-
draft: () => Promise<
|
|
29
|
-
dragHandlerHorizontal: () => Promise<
|
|
30
|
-
dragHandlerVertical: () => Promise<
|
|
31
|
-
edit: () => Promise<
|
|
32
|
-
email: () => Promise<
|
|
33
|
-
externalLink: () => Promise<
|
|
34
|
-
eye: () => Promise<
|
|
35
|
-
forward: () => Promise<
|
|
36
|
-
folder: () => Promise<
|
|
37
|
-
folderOpen: () => Promise<
|
|
38
|
-
fullscreen: () => Promise<
|
|
39
|
-
fullscreenExit: () => Promise<
|
|
40
|
-
function: () => Promise<
|
|
41
|
-
flyover: () => Promise<
|
|
42
|
-
gear: () => Promise<
|
|
43
|
-
geolocation: () => Promise<
|
|
44
|
-
globe: () => Promise<
|
|
45
|
-
google: () => Promise<
|
|
46
|
-
group: () => Promise<
|
|
47
|
-
github: () => Promise<
|
|
48
|
-
history: () => Promise<
|
|
49
|
-
image: () => Promise<
|
|
50
|
-
instagram: () => Promise<
|
|
51
|
-
home: () => Promise<
|
|
52
|
-
layers: () => Promise<
|
|
53
|
-
link: () => Promise<
|
|
54
|
-
loader: () => Promise<
|
|
55
|
-
lock: () => Promise<
|
|
56
|
-
lockOpen: () => Promise<
|
|
57
|
-
map: () => Promise<
|
|
58
|
-
menu: () => Promise<
|
|
59
|
-
mic: () => Promise<
|
|
60
|
-
micMuted: () => Promise<
|
|
61
|
-
minus: () => Promise<
|
|
62
|
-
moreVertical: () => Promise<
|
|
63
|
-
moreHorizontal: () => Promise<
|
|
64
|
-
output: () => Promise<
|
|
65
|
-
pause: () => Promise<
|
|
66
|
-
play: () => Promise<
|
|
67
|
-
plus: () => Promise<
|
|
68
|
-
redo: () => Promise<
|
|
69
|
-
undo: () => Promise<
|
|
70
|
-
usage: () => Promise<
|
|
71
|
-
requiredStar: () => Promise<
|
|
72
|
-
rewind: () => Promise<
|
|
73
|
-
rocket: () => Promise<
|
|
74
|
-
route: () => Promise<
|
|
75
|
-
routeFrom: () => Promise<
|
|
76
|
-
routeTo: () => Promise<
|
|
77
|
-
save: () => Promise<
|
|
78
|
-
search: () => Promise<
|
|
79
|
-
send: () => Promise<
|
|
80
|
-
settings: () => Promise<
|
|
81
|
-
shoppingBag: () => Promise<
|
|
82
|
-
smile: () => Promise<
|
|
83
|
-
soundWave: () => Promise<
|
|
84
|
-
sparks: () => Promise<
|
|
85
|
-
star: () => Promise<
|
|
86
|
-
stop: () => Promise<
|
|
87
|
-
stopInCircle: () => Promise<
|
|
88
|
-
syncArrows: () => Promise<
|
|
89
|
-
table: () => Promise<
|
|
90
|
-
telegram: () => Promise<
|
|
91
|
-
tool: () => Promise<
|
|
92
|
-
trafficLight: () => Promise<
|
|
3
|
+
attach: () => Promise<typeof import("*.svg")>;
|
|
4
|
+
apple: () => Promise<typeof import("*.svg")>;
|
|
5
|
+
arrowRight: () => Promise<typeof import("*.svg")>;
|
|
6
|
+
arrowLeft: () => Promise<typeof import("*.svg")>;
|
|
7
|
+
arrowUp: () => Promise<typeof import("*.svg")>;
|
|
8
|
+
arrowDown: () => Promise<typeof import("*.svg")>;
|
|
9
|
+
avatar: () => Promise<typeof import("*.svg")>;
|
|
10
|
+
bookmark: () => Promise<typeof import("*.svg")>;
|
|
11
|
+
bookmarkAdd: () => Promise<typeof import("*.svg")>;
|
|
12
|
+
brain: () => Promise<typeof import("*.svg")>;
|
|
13
|
+
brokenImage: () => Promise<typeof import("*.svg")>;
|
|
14
|
+
camera: () => Promise<typeof import("*.svg")>;
|
|
15
|
+
chat: () => Promise<typeof import("*.svg")>;
|
|
16
|
+
check: () => Promise<typeof import("*.svg")>;
|
|
17
|
+
close: () => Promise<typeof import("*.svg")>;
|
|
18
|
+
colors: () => Promise<typeof import("*.svg")>;
|
|
19
|
+
compass: () => Promise<typeof import("*.svg")>;
|
|
20
|
+
copy: () => Promise<typeof import("*.svg")>;
|
|
21
|
+
checkers: () => Promise<typeof import("*.svg")>;
|
|
22
|
+
chevronUp: () => Promise<typeof import("*.svg")>;
|
|
23
|
+
chevronDown: () => Promise<typeof import("*.svg")>;
|
|
24
|
+
chevronRight: () => Promise<typeof import("*.svg")>;
|
|
25
|
+
chevronLeft: () => Promise<typeof import("*.svg")>;
|
|
26
|
+
clearAll: () => Promise<typeof import("*.svg")>;
|
|
27
|
+
cubes: () => Promise<typeof import("*.svg")>;
|
|
28
|
+
delete: () => Promise<typeof import("*.svg")>;
|
|
29
|
+
draft: () => Promise<typeof import("*.svg")>;
|
|
30
|
+
dragHandlerHorizontal: () => Promise<typeof import("*.svg")>;
|
|
31
|
+
dragHandlerVertical: () => Promise<typeof import("*.svg")>;
|
|
32
|
+
edit: () => Promise<typeof import("*.svg")>;
|
|
33
|
+
email: () => Promise<typeof import("*.svg")>;
|
|
34
|
+
externalLink: () => Promise<typeof import("*.svg")>;
|
|
35
|
+
eye: () => Promise<typeof import("*.svg")>;
|
|
36
|
+
forward: () => Promise<typeof import("*.svg")>;
|
|
37
|
+
folder: () => Promise<typeof import("*.svg")>;
|
|
38
|
+
folderOpen: () => Promise<typeof import("*.svg")>;
|
|
39
|
+
fullscreen: () => Promise<typeof import("*.svg")>;
|
|
40
|
+
fullscreenExit: () => Promise<typeof import("*.svg")>;
|
|
41
|
+
function: () => Promise<typeof import("*.svg")>;
|
|
42
|
+
flyover: () => Promise<typeof import("*.svg")>;
|
|
43
|
+
gear: () => Promise<typeof import("*.svg")>;
|
|
44
|
+
geolocation: () => Promise<typeof import("*.svg")>;
|
|
45
|
+
globe: () => Promise<typeof import("*.svg")>;
|
|
46
|
+
google: () => Promise<typeof import("*.svg")>;
|
|
47
|
+
group: () => Promise<typeof import("*.svg")>;
|
|
48
|
+
github: () => Promise<typeof import("*.svg")>;
|
|
49
|
+
history: () => Promise<typeof import("*.svg")>;
|
|
50
|
+
image: () => Promise<typeof import("*.svg")>;
|
|
51
|
+
instagram: () => Promise<typeof import("*.svg")>;
|
|
52
|
+
home: () => Promise<typeof import("*.svg")>;
|
|
53
|
+
layers: () => Promise<typeof import("*.svg")>;
|
|
54
|
+
link: () => Promise<typeof import("*.svg")>;
|
|
55
|
+
loader: () => Promise<typeof import("*.svg")>;
|
|
56
|
+
lock: () => Promise<typeof import("*.svg")>;
|
|
57
|
+
lockOpen: () => Promise<typeof import("*.svg")>;
|
|
58
|
+
map: () => Promise<typeof import("*.svg")>;
|
|
59
|
+
menu: () => Promise<typeof import("*.svg")>;
|
|
60
|
+
mic: () => Promise<typeof import("*.svg")>;
|
|
61
|
+
micMuted: () => Promise<typeof import("*.svg")>;
|
|
62
|
+
minus: () => Promise<typeof import("*.svg")>;
|
|
63
|
+
moreVertical: () => Promise<typeof import("*.svg")>;
|
|
64
|
+
moreHorizontal: () => Promise<typeof import("*.svg")>;
|
|
65
|
+
output: () => Promise<typeof import("*.svg")>;
|
|
66
|
+
pause: () => Promise<typeof import("*.svg")>;
|
|
67
|
+
play: () => Promise<typeof import("*.svg")>;
|
|
68
|
+
plus: () => Promise<typeof import("*.svg")>;
|
|
69
|
+
redo: () => Promise<typeof import("*.svg")>;
|
|
70
|
+
undo: () => Promise<typeof import("*.svg")>;
|
|
71
|
+
usage: () => Promise<typeof import("*.svg")>;
|
|
72
|
+
requiredStar: () => Promise<typeof import("*.svg")>;
|
|
73
|
+
rewind: () => Promise<typeof import("*.svg")>;
|
|
74
|
+
rocket: () => Promise<typeof import("*.svg")>;
|
|
75
|
+
route: () => Promise<typeof import("*.svg")>;
|
|
76
|
+
routeFrom: () => Promise<typeof import("*.svg")>;
|
|
77
|
+
routeTo: () => Promise<typeof import("*.svg")>;
|
|
78
|
+
save: () => Promise<typeof import("*.svg")>;
|
|
79
|
+
search: () => Promise<typeof import("*.svg")>;
|
|
80
|
+
send: () => Promise<typeof import("*.svg")>;
|
|
81
|
+
settings: () => Promise<typeof import("*.svg")>;
|
|
82
|
+
shoppingBag: () => Promise<typeof import("*.svg")>;
|
|
83
|
+
smile: () => Promise<typeof import("*.svg")>;
|
|
84
|
+
soundWave: () => Promise<typeof import("*.svg")>;
|
|
85
|
+
sparks: () => Promise<typeof import("*.svg")>;
|
|
86
|
+
star: () => Promise<typeof import("*.svg")>;
|
|
87
|
+
stop: () => Promise<typeof import("*.svg")>;
|
|
88
|
+
stopInCircle: () => Promise<typeof import("*.svg")>;
|
|
89
|
+
syncArrows: () => Promise<typeof import("*.svg")>;
|
|
90
|
+
table: () => Promise<typeof import("*.svg")>;
|
|
91
|
+
telegram: () => Promise<typeof import("*.svg")>;
|
|
92
|
+
tool: () => Promise<typeof import("*.svg")>;
|
|
93
|
+
trafficLight: () => Promise<typeof import("*.svg")>;
|
|
93
94
|
};
|
|
94
95
|
export default _default;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
|
+
import * as T from './Notifications.types';
|
|
1
2
|
type Props = {
|
|
2
3
|
store?: any;
|
|
3
4
|
};
|
|
4
5
|
export declare const NotificationsStore: import("justorm/dist/esm/proxy").ProxyStore<{
|
|
5
6
|
items: string[];
|
|
6
|
-
|
|
7
|
+
autoHide: string[];
|
|
7
8
|
data: {};
|
|
8
9
|
paused: boolean;
|
|
9
|
-
show(data:
|
|
10
|
+
show(data: T.ItemParams): any;
|
|
10
11
|
pause(): void;
|
|
11
12
|
unpause(): void;
|
|
12
13
|
close(id: any): void;
|