@broxus/react-uikit 0.23.0 → 0.23.1

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.
@@ -1,4 +1,3 @@
1
- export { Select } from '../../../components/Control/Select/Select';
2
- export { type SelectProps } from '../../../components/Control/Select/Select';
1
+ export { type SelectProps, Select } from '../../../components/Control/Select/Select';
3
2
  export { type BaseSelectRef } from '@rc-component/select';
4
3
  export { type OptionProps } from '@rc-component/select/es/Option';
@@ -1,4 +1,3 @@
1
- export { Select } from '../../../components/Control/Select/Select';
2
- export { type SelectProps } from '../../../components/Control/Select/Select';
1
+ export { type SelectProps, Select } from '../../../components/Control/Select/Select';
3
2
  export { type BaseSelectRef } from '@rc-component/select';
4
3
  export { type OptionProps } from '@rc-component/select/es/Option';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@broxus/react-uikit",
3
- "version": "0.23.0",
3
+ "version": "0.23.1",
4
4
  "description": "React-based UIkit library",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -91,5 +91,5 @@
91
91
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
92
92
  "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
93
93
  },
94
- "gitHead": "ba4aebd93f9870285da09017e289a6b0a468f2ce"
94
+ "gitHead": "885a361c058c1941331834993af7529ce4bcaafb"
95
95
  }
@@ -221,7 +221,7 @@
221
221
  }
222
222
 
223
223
  @keyframes uk-slide-bottom-small {
224
- 0% { transform: translateY(string.unquote('calc(var(--animation-slide-small-translate) * -1)')); }
224
+ 0% { transform: translateY(var(--animation-slide-small-translate)); }
225
225
  100% { transform: translateY(0); }
226
226
  }
227
227
 
@@ -231,7 +231,7 @@
231
231
  }
232
232
 
233
233
  @keyframes uk-slide-right-small {
234
- 0% { transform: translateX(string.unquote('calc(var(--animation-slide-small-translate) * -1)')); }
234
+ 0% { transform: translateX(var(--animation-slide-small-translate)); }
235
235
  100% { transform: translateX(0); }
236
236
  }
237
237
 
@@ -245,7 +245,7 @@
245
245
  }
246
246
 
247
247
  @keyframes uk-slide-bottom-medium {
248
- 0% { transform: translateY(string.unquote('calc(var(--animation-slide-medium-translate) * -1)')); }
248
+ 0% { transform: translateY(var(--animation-slide-medium-translate)); }
249
249
  100% { transform: translateY(0); }
250
250
  }
251
251
 
@@ -255,7 +255,7 @@
255
255
  }
256
256
 
257
257
  @keyframes uk-slide-right-medium {
258
- 0% { transform: translateX(string.unquote('calc(var(--animation-slide-medium-translate) * -1)')); }
258
+ 0% { transform: translateX(var(--animation-slide-medium-translate)); }
259
259
  100% { transform: translateX(0); }
260
260
  }
261
261