Skip to content

Commit

Permalink
Merge pull request #5048 from skdud4659/feature/mirinae-component
Browse files Browse the repository at this point in the history
refactor: redefine component classification criteria
  • Loading branch information
skdud4659 authored Nov 18, 2024
2 parents 92f5c66 + f8fd739 commit 13a54eb
Show file tree
Hide file tree
Showing 491 changed files with 737 additions and 739 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
import dayjs from 'dayjs';
import { PButtonModal, PDatetimePicker, PFieldGroup } from '@cloudforet/mirinae';
import type { DATA_TYPE } from '@cloudforet/mirinae/types/inputs/datetime-picker/type';
import type { DATA_TYPE } from '@cloudforet/mirinae/types/controls/datetime-picker/type';
import { useProxyValue } from '@/common/composables/proxy-state';
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/common/components/inputs/TagsInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { reactive } from 'vue';
import type { TranslateResult } from 'vue-i18n';
import { PFieldGroup, PTextInput } from '@cloudforet/mirinae';
import type { InputItem } from '@cloudforet/mirinae/types/inputs/input/text-input/type';
import type { InputItem } from '@cloudforet/mirinae/types/controls/input/text-input/type';
import type { Tags } from '@/schema/_common/model';
import { i18n } from '@/translations';
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/common/components/modals/UserAPIKeyModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import yaml from 'js-yaml';
import {
PIconModal, PI, PPaneLayout, PDivider, PCollapsibleToggle, PButton, PLink, PTextEditor,
} from '@cloudforet/mirinae';
import { ACTION_ICON } from '@cloudforet/mirinae/src/inputs/link/type';
import { ACTION_ICON } from '@cloudforet/mirinae/src/navigation/link/type';
import type { AppModel } from '@/schema/identity/app/model';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { computed, reactive, watch } from 'vue';

import { isEmpty, sortBy } from 'lodash';

import type { MenuItem } from '@cloudforet/mirinae/src/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/src/controls/context-menu/type';

import type { CostDataSourceItems } from '@/store/reference/cost-data-source-reference-store';

Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/common/composables/dynamic-layout/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import {
makeDistinctValueHandler, makeEnumValueHandler, makeReferenceValueHandler, makeCloudServiceTagValueHandler,
} from '@cloudforet/core-lib/component-util/query-search';
import type { ApiFilter } from '@cloudforet/core-lib/space-connector/type';
import type { KeyItem, KeyItemSet, ValueHandlerMap } from '@cloudforet/mirinae/types/controls/search/query-search/type';
import type { SearchSchema } from '@cloudforet/mirinae/types/data-display/dynamic/dynamic-layout/type/layout-schema';
import type { KeyItem, KeyItemSet, ValueHandlerMap } from '@cloudforet/mirinae/types/inputs/search/query-search/type';


import { pinia } from '@/store/pinia';
Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/common/composables/query-tags/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import { flatten, forEach } from 'lodash';

import { QueryHelper } from '@cloudforet/core-lib/query';
import type { ConsoleFilterOperator, ConsoleFilterValue, ConsoleFilter } from '@cloudforet/core-lib/query/type';
import type { QueryTag } from '@cloudforet/mirinae/types/inputs/search/query-search-tags/type';
import type { QueryTag } from '@cloudforet/mirinae/types/controls/search/query-search-tags/type';
import type {
KeyItem as MirinaeKeyItem,
OperatorType,
} from '@cloudforet/mirinae/types/inputs/search/query-search/type';
} from '@cloudforet/mirinae/types/controls/search/query-search/type';


import type { useAllReferenceStore } from '@/store/reference/all-reference-store';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {
} from '@cloudforet/mirinae';
import type {
QueryItem, ValueHandlerMap, ValueHandler, KeyItemSet,
} from '@cloudforet/mirinae/types/inputs/search/query-search/type';
} from '@cloudforet/mirinae/types/controls/search/query-search/type';
import { useAllReferenceStore } from '@/store/reference/all-reference-store';
import type { ProviderItem, ProviderReferenceMap } from '@/store/reference/provider-reference-store';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import type { ApiFilter } from '@cloudforet/core-lib/space-connector/type';
import {
PTextInput,
} from '@cloudforet/mirinae';
import type { TextInputHandler, InputItem } from '@cloudforet/mirinae/types/inputs/input/text-input/type';
import type { TextInputHandler, InputItem } from '@cloudforet/mirinae/types/controls/input/text-input/type';
import ErrorHandler from '@/common/composables/error/errorHandler';
import { TAGS_PREFIX } from '@/common/modules/custom-table/custom-field-modal/config';
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/common/modules/monitoring/Monitoring.vue
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ import { ApiQueryHelper } from '@cloudforet/core-lib/space-connector/helper';
import {
PSelectButtonGroup, PSelectDropdown, PIconButton, PButton, PLink, PSpinner,
} from '@cloudforet/mirinae';
import { ACTION_ICON } from '@cloudforet/mirinae/src/inputs/link/type';
import { ACTION_ICON } from '@cloudforet/mirinae/src/navigation/link/type';
import { MONITORING_TYPE } from '@/schema/monitoring/data-source/constant';
import { store } from '@/store';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { clone, isEmpty } from 'lodash';
import {
PI, screens, PButton, PTextButton, PTooltip,
} from '@cloudforet/mirinae';
import type { ContextMenuType } from '@cloudforet/mirinae/src/inputs/context-menu/type';
import type { ContextMenuType } from '@cloudforet/mirinae/src/controls/context-menu/type';
import { store } from '@/store';
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/common/modules/navigations/gnb/GNBToolbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { clone, isEmpty } from 'lodash';
import {
PIconButton, PBreadcrumbs, PCopyButton, screens, PTooltip,
} from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';
import { i18n } from '@/translations';
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/common/modules/navigations/lsb/type.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import type { TranslateResult } from 'vue-i18n';
import type { Location } from 'vue-router';

import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';


import type { MenuId } from '@/lib/menu/config';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import { clone, sortBy } from 'lodash';
import {
PSelectDropdown, PTooltip, PI, PButton, PDivider, PTextHighlighting, PEmpty,
} from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/src/inputs/context-menu/type';
import { CONTEXT_MENU_TYPE } from '@cloudforet/mirinae/src/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/src/controls/context-menu/type';
import { CONTEXT_MENU_TYPE } from '@cloudforet/mirinae/src/controls/context-menu/type';
import type { WorkspaceModel } from '@/schema/identity/workspace/model';
import { store } from '@/store';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { TranslateResult } from 'vue-i18n';

import type { ContextMenuType, MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { ContextMenuType, MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';

export const SUGGESTION_TYPE = {
DEFAULT_SERVICE: 'DEFAULT_SERVICE',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { debounce } from 'lodash';
import {
PTab, screens, PLazyImg, PI,
} from '@cloudforet/mirinae';
import type { ValueItem } from '@cloudforet/mirinae/types/inputs/search/query-search/type';
import type { ValueItem } from '@cloudforet/mirinae/types/controls/search/query-search/type';
import { store } from '@/store';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { SpaceConnector } from '@cloudforet/core-lib/space-connector';
import {
PCheckboxGroup, PCheckbox, PTooltip, PToggleButton, PTextButton, PContextMenu, PIconButton, PScopedNotification,
} from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/src/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/src/controls/context-menu/type';
import type { ResourceSearchParameters, ResourceSearchResponse } from '@/schema/search/resource/api-verbs/search';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { isEmpty } from 'lodash';
import {
PButton, PDataLoader, PEmpty, PI, PIconButton,
} from '@cloudforet/mirinae';
import type { ContextMenuType, MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { ContextMenuType, MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';
import type { CostQuerySetModel } from '@/schema/cost-analysis/cost-query-set/model';
import type { MetricExampleModel } from '@/schema/inventory/metric-example/model';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { ApiQueryHelper } from '@cloudforet/core-lib/space-connector/helper';
import {
PDataLoader, PButtonModal, PI, PLink, PDefinitionTable, PButton, PEmpty, PTextBeautifier,
} from '@cloudforet/mirinae';
import { ACTION_ICON } from '@cloudforet/mirinae/src/inputs/link/type';
import { ACTION_ICON } from '@cloudforet/mirinae/src/navigation/link/type';
import { iso8601Formatter } from '@cloudforet/utils';
import type { ListResponse } from '@/schema/_common/api-verbs/list';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { ApiQueryHelper } from '@cloudforet/core-lib/space-connector/helper';
import {
PButton, PCheckbox, PI, PRadio, PSelectDropdown, PTree, PBadge,
} from '@cloudforet/mirinae';
import type { SelectDropdownMenuItem } from '@cloudforet/mirinae/types/inputs/dropdown/select-dropdown/type';
import type { SelectDropdownMenuItem } from '@cloudforet/mirinae/types/controls/dropdown/select-dropdown/type';
import { SpaceRouter } from '@/router';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type { TranslateResult } from 'vue-i18n';
import {
PSelectDropdown, PFieldGroup, PTextInput, PTooltip, PI,
} from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';
import { i18n } from '@/translations';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { sortBy, startCase, toLower } from 'lodash';
import {
PFieldTitle, PContextMenu,
} from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';
import { i18n } from '@/translations';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import { debounce } from 'lodash';
import {
PFieldTitle, PContextMenu, useContextMenuController,
} from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { AutocompleteHandler } from '@cloudforet/mirinae/types/inputs/dropdown/select-dropdown/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';
import type { AutocompleteHandler } from '@cloudforet/mirinae/types/controls/dropdown/select-dropdown/type';
import { i18n } from '@/translations';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import {
import { isArray, isEqual, uniq } from 'lodash';
import type { MenuItem } from '@cloudforet/mirinae/src/inputs/context-menu/type';
import type { SelectDropdownMenuItem } from '@cloudforet/mirinae/src/inputs/dropdown/select-dropdown/type';
import type { MenuItem } from '@cloudforet/mirinae/src/controls/context-menu/type';
import type { SelectDropdownMenuItem } from '@cloudforet/mirinae/src/controls/dropdown/select-dropdown/type';
import type { PrivateDataTableModel } from '@/schema/dashboard/private-data-table/model';
import type { DataTableUpdateParameters } from '@/schema/dashboard/public-data-table/api-verbs/update';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import { range } from 'lodash';
import {
PFieldGroup, PDivider, PIconButton, PI, PButton, PSelectDropdown, PTextInput, PToggleButton, PFieldTitle,
} from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/src/inputs/context-menu/type';
import type { SelectDropdownMenuItem } from '@cloudforet/mirinae/src/inputs/dropdown/select-dropdown/type';
import type { MenuItem } from '@cloudforet/mirinae/src/controls/context-menu/type';
import type { SelectDropdownMenuItem } from '@cloudforet/mirinae/src/controls/dropdown/select-dropdown/type';
import { i18n } from '@/translations';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import {
import {
PFieldGroup, PButton, PContextMenu, useContextMenuController,
} from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { AutocompleteHandler } from '@cloudforet/mirinae/types/inputs/dropdown/select-dropdown/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';
import type { AutocompleteHandler } from '@cloudforet/mirinae/types/controls/dropdown/select-dropdown/type';
import type { MetricLabelKey } from '@/schema/inventory/metric/type';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import { isArray } from 'lodash';
import {
PSelectDropdown, PContextMenu, PIconButton, PI, PTextInput,
} from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { AutocompleteHandler } from '@cloudforet/mirinae/types/inputs/dropdown/select-dropdown/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';
import type { AutocompleteHandler } from '@cloudforet/mirinae/types/controls/dropdown/select-dropdown/type';
import type { DashboardGlobalVariable } from '@/schema/dashboard/_types/dashboard-global-variable-type';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
import {
PContextMenu, PI, useContextMenuController, PButtonModal,
} from '@cloudforet/mirinae';
import type { SelectDropdownMenuItem } from '@cloudforet/mirinae/src/inputs/dropdown/select-dropdown/type';
import type { SelectDropdownMenuItem } from '@cloudforet/mirinae/src/controls/dropdown/select-dropdown/type';
import { i18n } from '@/translations';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
} from 'vue';

import { PI, PContextMenu } from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/src/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/src/controls/context-menu/type';

import { useProxyValue } from '@/common/composables/proxy-state';
import { DATA_TABLE_TYPE } from '@/common/modules/widgets/_constants/data-table-constant';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { computed, reactive } from 'vue';
import {
PI, PFieldGroup, PSelectDropdown, PTextInput, PButton, PIconButton, PFieldTitle, PLink,
} from '@cloudforet/mirinae';
import type { SelectDropdownMenuItem } from '@cloudforet/mirinae/src/inputs/dropdown/select-dropdown/type';
import { ACTION_ICON } from '@cloudforet/mirinae/src/inputs/link/type';
import type { SelectDropdownMenuItem } from '@cloudforet/mirinae/src/controls/dropdown/select-dropdown/type';
import { ACTION_ICON } from '@cloudforet/mirinae/src/navigation/link/type';

import getRandomId from '@/lib/random-id-generator';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { computed, reactive } from 'vue';
import {
PIconButton, PI, PFieldGroup, PSelectButton, PTextInput, PButton, PTextarea, PButtonModal, PToggleButton, PLink, PFieldTitle,
} from '@cloudforet/mirinae';
import { ACTION_ICON } from '@cloudforet/mirinae/src/inputs/link/type';
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import { ACTION_ICON } from '@cloudforet/mirinae/src/navigation/link/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';

import { i18n } from '@/translations';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import bytes from 'bytes';
import {
PToolbox, PI, PSelectDropdown, PEmpty, PSpinner,
} from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/src/inputs/context-menu/type';
import type { ToolboxOptions } from '@cloudforet/mirinae/src/navigation/toolbox/type';
import type { MenuItem } from '@cloudforet/mirinae/src/controls/context-menu/type';
import type { ToolboxOptions } from '@cloudforet/mirinae/src/controls/toolbox/type';
import { byteFormatter, numberFormatter } from '@cloudforet/utils';

import type { Page } from '@/schema/_common/type';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { cloneDeep } from 'lodash';
import {
PFieldGroup, PSelectDropdown, PButton, PI, PButtonModal,
} from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';

import NewMark from '@/common/components/marks/NewMark.vue';
import { DATA_TABLE_TYPE } from '@/common/modules/widgets/_constants/data-table-constant';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
PIconButton, PPopover, PLink, PEmpty, PTooltip, PSkeleton, PSelectDropdown, PButton, PI,
} from '@cloudforet/mirinae';
import { POPOVER_TRIGGER } from '@cloudforet/mirinae/src/data-display/popover/type';
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';

import { WIDGET_SIZE } from '@/schema/dashboard/_constants/widget-constant';
import type { WidgetSize } from '@/schema/dashboard/_types/widget-type';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {

import { get } from 'lodash';

import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';

import type { Granularity } from '@/schema/dashboard/_types/widget-type';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';

export const isGlobalVariableFormat = (value: string | MenuItem[]): boolean => {
if (Array.isArray(value)) return false;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';

import { DATE_FIELD } from '@/common/modules/widgets/_constants/widget-constant';
import type { DateFieldType } from '@/common/modules/widgets/types/widget-data-type';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
} from 'vue';

import { PFieldGroup } from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';

import WidgetFieldDropdownAndMax from '@/common/modules/widgets/_components/WidgetFieldDropdownAndMax.vue';
import { useGranularityMenuItem } from '@/common/modules/widgets/_composables/use-granularity-menu-items';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { sortBy } from 'lodash';
import {
PFieldTitle, PTextInput, PIconButton, PButton, PSelectDropdown, PToggleButton,
} from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { computed, onMounted, reactive } from 'vue';

import { PFieldGroup, PSelectButton } from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';

import { i18n } from '@/translations';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
import {
PFieldGroup, PSelectDropdown,
} from '@cloudforet/mirinae';
import type { SelectDropdownMenuItem } from '@cloudforet/mirinae/types/inputs/dropdown/select-dropdown/type';
import type { SelectDropdownMenuItem } from '@cloudforet/mirinae/types/controls/dropdown/select-dropdown/type';


import { i18n } from '@/translations';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
} from 'vue';

import { PSelectDropdown, PFieldGroup } from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';

import { useProxyValue } from '@/common/composables/proxy-state';
import { getInitialSelectedMenuItem } from '@/common/modules/widgets/_helpers/widget-field-helper';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
} from 'vue';

import { PFieldGroup, PSelectDropdown } from '@cloudforet/mirinae';
import type { MenuItem } from '@cloudforet/mirinae/types/inputs/context-menu/type';
import type { MenuItem } from '@cloudforet/mirinae/types/controls/context-menu/type';

import { i18n } from '@/translations';

Expand Down
Loading

0 comments on commit 13a54eb

Please sign in to comment.