@loftyshaky/shared-app 0.0.4 → 0.0.5

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.
@@ -102,7 +102,7 @@
102
102
  "message": "Restore default palette"
103
103
  },
104
104
  "color_help_text": {
105
- "message": "Right-click on the main or palette color buttons to choose a custom color. (Tab: Ctrl/Shift/Alt + Enter)."
105
+ "message": "Right-click on the main or palette color buttons to choose a custom color. You can also do this by selecting the main or palette color buttons by Tab and then hitting Ctrl/Shift/Alt + Enter."
106
106
  },
107
107
  "privacy_policy_link_text": {
108
108
  "message": "📜 Privacy policy"
@@ -99,7 +99,7 @@
99
99
  "message": "Восстановить палитру по-умолчанию"
100
100
  },
101
101
  "color_help_text": {
102
- "message": "Кликните правой кнопкой мыши на основную кнопку цвета или кнопку цвета из палитры чтобы выбрать пользовательский цвет. (Tab: Ctrl/Shift/Alt + Enter)"
102
+ "message": "Кликните правой кнопкой мыши на основную кнопку цвета или кнопку цвета из палитры чтобы выбрать пользовательский цвет. Вы также можете сделать это, выбрав основную кнопку цвета или кнопку цвета из палитры с помощью Tab и затем нажать Ctrl/Shift/Alt + Enter."
103
103
  },
104
104
  "privacy_policy_link_text": {
105
105
  "message": "📜 Политика конфиденциальности"
@@ -127,6 +127,13 @@ const shared_config = ({
127
127
  test: /\.svg$/,
128
128
  use: ['@svgr/webpack'],
129
129
  },
130
+ {
131
+ test: /\.woff2?$/,
132
+ type: 'asset/resource',
133
+ generator: {
134
+ filename: '[name][ext]',
135
+ },
136
+ },
130
137
  ],
131
138
  },
132
139
  plugins: [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@loftyshaky/shared-app",
3
3
  "description": "-",
4
- "version": "0.0.4",
4
+ "version": "0.0.5",
5
5
  "author": "loftyshaky",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -26,7 +26,7 @@ body.keyboard .btn.text:focus,
26
26
  .keyboard .link:focus,
27
27
  .keyboard .link_btn:focus,
28
28
  .keyboard .help_btn:focus,
29
- .keyboard .input_item .input_w:not(.text):not(.textarea).is_in_focus_state::before,
29
+ .keyboard .input_item .input_w:not(.text, .textarea).is_in_focus_state::before,
30
30
  .keyboard .input_item.range .input.is_in_focus_state {
31
31
  @include outline_solid_thick;
32
32
  }
@@ -1,7 +1,7 @@
1
1
  $thumb_border_left: 5px solid transparent;
2
2
  $thumb_border_right: 4px solid transparent;
3
3
 
4
- :not(html):not(body):not(select) {
4
+ :not(html, body, select) {
5
5
  &::-webkit-scrollbar {
6
6
  width: 17px;
7
7
  }
@@ -7,7 +7,7 @@
7
7
  color: white !important;
8
8
  }
9
9
 
10
- :not(html):not(body):not(select) {
10
+ :not(html, body, select) {
11
11
  &::-webkit-scrollbar-corner,
12
12
  &::-webkit-resizer {
13
13
  background-color: $hev;
@@ -191,7 +191,7 @@ hr {
191
191
  }
192
192
 
193
193
  .color_picker_w {
194
- *:not(.pcr-last-color):not(.pcr-current-color) {
194
+ *:not(.pcr-last-color, .pcr-current-color) {
195
195
  color: $lpe !important;
196
196
  }
197
197
 
@@ -199,7 +199,7 @@ hr {
199
199
  background-color: $gaq !important;
200
200
  outline-color: $hev !important;
201
201
 
202
- &:hover:not(.pcr-result):not(.active) {
202
+ &:hover:not(.pcr-result, .active) {
203
203
  background-color: $qgp !important;
204
204
  }
205
205
  }
@@ -25,7 +25,7 @@ body.keyboard .btn.text:focus,
25
25
  .keyboard .input_item .checkbox .box:focus,
26
26
  .keyboard .link:focus,
27
27
  .keyboard .link_btn:focus,
28
- .keyboard .input_item .input_w:not(.text):not(.textarea).is_in_focus_state::before,
28
+ .keyboard .input_item .input_w:not(.text, .textarea).is_in_focus_state::before,
29
29
  .keyboard .input_item.range .input.is_in_focus_state,
30
30
  .keyboard .input_item .visualization_w .visualization:focus,
31
31
  .keyboard .input_item .palette_visualization_w .palette_visualization:focus {
@@ -14,7 +14,7 @@
14
14
  transition-property: background-color;
15
15
  }
16
16
 
17
- .btn:not(.reload_ui):not(.link_btn) {
17
+ .btn:not(.reload_ui, .link_btn) {
18
18
  transition: var(--transition);
19
19
  transition-property: opacity, background-color;
20
20
  }