@onereach/ui-components 4.7.4 → 4.7.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.
- package/dist/bundled/v2/components/OrExpansionPanelV3/OrExpansionPanel.js +25 -33
- package/dist/bundled/v2/components/OrExpansionPanelV3/OrExpansionPanel.vue.d.ts +28 -15
- package/dist/bundled/v2/components/OrExpansionPanelV3/index.js +3 -1
- package/dist/bundled/v2/components/OrExpansionPanelV3/props.d.ts +5 -0
- package/dist/bundled/v2/components/OrExpansionPanelV3/props.js +7 -1
- package/dist/bundled/v2/components/OrExpansionPanelV3/styles.d.ts +4 -3
- package/dist/bundled/v2/components/OrExpansionPanelV3/styles.js +17 -5
- package/dist/bundled/v2/components/OrSelectV3/OrSelect.js +1 -1
- package/dist/bundled/v2/components/OrSelectV3/index.js +1 -1
- package/dist/bundled/v2/components/index.js +1 -1
- package/dist/bundled/v2/index.js +2 -2
- package/dist/bundled/v3/{OrExpansionPanel.vue_vue_type_script_lang-d4ed6199.js → OrExpansionPanel.vue_vue_type_script_lang-ca9d5307.js} +20 -29
- package/dist/bundled/v3/{OrSelect.vue_vue_type_script_lang-ba73f458.js → OrSelect.vue_vue_type_script_lang-85fcf3fa.js} +1 -1
- package/dist/bundled/v3/components/OrExpansionPanelV3/OrExpansionPanel.js +7 -5
- package/dist/bundled/v3/components/OrExpansionPanelV3/OrExpansionPanel.vue.d.ts +22 -11
- package/dist/bundled/v3/components/OrExpansionPanelV3/index.js +4 -2
- package/dist/bundled/v3/components/OrExpansionPanelV3/props.d.ts +5 -0
- package/dist/bundled/v3/components/OrExpansionPanelV3/props.js +7 -1
- package/dist/bundled/v3/components/OrExpansionPanelV3/styles.d.ts +4 -3
- package/dist/bundled/v3/components/OrExpansionPanelV3/styles.js +17 -5
- package/dist/bundled/v3/components/OrSelectV3/OrSelect.js +4 -4
- package/dist/bundled/v3/components/OrSelectV3/index.js +3 -3
- package/dist/bundled/v3/components/index.js +3 -3
- package/dist/bundled/v3/index.js +4 -4
- package/dist/esm/v2/{OrExpansionPanel-d3a2218d.js → OrExpansionPanel-b8411db6.js} +48 -36
- package/dist/esm/v2/{OrSelect-1132c7dc.js → OrSelect-7f2d3a94.js} +1 -1
- package/dist/esm/v2/components/index.js +2 -2
- package/dist/esm/v2/components/or-expansion-panel-v3/OrExpansionPanel.vue.d.ts +28 -15
- package/dist/esm/v2/components/or-expansion-panel-v3/index.js +5 -1
- package/dist/esm/v2/components/or-expansion-panel-v3/props.d.ts +5 -0
- package/dist/esm/v2/components/or-expansion-panel-v3/styles.d.ts +4 -3
- package/dist/esm/v2/components/or-select-v3/index.js +3 -3
- package/dist/esm/v2/index.js +2 -2
- package/dist/esm/v3/{OrExpansionPanel-c016d8fa.js → OrExpansionPanel-df527763.js} +47 -35
- package/dist/esm/v3/{OrSelect-9432ac4d.js → OrSelect-c931ed6e.js} +1 -1
- package/dist/esm/v3/components/index.js +2 -2
- package/dist/esm/v3/components/or-expansion-panel-v3/OrExpansionPanel.vue.d.ts +22 -11
- package/dist/esm/v3/components/or-expansion-panel-v3/index.js +5 -1
- package/dist/esm/v3/components/or-expansion-panel-v3/props.d.ts +5 -0
- package/dist/esm/v3/components/or-expansion-panel-v3/styles.d.ts +4 -3
- package/dist/esm/v3/components/or-select-v3/index.js +3 -3
- package/dist/esm/v3/index.js +2 -2
- package/package.json +2 -2
- package/src/components/or-expansion-panel-v3/OrExpansionPanel.vue +28 -35
- package/src/components/or-expansion-panel-v3/props.ts +6 -0
- package/src/components/or-expansion-panel-v3/styles.ts +25 -3
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { defineComponent, ref, computed,
|
|
2
|
-
import { ExpansionPanelVariant, ExpansionPanelColor } from './components/OrExpansionPanelV3/props.js';
|
|
3
|
-
import {
|
|
1
|
+
import { defineComponent, ref, computed, toRef } from 'vue-demi';
|
|
2
|
+
import { ExpansionPanelVariant, ExpansionPanelColor, ExpansionPanelBackgroundColor } from './components/OrExpansionPanelV3/props.js';
|
|
3
|
+
import { ExpansionPanel, ExpansionPanelVariants, ExpansionPanelBackgroundColors, ExpansionPanelHeader, ExpansionPanelHeaderColors, ExpansionPanelAddon } from './components/OrExpansionPanelV3/styles.js';
|
|
4
4
|
import './components/OrIconV3/OrIcon.js';
|
|
5
|
+
import { usePopoverState } from './hooks/usePopoverState.js';
|
|
5
6
|
import { s as script$1 } from './OrIcon.vue_vue_type_script_lang-73f9cc63.js';
|
|
6
7
|
|
|
7
8
|
var script = defineComponent({
|
|
@@ -26,50 +27,40 @@ var script = defineComponent({
|
|
|
26
27
|
type: String,
|
|
27
28
|
default: ExpansionPanelColor.Default
|
|
28
29
|
},
|
|
30
|
+
backgroundColor: {
|
|
31
|
+
type: String,
|
|
32
|
+
default: ExpansionPanelBackgroundColor.Primary
|
|
33
|
+
},
|
|
29
34
|
disabled: {
|
|
30
35
|
type: Boolean,
|
|
31
36
|
default: false
|
|
32
37
|
}
|
|
33
38
|
},
|
|
34
|
-
emits: ['open', 'close'],
|
|
35
|
-
expose: ['root', 'open', 'close'],
|
|
39
|
+
emits: ['update:state', 'open', 'close'],
|
|
40
|
+
expose: ['root', 'state', 'open', 'close', 'toggle'],
|
|
36
41
|
setup(props, context) {
|
|
37
42
|
// Refs
|
|
38
43
|
const root = ref();
|
|
39
44
|
// Styles
|
|
40
|
-
const rootStyles = computed(() => ['or-expansion-panel-v3', ...
|
|
45
|
+
const rootStyles = computed(() => ['or-expansion-panel-v3', ...ExpansionPanel, ...ExpansionPanelVariants[props.variant], ...ExpansionPanelBackgroundColors[`${props.backgroundColor}-${props.variant}`]]);
|
|
41
46
|
const headerStyles = computed(() => [...ExpansionPanelHeader, ...ExpansionPanelHeaderColors[props.color]]);
|
|
42
47
|
const addonStyles = computed(() => [...ExpansionPanelAddon]);
|
|
43
48
|
// State
|
|
44
|
-
const
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
if (newIsOpen) {
|
|
51
|
-
open();
|
|
52
|
-
} else {
|
|
53
|
-
close();
|
|
54
|
-
}
|
|
55
|
-
}, {
|
|
56
|
-
immediate: true
|
|
57
|
-
});
|
|
58
|
-
// Methods
|
|
59
|
-
function open() {
|
|
60
|
-
expanded.value = true;
|
|
61
|
-
}
|
|
62
|
-
function close() {
|
|
63
|
-
expanded.value = false;
|
|
64
|
-
}
|
|
49
|
+
const {
|
|
50
|
+
state,
|
|
51
|
+
open,
|
|
52
|
+
close,
|
|
53
|
+
toggle
|
|
54
|
+
} = usePopoverState(toRef(props, 'isOpen'), context);
|
|
65
55
|
return {
|
|
66
56
|
root,
|
|
67
57
|
rootStyles,
|
|
68
58
|
headerStyles,
|
|
69
59
|
addonStyles,
|
|
70
|
-
|
|
60
|
+
state,
|
|
71
61
|
open,
|
|
72
|
-
close
|
|
62
|
+
close,
|
|
63
|
+
toggle
|
|
73
64
|
};
|
|
74
65
|
}
|
|
75
66
|
});
|
|
@@ -4,7 +4,7 @@ import { SelectRoot, SelectControl, SelectPlaceholder, SelectDropdown, SelectDro
|
|
|
4
4
|
import './components/OrCheckboxV3/OrCheckbox.js';
|
|
5
5
|
import './components/OrErrorV3/OrError.js';
|
|
6
6
|
import './components/OrExpansionPanelV3/OrExpansionPanel.js';
|
|
7
|
-
import { s as script$3 } from './OrExpansionPanel.vue_vue_type_script_lang-
|
|
7
|
+
import { s as script$3 } from './OrExpansionPanel.vue_vue_type_script_lang-ca9d5307.js';
|
|
8
8
|
import './components/OrHintV3/OrHint.js';
|
|
9
9
|
import './components/OrIconV3/OrIcon.js';
|
|
10
10
|
import './components/OrInputV3/OrInput.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { s as script } from '../../OrExpansionPanel.vue_vue_type_script_lang-
|
|
2
|
-
export { s as default } from '../../OrExpansionPanel.vue_vue_type_script_lang-
|
|
1
|
+
import { s as script } from '../../OrExpansionPanel.vue_vue_type_script_lang-ca9d5307.js';
|
|
2
|
+
export { s as default } from '../../OrExpansionPanel.vue_vue_type_script_lang-ca9d5307.js';
|
|
3
3
|
import { resolveComponent, openBlock, createElementBlock, normalizeClass, createElementVNode, withModifiers, createVNode, toDisplayString, renderSlot, withDirectives, vShow } from 'vue';
|
|
4
4
|
import 'vue-demi';
|
|
5
5
|
import './props.js';
|
|
@@ -8,6 +8,8 @@ import '../OrIconV3/OrIcon.js';
|
|
|
8
8
|
import '../../OrIcon.vue_vue_type_script_lang-73f9cc63.js';
|
|
9
9
|
import '../OrIconV3/props.js';
|
|
10
10
|
import '../OrIconV3/styles.js';
|
|
11
|
+
import '../../hooks/usePopoverState.js';
|
|
12
|
+
import '../../index-f4d8e24c.js';
|
|
11
13
|
|
|
12
14
|
const _hoisted_1 = ["disabled"];
|
|
13
15
|
const _hoisted_2 = {
|
|
@@ -27,14 +29,14 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
27
29
|
class: normalizeClass(_ctx.headerStyles),
|
|
28
30
|
tabindex: !_ctx.disabled ? 0 : null,
|
|
29
31
|
disabled: _ctx.disabled ? '' : null,
|
|
30
|
-
onClick: _cache[0] || (_cache[0] = withModifiers($event => _ctx.
|
|
32
|
+
onClick: _cache[0] || (_cache[0] = withModifiers($event => _ctx.toggle(), ["stop"]))
|
|
31
33
|
}, [createVNode(_component_OrIcon, {
|
|
32
|
-
class: normalizeClass([_ctx.
|
|
34
|
+
class: normalizeClass([_ctx.state === 'open' ? 'rotate-0' : 'rotate-[-90deg]']),
|
|
33
35
|
icon: 'expand_more',
|
|
34
36
|
variant: 'filled-bold'
|
|
35
37
|
}, null, 8 /* PROPS */, ["class"]), createElementVNode("span", _hoisted_4, toDisplayString(_ctx.label), 1 /* TEXT */)], 10 /* CLASS, PROPS */, _hoisted_3), createElementVNode("div", {
|
|
36
38
|
class: normalizeClass(_ctx.addonStyles)
|
|
37
|
-
}, [renderSlot(_ctx.$slots, "addon")], 2 /* CLASS */)]), withDirectives(createElementVNode("div", null, [renderSlot(_ctx.$slots, "default")], 512 /* NEED_PATCH */), [[vShow, _ctx.
|
|
39
|
+
}, [renderSlot(_ctx.$slots, "addon")], 2 /* CLASS */)]), withDirectives(createElementVNode("div", null, [renderSlot(_ctx.$slots, "default")], 512 /* NEED_PATCH */), [[vShow, _ctx.state === 'open']])], 10 /* CLASS, PROPS */, _hoisted_1);
|
|
38
40
|
}
|
|
39
41
|
|
|
40
42
|
script.render = render;
|
|
@@ -1,22 +1,26 @@
|
|
|
1
1
|
import { PropType } from 'vue-demi';
|
|
2
|
-
import { ExpansionPanelColor, ExpansionPanelVariant } from './props';
|
|
2
|
+
import { ExpansionPanelBackgroundColor, ExpansionPanelColor, ExpansionPanelVariant } from './props';
|
|
3
3
|
declare const _default: import("vue-demi").DefineComponent<{
|
|
4
4
|
label: {
|
|
5
5
|
type: StringConstructor;
|
|
6
6
|
required: true;
|
|
7
7
|
};
|
|
8
8
|
isOpen: {
|
|
9
|
-
type:
|
|
9
|
+
type: BooleanConstructor;
|
|
10
10
|
default: boolean;
|
|
11
11
|
};
|
|
12
12
|
variant: {
|
|
13
|
-
type: PropType<
|
|
13
|
+
type: PropType<"default" | "card">;
|
|
14
14
|
default: ExpansionPanelVariant;
|
|
15
15
|
};
|
|
16
16
|
color: {
|
|
17
|
-
type: PropType<
|
|
17
|
+
type: PropType<"default" | "danger">;
|
|
18
18
|
default: ExpansionPanelColor;
|
|
19
19
|
};
|
|
20
|
+
backgroundColor: {
|
|
21
|
+
type: PropType<"primary" | "secondary" | "inherit">;
|
|
22
|
+
default: ExpansionPanelBackgroundColor;
|
|
23
|
+
};
|
|
20
24
|
disabled: {
|
|
21
25
|
type: BooleanConstructor;
|
|
22
26
|
default: boolean;
|
|
@@ -26,37 +30,44 @@ declare const _default: import("vue-demi").DefineComponent<{
|
|
|
26
30
|
rootStyles: import("vue-demi").ComputedRef<string[]>;
|
|
27
31
|
headerStyles: import("vue-demi").ComputedRef<string[]>;
|
|
28
32
|
addonStyles: import("vue-demi").ComputedRef<string[]>;
|
|
29
|
-
|
|
33
|
+
state: import("vue-demi").Ref<"open" | "closed">;
|
|
30
34
|
open: () => void;
|
|
31
35
|
close: () => void;
|
|
32
|
-
|
|
36
|
+
toggle: () => void;
|
|
37
|
+
}, unknown, {}, {}, import("vue-demi").ComponentOptionsMixin, import("vue-demi").ComponentOptionsMixin, ("update:state" | "open" | "close")[], "update:state" | "open" | "close", import("vue-demi").VNodeProps & import("vue-demi").AllowedComponentProps & import("vue-demi").ComponentCustomProps, Readonly<import("vue-demi").ExtractPropTypes<{
|
|
33
38
|
label: {
|
|
34
39
|
type: StringConstructor;
|
|
35
40
|
required: true;
|
|
36
41
|
};
|
|
37
42
|
isOpen: {
|
|
38
|
-
type:
|
|
43
|
+
type: BooleanConstructor;
|
|
39
44
|
default: boolean;
|
|
40
45
|
};
|
|
41
46
|
variant: {
|
|
42
|
-
type: PropType<
|
|
47
|
+
type: PropType<"default" | "card">;
|
|
43
48
|
default: ExpansionPanelVariant;
|
|
44
49
|
};
|
|
45
50
|
color: {
|
|
46
|
-
type: PropType<
|
|
51
|
+
type: PropType<"default" | "danger">;
|
|
47
52
|
default: ExpansionPanelColor;
|
|
48
53
|
};
|
|
54
|
+
backgroundColor: {
|
|
55
|
+
type: PropType<"primary" | "secondary" | "inherit">;
|
|
56
|
+
default: ExpansionPanelBackgroundColor;
|
|
57
|
+
};
|
|
49
58
|
disabled: {
|
|
50
59
|
type: BooleanConstructor;
|
|
51
60
|
default: boolean;
|
|
52
61
|
};
|
|
53
62
|
}>> & {
|
|
63
|
+
"onUpdate:state"?: ((...args: any[]) => any) | undefined;
|
|
54
64
|
onOpen?: ((...args: any[]) => any) | undefined;
|
|
55
65
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
56
66
|
}, {
|
|
57
67
|
isOpen: boolean;
|
|
58
|
-
variant:
|
|
59
|
-
color:
|
|
68
|
+
variant: "default" | "card";
|
|
69
|
+
color: "default" | "danger";
|
|
70
|
+
backgroundColor: "primary" | "secondary" | "inherit";
|
|
60
71
|
disabled: boolean;
|
|
61
72
|
}>;
|
|
62
73
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export { ExpansionPanelColor, ExpansionPanelVariant } from './props.js';
|
|
2
|
-
export { s as OrExpansionPanelV3 } from '../../OrExpansionPanel.vue_vue_type_script_lang-
|
|
1
|
+
export { ExpansionPanelBackgroundColor, ExpansionPanelColor, ExpansionPanelVariant } from './props.js';
|
|
2
|
+
export { s as OrExpansionPanelV3 } from '../../OrExpansionPanel.vue_vue_type_script_lang-ca9d5307.js';
|
|
3
3
|
import 'vue-demi';
|
|
4
4
|
import './styles.js';
|
|
5
5
|
import '../OrIconV3/OrIcon.js';
|
|
@@ -7,3 +7,5 @@ import '../../OrIcon.vue_vue_type_script_lang-73f9cc63.js';
|
|
|
7
7
|
import '../OrIconV3/props.js';
|
|
8
8
|
import '../OrIconV3/styles.js';
|
|
9
9
|
import 'vue';
|
|
10
|
+
import '../../hooks/usePopoverState.js';
|
|
11
|
+
import '../../index-f4d8e24c.js';
|
|
@@ -8,5 +8,11 @@ var ExpansionPanelColor;
|
|
|
8
8
|
ExpansionPanelColor["Default"] = "default";
|
|
9
9
|
ExpansionPanelColor["Danger"] = "danger";
|
|
10
10
|
})(ExpansionPanelColor || (ExpansionPanelColor = {}));
|
|
11
|
+
var ExpansionPanelBackgroundColor;
|
|
12
|
+
(function (ExpansionPanelBackgroundColor) {
|
|
13
|
+
ExpansionPanelBackgroundColor["Primary"] = "primary";
|
|
14
|
+
ExpansionPanelBackgroundColor["Secondary"] = "secondary";
|
|
15
|
+
ExpansionPanelBackgroundColor["Inherit"] = "inherit";
|
|
16
|
+
})(ExpansionPanelBackgroundColor || (ExpansionPanelBackgroundColor = {}));
|
|
11
17
|
|
|
12
|
-
export { ExpansionPanelColor, ExpansionPanelVariant };
|
|
18
|
+
export { ExpansionPanelBackgroundColor, ExpansionPanelColor, ExpansionPanelVariant };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { ExpansionPanelColor, ExpansionPanelVariant } from './props';
|
|
2
|
-
export declare const
|
|
3
|
-
export declare const
|
|
1
|
+
import { ExpansionPanelBackgroundColor, ExpansionPanelColor, ExpansionPanelVariant } from './props';
|
|
2
|
+
export declare const ExpansionPanel: string[];
|
|
3
|
+
export declare const ExpansionPanelVariants: Record<ExpansionPanelVariant, string[]>;
|
|
4
|
+
export declare const ExpansionPanelBackgroundColors: Record<`${ExpansionPanelBackgroundColor}-${ExpansionPanelVariant}`, string[]>;
|
|
4
5
|
export declare const ExpansionPanelHeader: string[];
|
|
5
6
|
export declare const ExpansionPanelHeaderColors: Record<ExpansionPanelColor, string[]>;
|
|
6
7
|
export declare const ExpansionPanelAddon: string[];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
const
|
|
1
|
+
const ExpansionPanel = [
|
|
2
2
|
// Layout
|
|
3
3
|
'layout-column'];
|
|
4
|
-
const
|
|
4
|
+
const ExpansionPanelVariants = {
|
|
5
5
|
'default': [
|
|
6
6
|
// Spacing
|
|
7
7
|
'gap-sm'],
|
|
@@ -9,9 +9,21 @@ const ExpansionPanelRootVariants = {
|
|
|
9
9
|
// Shape
|
|
10
10
|
'rounded-md',
|
|
11
11
|
// Spacing
|
|
12
|
-
'px-md', 'py-md', 'gap-md'
|
|
12
|
+
'px-md', 'py-md', 'gap-md']
|
|
13
|
+
};
|
|
14
|
+
const ExpansionPanelBackgroundColors = {
|
|
15
|
+
'primary-default': [],
|
|
16
|
+
'primary-card': [
|
|
17
|
+
// Theme
|
|
18
|
+
'theme-background-surface-1', 'dark:theme-background-surface-1-dark'],
|
|
19
|
+
'secondary-default': [],
|
|
20
|
+
'secondary-card': [
|
|
21
|
+
// Theme
|
|
22
|
+
'theme-background-surface-3', 'dark:theme-background-surface-3-dark'],
|
|
23
|
+
'inherit-default': [],
|
|
24
|
+
'inherit-card': [
|
|
13
25
|
// Theme
|
|
14
|
-
'theme-background-
|
|
26
|
+
'theme-background-inherit', 'dark:theme-background-inherit']
|
|
15
27
|
};
|
|
16
28
|
const ExpansionPanelHeader = [
|
|
17
29
|
// Layout
|
|
@@ -50,4 +62,4 @@ const ExpansionPanelAddon = [
|
|
|
50
62
|
// Theme
|
|
51
63
|
'theme-foreground-outline', 'dark:theme-foreground-outline-dark'];
|
|
52
64
|
|
|
53
|
-
export { ExpansionPanelAddon, ExpansionPanelHeader, ExpansionPanelHeaderColors,
|
|
65
|
+
export { ExpansionPanel, ExpansionPanelAddon, ExpansionPanelBackgroundColors, ExpansionPanelHeader, ExpansionPanelHeaderColors, ExpansionPanelVariants };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { s as script } from '../../OrSelect.vue_vue_type_script_lang-
|
|
2
|
-
export { s as default } from '../../OrSelect.vue_vue_type_script_lang-
|
|
1
|
+
import { s as script } from '../../OrSelect.vue_vue_type_script_lang-85fcf3fa.js';
|
|
2
|
+
export { s as default } from '../../OrSelect.vue_vue_type_script_lang-85fcf3fa.js';
|
|
3
3
|
import { resolveComponent, resolveDirective, openBlock, createElementBlock, normalizeClass, createBlock, withCtx, renderSlot, createTextVNode, toDisplayString, createCommentVNode, withDirectives, createElementVNode, Fragment, renderList, createVNode, withModifiers, vShow } from 'vue';
|
|
4
4
|
import 'vue-demi';
|
|
5
5
|
import '../../utils/isEmptyValue.js';
|
|
@@ -20,13 +20,14 @@ import '../OrErrorV3/OrError.js';
|
|
|
20
20
|
import '../../OrError.vue_vue_type_script_lang-df7b5e32.js';
|
|
21
21
|
import '../OrErrorV3/styles.js';
|
|
22
22
|
import '../OrExpansionPanelV3/OrExpansionPanel.js';
|
|
23
|
-
import '../../OrExpansionPanel.vue_vue_type_script_lang-
|
|
23
|
+
import '../../OrExpansionPanel.vue_vue_type_script_lang-ca9d5307.js';
|
|
24
24
|
import '../OrExpansionPanelV3/props.js';
|
|
25
25
|
import '../OrExpansionPanelV3/styles.js';
|
|
26
26
|
import '../OrIconV3/OrIcon.js';
|
|
27
27
|
import '../../OrIcon.vue_vue_type_script_lang-73f9cc63.js';
|
|
28
28
|
import '../OrIconV3/props.js';
|
|
29
29
|
import '../OrIconV3/styles.js';
|
|
30
|
+
import '../../hooks/usePopoverState.js';
|
|
30
31
|
import '../OrHintV3/OrHint.js';
|
|
31
32
|
import '../../OrHint.vue_vue_type_script_lang-0f5e8377.js';
|
|
32
33
|
import '../OrHintV3/styles.js';
|
|
@@ -58,7 +59,6 @@ import '../OrTeleportV3/OrTeleport.js';
|
|
|
58
59
|
import '../../OrTeleport.vue3.vue_vue_type_script_lang-a6ce162e.js';
|
|
59
60
|
import '../../hooks/useElevation.js';
|
|
60
61
|
import '../../utils/isVisible.js';
|
|
61
|
-
import '../../hooks/usePopoverState.js';
|
|
62
62
|
import '../../hooks/useResponsive/useResponsive.js';
|
|
63
63
|
import '../OrInputBoxV3/OrInputBox.js';
|
|
64
64
|
import '../../OrInputBox.vue_vue_type_script_lang-ede24b04.js';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { s as OrSelectV3 } from '../../OrSelect.vue_vue_type_script_lang-
|
|
1
|
+
export { s as OrSelectV3 } from '../../OrSelect.vue_vue_type_script_lang-85fcf3fa.js';
|
|
2
2
|
export { InputBoxSize as SelectSize } from '../OrInputBoxV3/props.js';
|
|
3
3
|
import 'vue-demi';
|
|
4
4
|
import '../../utils/isEmptyValue.js';
|
|
@@ -20,13 +20,14 @@ import '../OrErrorV3/OrError.js';
|
|
|
20
20
|
import '../../OrError.vue_vue_type_script_lang-df7b5e32.js';
|
|
21
21
|
import '../OrErrorV3/styles.js';
|
|
22
22
|
import '../OrExpansionPanelV3/OrExpansionPanel.js';
|
|
23
|
-
import '../../OrExpansionPanel.vue_vue_type_script_lang-
|
|
23
|
+
import '../../OrExpansionPanel.vue_vue_type_script_lang-ca9d5307.js';
|
|
24
24
|
import '../OrExpansionPanelV3/props.js';
|
|
25
25
|
import '../OrExpansionPanelV3/styles.js';
|
|
26
26
|
import '../OrIconV3/OrIcon.js';
|
|
27
27
|
import '../../OrIcon.vue_vue_type_script_lang-73f9cc63.js';
|
|
28
28
|
import '../OrIconV3/props.js';
|
|
29
29
|
import '../OrIconV3/styles.js';
|
|
30
|
+
import '../../hooks/usePopoverState.js';
|
|
30
31
|
import '../OrHintV3/OrHint.js';
|
|
31
32
|
import '../../OrHint.vue_vue_type_script_lang-0f5e8377.js';
|
|
32
33
|
import '../OrHintV3/styles.js';
|
|
@@ -57,7 +58,6 @@ import '../OrTeleportV3/OrTeleport.js';
|
|
|
57
58
|
import '../../OrTeleport.vue3.vue_vue_type_script_lang-a6ce162e.js';
|
|
58
59
|
import '../../hooks/useElevation.js';
|
|
59
60
|
import '../../utils/isVisible.js';
|
|
60
|
-
import '../../hooks/usePopoverState.js';
|
|
61
61
|
import '../../hooks/useResponsive/useResponsive.js';
|
|
62
62
|
import '../OrInputBoxV3/OrInputBox.js';
|
|
63
63
|
import '../../OrInputBox.vue_vue_type_script_lang-ede24b04.js';
|
|
@@ -44,8 +44,8 @@ export { EmptyStateSize } from './OrEmptyStateV3/props.js';
|
|
|
44
44
|
export { s as OrError } from '../OrError.vue_vue_type_script_lang-450321b8.js';
|
|
45
45
|
export { s as OrErrorTagV3 } from '../OrErrorTag.vue_vue_type_script_lang-a4be8f6a.js';
|
|
46
46
|
export { s as OrErrorV3 } from '../OrError.vue_vue_type_script_lang-df7b5e32.js';
|
|
47
|
-
export { s as OrExpansionPanelV3 } from '../OrExpansionPanel.vue_vue_type_script_lang-
|
|
48
|
-
export { ExpansionPanelColor, ExpansionPanelVariant } from './OrExpansionPanelV3/props.js';
|
|
47
|
+
export { s as OrExpansionPanelV3 } from '../OrExpansionPanel.vue_vue_type_script_lang-ca9d5307.js';
|
|
48
|
+
export { ExpansionPanelBackgroundColor, ExpansionPanelColor, ExpansionPanelVariant } from './OrExpansionPanelV3/props.js';
|
|
49
49
|
export { s as OrFabV3 } from '../OrFab.vue_vue_type_script_lang-e2723ddc.js';
|
|
50
50
|
export { FabColor } from './OrFabV3/props.js';
|
|
51
51
|
export { s as OrFloating } from '../OrFloating.vue_vue_type_script_lang-d762f4b0.js';
|
|
@@ -113,7 +113,7 @@ export { s as OrSearchV3 } from '../OrSearch.vue_vue_type_script_lang-8a82fdc6.j
|
|
|
113
113
|
export { s as OrSegmentedControlV3 } from '../OrSegmentedControl.vue_vue_type_script_lang-ed0d9fe7.js';
|
|
114
114
|
export { SegmentedControlSize } from './OrSegmentedControlV3/props.js';
|
|
115
115
|
export { s as OrSelect } from '../OrSelect.vue_vue_type_script_lang-45cf8f8c.js';
|
|
116
|
-
export { s as OrSelectV3 } from '../OrSelect.vue_vue_type_script_lang-
|
|
116
|
+
export { s as OrSelectV3 } from '../OrSelect.vue_vue_type_script_lang-85fcf3fa.js';
|
|
117
117
|
export { s as OrSidebar } from '../OrSidebar.vue_vue_type_script_lang-56608f4a.js';
|
|
118
118
|
export { OrSidebarSide } from './OrSidebar/constants.js';
|
|
119
119
|
export { s as OrSidebarV3 } from '../OrSidebar.vue_vue_type_script_lang-3d9676ea.js';
|