@onereach/ui-components 2.69.1-beta.2101.0 → 2.69.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.
- package/dist/bundled/v2/{OrAvatar-1ada4581.js → OrAvatar-2fa559e1.js} +1 -7
- package/dist/bundled/v2/{OrSelect-759b4410.js → OrSelect-b20a9be0.js} +1 -1
- package/dist/bundled/v2/components/index.js +3 -3
- package/dist/bundled/v2/components/or-avatar-v3/index.js +1 -1
- package/dist/bundled/v2/components/or-avatar-v3/props.d.ts +1 -2
- package/dist/bundled/v2/components/or-select-v3/index.js +2 -2
- package/dist/bundled/v2/hooks/index.js +1 -1
- package/dist/bundled/v2/index.js +4 -4
- package/dist/bundled/v2/{useOverflow-dc93a300.js → useOverflow-bae6342f.js} +1 -1
- package/dist/bundled/v3/{OrAvatar.vue_vue_type_script_lang-a0a72134.js → OrAvatar.vue_vue_type_script_lang-22e46ce1.js} +1 -7
- package/dist/bundled/v3/{OrSelect.vue_vue_type_script_lang-dfadd12f.js → OrSelect.vue_vue_type_script_lang-15285ce4.js} +1 -1
- package/dist/bundled/v3/components/index.js +3 -3
- package/dist/bundled/v3/components/or-avatar-v3/index.js +1 -1
- package/dist/bundled/v3/components/or-avatar-v3/props.d.ts +1 -2
- package/dist/bundled/v3/components/or-select-v3/index.js +2 -2
- package/dist/bundled/v3/hooks/index.js +1 -1
- package/dist/bundled/v3/index.js +6 -6
- package/dist/bundled/v3/{useOverflow-06bcc7d7.js → useOverflow-6dce216b.js} +1 -1
- package/dist/esm/v2/{OrAvatar-95b029b4.js → OrAvatar-0afdef36.js} +1 -7
- package/dist/esm/v2/{OrSelect-ac382aa6.js → OrSelect-f0ff5a85.js} +1 -1
- package/dist/esm/v2/components/index.js +3 -3
- package/dist/esm/v2/components/or-avatar-v3/index.js +1 -1
- package/dist/esm/v2/components/or-avatar-v3/props.d.ts +1 -2
- package/dist/esm/v2/components/or-select-v3/index.js +2 -2
- package/dist/esm/v2/hooks/index.js +1 -1
- package/dist/esm/v2/index.js +3 -3
- package/dist/esm/v2/{useOverflow-a3dc6212.js → useOverflow-af6161c8.js} +1 -1
- package/dist/esm/v3/{OrAvatar-9ed782da.js → OrAvatar-ef88d31c.js} +1 -7
- package/dist/esm/v3/{OrSelect-fee9c099.js → OrSelect-7e813982.js} +1 -1
- package/dist/esm/v3/components/index.js +3 -3
- package/dist/esm/v3/components/or-avatar-v3/index.js +1 -1
- package/dist/esm/v3/components/or-avatar-v3/props.d.ts +1 -2
- package/dist/esm/v3/components/or-select-v3/index.js +2 -2
- package/dist/esm/v3/hooks/index.js +1 -1
- package/dist/esm/v3/index.js +3 -3
- package/dist/esm/v3/{useOverflow-a3dc6212.js → useOverflow-af6161c8.js} +1 -1
- package/package.json +3 -2
- package/src/components/or-avatar-v3/props.ts +0 -1
- package/src/components/or-avatar-v3/styles.ts +0 -9
- package/src/hooks/useOverflow.ts +1 -1
|
@@ -10,7 +10,6 @@ var AvatarSize;
|
|
|
10
10
|
AvatarSize["L"] = "l";
|
|
11
11
|
AvatarSize["M"] = "m";
|
|
12
12
|
AvatarSize["S"] = "s";
|
|
13
|
-
AvatarSize["XS"] = "xs";
|
|
14
13
|
})(AvatarSize || (AvatarSize = {}));
|
|
15
14
|
var AvatarColor;
|
|
16
15
|
(function (AvatarColor) {
|
|
@@ -52,12 +51,7 @@ const AvatarRootSizes = {
|
|
|
52
51
|
// Box
|
|
53
52
|
'w-[32px]', 'h-[32px]',
|
|
54
53
|
// Typography
|
|
55
|
-
'text-[16px]']
|
|
56
|
-
'xs': [
|
|
57
|
-
// Box
|
|
58
|
-
'w-[24px]', 'h-[24px]',
|
|
59
|
-
// Typography
|
|
60
|
-
'text-[12px]']
|
|
54
|
+
'text-[16px]']
|
|
61
55
|
};
|
|
62
56
|
const AvatarRootColors = {
|
|
63
57
|
[AvatarColor.blue]: [
|
|
@@ -12,7 +12,7 @@ import { O as OrPopover } from './OrPopover-5dc240f1.js';
|
|
|
12
12
|
import { O as OrTag } from './OrTag-6440aa89.js';
|
|
13
13
|
import { D as DropdownClose, a as DropdownOpen } from './dropdown-open-e2a93aaf.js';
|
|
14
14
|
import { u as useClassAttribute } from './useClassAttribute-9bf33346.js';
|
|
15
|
-
import { u as useOverflow } from './useOverflow-
|
|
15
|
+
import { u as useOverflow } from './useOverflow-bae6342f.js';
|
|
16
16
|
import { defineComponent, getCurrentInstance, ref, computed, onMounted, watch } from '@vue/composition-api/dist/vue-composition-api.mjs';
|
|
17
17
|
import { n as normalizeComponent } from './normalize-component-6e8e3d80.js';
|
|
18
18
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { O as OR_AVATAR_SIZE, _ as OrAvatar } from '../OrAvatar-0a2c265f.js';
|
|
2
|
-
export { a as AvatarColor, A as AvatarSize, _ as OrAvatarV3 } from '../OrAvatar-
|
|
2
|
+
export { a as AvatarColor, A as AvatarSize, _ as OrAvatarV3 } from '../OrAvatar-2fa559e1.js';
|
|
3
3
|
export { O as OrBottomSheetV3 } from '../OrBottomSheet-1cd1ab4c.js';
|
|
4
4
|
export { _ as OrButton, a as OrButtonColors, b as OrButtonSizes, O as OrButtonViews } from '../OrButton-2abd29d0.js';
|
|
5
5
|
export { O as OrButtonV2 } from '../OrButton-705cd0bd.js';
|
|
@@ -66,7 +66,7 @@ export { _ as OrRadioV3 } from '../OrRadio-cd39b20b.js';
|
|
|
66
66
|
export { _ as OrSearchV3 } from '../OrSearch-9d402f56.js';
|
|
67
67
|
export { _ as OrSegmentedControlV3, S as SegmentedControlSize } from '../OrSegmentedControl-21cc914e.js';
|
|
68
68
|
export { _ as OrSelect } from '../OrSelect-a23d4210.js';
|
|
69
|
-
export { _ as OrSelectV3 } from '../OrSelect-
|
|
69
|
+
export { _ as OrSelectV3 } from '../OrSelect-b20a9be0.js';
|
|
70
70
|
export { _ as OrSidebar, O as OrSidebarSide } from '../OrSidebar-e2b2c9ec.js';
|
|
71
71
|
export { O as OrSidebarPlacement, _ as OrSidebarV3 } from '../OrSidebar-c95ef614.js';
|
|
72
72
|
export { _ as OrSkeletonCircle, a as OrSkeletonRect, b as OrSkeletonText, O as OrSkeletonTextSizes } from '../OrSkeletonText-242d22f3.js';
|
|
@@ -113,6 +113,6 @@ import '../v4-cf8987a3.js';
|
|
|
113
113
|
import '../useResponsive-e13dfbb0.js';
|
|
114
114
|
import '../useElevation-aac032f4.js';
|
|
115
115
|
import '../dropdown-open-e2a93aaf.js';
|
|
116
|
-
import '../useOverflow-
|
|
116
|
+
import '../useOverflow-bae6342f.js';
|
|
117
117
|
import 'portal-vue/dist/portal-vue.esm.js';
|
|
118
118
|
import 'portal-vue';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a as AvatarColor, A as AvatarSize, _ as OrAvatarV3 } from '../../OrAvatar-
|
|
1
|
+
export { a as AvatarColor, A as AvatarSize, _ as OrAvatarV3 } from '../../OrAvatar-2fa559e1.js';
|
|
2
2
|
import '../../index-fa6eb4ca.js';
|
|
3
3
|
import 'vue';
|
|
4
4
|
import '@vue/composition-api/dist/vue-composition-api.mjs';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { _ as OrSelectV3 } from '../../OrSelect-
|
|
1
|
+
export { _ as OrSelectV3 } from '../../OrSelect-b20a9be0.js';
|
|
2
2
|
export { a as SelectSize } from '../../OrInputBox-79ec54ad.js';
|
|
3
3
|
import '../../index-fa6eb4ca.js';
|
|
4
4
|
import 'vue';
|
|
@@ -27,4 +27,4 @@ import '../../useResponsive-e13dfbb0.js';
|
|
|
27
27
|
import '../../OrMenuItem-26420908.js';
|
|
28
28
|
import '../../OrTag-6440aa89.js';
|
|
29
29
|
import '../../dropdown-open-e2a93aaf.js';
|
|
30
|
-
import '../../useOverflow-
|
|
30
|
+
import '../../useOverflow-bae6342f.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { u as useClassAttribute } from '../useClassAttribute-9bf33346.js';
|
|
2
2
|
export { u as useElevation } from '../useElevation-aac032f4.js';
|
|
3
|
-
export { u as useOverflow } from '../useOverflow-
|
|
3
|
+
export { u as useOverflow } from '../useOverflow-bae6342f.js';
|
|
4
4
|
export { u as useToggle } from '../useToggle-6166bd53.js';
|
|
5
5
|
export { u as useResponsive } from '../useResponsive-e13dfbb0.js';
|
|
6
6
|
import '../index-fa6eb4ca.js';
|