microboard-ui-temp 0.1.46 → 0.1.48

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/index.css CHANGED
@@ -1675,8 +1675,8 @@ body {
1675
1675
  }
1676
1676
  }
1677
1677
 
1678
- /* src/shared/ui-lib/Input/Input.css */
1679
- .InputWrapper {
1678
+ /* src/shared/ui-lib/Input/Input.module.css */
1679
+ .inputWrapper_2Ex0qA {
1680
1680
  display: flex;
1681
1681
  flex-direction: column;
1682
1682
  gap: 8px;
@@ -1686,35 +1686,52 @@ body {
1686
1686
  font-weight: 400;
1687
1687
  }
1688
1688
 
1689
- .InputTabWrapper {
1689
+ .inputTabWrapper_2Ex0qA {
1690
1690
  display: flex;
1691
1691
  width: 100%;
1692
1692
  }
1693
1693
 
1694
- .InputWrapper .Input {
1694
+ .inputLabel_2Ex0qA.disabled_2Ex0qA {
1695
+ color: #0a0f2940;
1696
+ }
1697
+
1698
+ .input_2Ex0qA {
1695
1699
  outline: none;
1700
+ color: #0f1324;
1701
+ width: 100%;
1702
+ font-family: Manrope, Arial;
1703
+ font-size: 14px;
1704
+ }
1705
+
1706
+ .input_2Ex0qA:disabled, .input_2Ex0qA:disabled::placeholder {
1707
+ color: #0a0f2940;
1708
+ }
1709
+
1710
+ .input_2Ex0qA::placeholder {
1711
+ color: #0f132499;
1712
+ font-family: Manrope, Arial;
1696
1713
  }
1697
1714
 
1698
- .InputWrapper .Text {
1715
+ .text_2Ex0qA {
1699
1716
  min-height: 20px;
1700
1717
  }
1701
1718
 
1702
- .InputWrapper .InputHelperText {
1719
+ .inputHelperText_2Ex0qA {
1703
1720
  color: #0f132499;
1704
1721
  font-size: 14px;
1705
1722
  }
1706
1723
 
1707
- .InputWrapper .InputErrorText {
1724
+ .inputErrorText_2Ex0qA {
1708
1725
  color: #e6483d;
1709
1726
  font-size: 14px;
1710
1727
  }
1711
1728
 
1712
- .InputWrapper .InputSuccessText {
1729
+ .inputSuccessText_2Ex0qA {
1713
1730
  color: #26bd6c;
1714
1731
  font-size: 14px;
1715
1732
  }
1716
1733
 
1717
- .InputContainer {
1734
+ .inputContainer_2Ex0qA {
1718
1735
  display: flex;
1719
1736
  border: 1px solid #dee0e3;
1720
1737
  border-radius: 12px;
@@ -1723,42 +1740,27 @@ body {
1723
1740
  box-shadow: 0 1px 2px #14151a0d;
1724
1741
  }
1725
1742
 
1726
- .InputContainer input {
1727
- outline: none;
1728
- width: 100%;
1729
- font-family: Manrope, Arial;
1730
- font-size: 14px;
1731
- }
1732
-
1733
- .InputContainer.InputSuccess {
1743
+ .inputContainer_2Ex0qA.inputSuccess_2Ex0qA {
1734
1744
  outline: none;
1735
1745
  border: 1px solid #26bd6c;
1736
1746
  }
1737
1747
 
1738
- .InputContainer:focus-within:not(.InputSuccess) {
1748
+ .inputContainer_2Ex0qA:focus-within:not(.inputSuccess_2Ex0qA) {
1739
1749
  outline: 2px solid #c8b2ff80;
1740
1750
  border: 1px solid #b78af0;
1741
1751
  }
1742
1752
 
1743
- .InputContainer input::placeholder {
1744
- font-family: Manrope, Arial;
1745
- }
1746
-
1747
- .InputContainer input:focus:not(.InputSuccess) {
1748
- border-color: #b78af0;
1749
- }
1750
-
1751
- .InputContainer.InputError {
1753
+ .inputContainer_2Ex0qA.inputError_2Ex0qA {
1752
1754
  outline: none;
1753
1755
  border: 1px solid #f7c3c0;
1754
1756
  }
1755
1757
 
1756
- .InputContainer.InputError:focus-within {
1758
+ .inputContainer_2Ex0qA.inputError_2Ex0qA:focus-within {
1757
1759
  outline: 1px solid #ffb2b299;
1758
1760
  border: 1px solid #f7c3c0;
1759
1761
  }
1760
1762
 
1761
- .InputPrefix {
1763
+ .inputPrefix_2Ex0qA {
1762
1764
  display: flex;
1763
1765
  flex-direction: column;
1764
1766
  justify-content: center;
@@ -1768,32 +1770,29 @@ body {
1768
1770
  margin-right: 8px;
1769
1771
  }
1770
1772
 
1771
- .InputPostfix {
1773
+ .inputPostfix_2Ex0qA {
1772
1774
  display: flex;
1773
1775
  justify-content: center;
1774
1776
  align-items: center;
1775
1777
  }
1776
1778
 
1777
- .InputWrapper .Eye {
1779
+ .eye_2Ex0qA {
1778
1780
  cursor: pointer;
1779
1781
  width: 20px;
1780
1782
  height: 20px;
1781
1783
  }
1782
1784
 
1783
- .textarea {
1785
+ .inputTextarea_2Ex0qA {
1784
1786
  outline: none;
1785
1787
  resize: none;
1786
1788
  overflow: hidden;
1789
+ color: #0f1324;
1787
1790
  width: 100%;
1788
1791
  height: 20px;
1789
1792
  font-family: Manrope, Arial;
1790
1793
  font-size: 14px;
1791
1794
  }
1792
1795
 
1793
- .InputLabel.Disabled, .Input:disabled, .Input:disabled::placeholder {
1794
- color: #0a0f2940;
1795
- }
1796
-
1797
1796
  /* src/features/UserPanel/UserPanel.module.css */
1798
1797
  .layoutWrapper_jFMnzg {
1799
1798
  display: flex;
@@ -6166,6 +6165,50 @@ td.currentTariff_0VfwRg {
6166
6165
  }
6167
6166
  }
6168
6167
 
6168
+ /* src/entities/Canvas/Watermark.module.css */
6169
+ .watermark_0KzpeA {
6170
+ position: absolute;
6171
+ bottom: calc(var(--absolute-position-panel-padding) * 2 + 48px);
6172
+ right: var(--absolute-position-panel-padding);
6173
+ pointer-events: auto;
6174
+ z-index: 1000;
6175
+ transition: transform .2s ease-in-out;
6176
+ }
6177
+
6178
+ .watermark_0KzpeA:hover {
6179
+ transform: scale(1.05);
6180
+ }
6181
+
6182
+ .watermarkSvg_0KzpeA {
6183
+ display: block;
6184
+ filter: drop-shadow(0 1px 2px #0000001a);
6185
+ transition: filter .2s ease-in-out;
6186
+ }
6187
+
6188
+ .watermark_0KzpeA:hover .watermarkSvg_0KzpeA {
6189
+ filter: drop-shadow(0 2px 4px #0003);
6190
+ }
6191
+
6192
+ .watermarkBorder_0KzpeA {
6193
+ transition: stroke .2s ease-in-out;
6194
+ }
6195
+
6196
+ .watermark_0KzpeA:hover .watermarkBorder_0KzpeA {
6197
+ stroke: #333 !important;
6198
+ }
6199
+
6200
+ .watermarkText_0KzpeA {
6201
+ letter-spacing: .5px;
6202
+ transition: fill .2s ease-in-out;
6203
+ font-family: Arial, Helvetica, sans-serif;
6204
+ font-size: 11px;
6205
+ font-weight: 600;
6206
+ }
6207
+
6208
+ .watermark_0KzpeA:hover .watermarkText_0KzpeA {
6209
+ fill: #333 !important;
6210
+ }
6211
+
6169
6212
  /* src/features/AccessDeniedModal/AccessDeniedModal.module.css */
6170
6213
  .wrapper_YIlenw {
6171
6214
  display: flex;