@webitel/ui-sdk 24.10.48 → 24.10.49-2
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/CHANGELOG.md +14 -5
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +15660 -15967
- package/dist/ui-sdk.umd.cjs +17 -17
- package/package.json +11 -3
- package/src/components/index.js +2 -0
- package/src/components/on-demand/wt-route-transition/wt-route-transition.vue +17 -0
- package/src/components/on-demand/wt-table-transition/wt-table-transition.vue +25 -0
- package/src/components/wt-action-bar/WtActionBarActionsOrder.js +15 -0
- package/src/components/wt-action-bar/wt-action-bar.vue +29 -23
- package/src/components/wt-empty/_variables.scss +5 -0
- package/src/components/wt-empty/wt-empty.vue +232 -29
- package/src/components/wt-icon-action/IActionData.js +36 -0
- package/src/components/wt-icon-action/wt-icon-action.vue +23 -29
- package/src/composables/useAccessControl/useAccessControl.js +33 -0
- package/src/composables/useCachedItemInstanceName/useCachedItemInstanceName.js +33 -0
- package/src/composables/useCard/useCardComponent.js +88 -0
- package/src/composables/useCard/useCardTabs.js +28 -0
- package/src/composables/useClose/useClose.js +13 -0
- package/src/composables/useValidate/useValidate.js +10 -0
- package/src/css/main.scss +2 -5
- package/src/css/pages/card-page.scss +47 -0
- package/src/css/pages/table-page.scss +67 -0
- package/src/enums/ComponentSize/ComponentSize.enum.js +13 -0
- package/src/enums/index.js +39 -0
- package/src/scripts/compareSize.js +64 -0
- package/src/scripts/index.js +67 -0
- package/src/components/wt-icon-action/_internals/__tests__/WtAddIconAction.spec.js +0 -9
- package/src/components/wt-icon-action/_internals/__tests__/WtDeleteIconAction.spec.js +0 -9
- package/src/components/wt-icon-action/_internals/__tests__/WtDownloadIconAction.spec.js +0 -9
- package/src/components/wt-icon-action/_internals/__tests__/WtEditIconAction.spec.js +0 -9
- package/src/components/wt-icon-action/_internals/__tests__/WtHistoryIconAction.spec.js +0 -9
- package/src/components/wt-icon-action/_internals/__tests__/WtRefreshIconAction.spec.js +0 -9
- package/src/components/wt-icon-action/_internals/wt-add-icon-action.vue +0 -27
- package/src/components/wt-icon-action/_internals/wt-delete-icon-action.vue +0 -27
- package/src/components/wt-icon-action/_internals/wt-download-icon-action.vue +0 -27
- package/src/components/wt-icon-action/_internals/wt-edit-icon-action.vue +0 -27
- package/src/components/wt-icon-action/_internals/wt-history-icon-action.vue +0 -27
- package/src/components/wt-icon-action/_internals/wt-refresh-icon-action.vue +0 -27
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<wt-tooltip>
|
|
3
|
-
<template #activator>
|
|
4
|
-
<wt-icon-btn
|
|
5
|
-
:disabled="disabled"
|
|
6
|
-
icon="edit"
|
|
7
|
-
@click="emit('click')"
|
|
8
|
-
/>
|
|
9
|
-
</template>
|
|
10
|
-
{{ $t('webitelUI.iconAction.editActionHint') }}
|
|
11
|
-
</wt-tooltip>
|
|
12
|
-
</template>
|
|
13
|
-
|
|
14
|
-
<script setup>
|
|
15
|
-
const props = defineProps({
|
|
16
|
-
disabled: {
|
|
17
|
-
type: Boolean,
|
|
18
|
-
default: false,
|
|
19
|
-
},
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
const emit = defineEmits(['click']);
|
|
23
|
-
</script>
|
|
24
|
-
|
|
25
|
-
<style scoped>
|
|
26
|
-
|
|
27
|
-
</style>
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<wt-tooltip>
|
|
3
|
-
<template #activator>
|
|
4
|
-
<wt-icon-btn
|
|
5
|
-
:disabled="disabled"
|
|
6
|
-
icon="history"
|
|
7
|
-
@click="emit('click')"
|
|
8
|
-
/>
|
|
9
|
-
</template>
|
|
10
|
-
{{ $t('webitelUI.iconAction.historyActionHint') }}
|
|
11
|
-
</wt-tooltip>
|
|
12
|
-
</template>
|
|
13
|
-
|
|
14
|
-
<script setup>
|
|
15
|
-
const props = defineProps({
|
|
16
|
-
disabled: {
|
|
17
|
-
type: Boolean,
|
|
18
|
-
default: false,
|
|
19
|
-
},
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
const emit = defineEmits(['click']);
|
|
23
|
-
</script>
|
|
24
|
-
|
|
25
|
-
<style scoped>
|
|
26
|
-
|
|
27
|
-
</style>
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<wt-tooltip>
|
|
3
|
-
<template #activator>
|
|
4
|
-
<wt-icon-btn
|
|
5
|
-
:disabled="disabled"
|
|
6
|
-
icon="refresh"
|
|
7
|
-
@click="emit('click')"
|
|
8
|
-
/>
|
|
9
|
-
</template>
|
|
10
|
-
{{ $t('reusable.refresh') }}
|
|
11
|
-
</wt-tooltip>
|
|
12
|
-
</template>
|
|
13
|
-
|
|
14
|
-
<script setup>
|
|
15
|
-
const props = defineProps({
|
|
16
|
-
disabled: {
|
|
17
|
-
type: Boolean,
|
|
18
|
-
default: false,
|
|
19
|
-
},
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
const emit = defineEmits(['click']);
|
|
23
|
-
</script>
|
|
24
|
-
|
|
25
|
-
<style scoped>
|
|
26
|
-
|
|
27
|
-
</style>
|