@carbon/vue 3.0.21 → 3.0.23
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/README.md +2 -3
- package/dist/carbon-vue-3.common.js +750 -1169
- package/dist/carbon-vue-3.common.js.map +1 -1
- package/dist/carbon-vue-3.umd.js +750 -1169
- package/dist/carbon-vue-3.umd.js.map +1 -1
- package/dist/carbon-vue-3.umd.min.js +4 -4
- package/dist/carbon-vue-3.umd.min.js.map +1 -1
- package/package.json +10 -7
- package/src/components/CvAspectRatio/CvAspectRatio.stories.js +2 -5
- package/src/components/CvBreadcrumb/CvBreadcrumb.stories.js +2 -5
- package/src/components/CvButton/CvButton.stories.js +1 -3
- package/src/components/CvButton/CvButtonSet.stories.js +2 -6
- package/src/components/CvButton/CvButtonSkeleton.stories.js +1 -3
- package/src/components/CvButton/CvIconButton.stories.js +1 -3
- package/src/components/CvCheckbox/CvCheckbox.stories.js +1 -2
- package/src/components/CvCodeSnippet/CvCodeSnippet.stories.js +1 -2
- package/src/components/CvComboBox/CvComboBox.stories.js +2 -5
- package/src/components/CvCopyButton/CvCopyButton.stories.js +2 -5
- package/src/components/CvDataTable/CvDataTable.stories.mdx +61 -30
- package/src/components/CvDataTable/CvDataTable.vue +73 -103
- package/src/components/CvDataTable/CvDataTableHeading.vue +25 -45
- package/src/components/CvDataTable/CvDataTableRow.vue +52 -51
- package/src/components/CvDataTable/_CvDataTableRowInner.vue +9 -18
- package/src/components/CvDatePicker/CvDatePicker.stories.js +2 -5
- package/src/components/CvDatePicker/CvDatePicker.vue +1 -1
- package/src/components/CvLink/CvLink.stories.js +1 -2
- package/src/components/CvList/CvList.stories.js +2 -5
- package/src/components/CvLoading/CvLoading.stories.js +2 -5
- package/src/components/CvMultiSelect/CvMultiSelect.vue +4 -1
- package/src/components/CvNotification/CvInlineNotification.stories.js +2 -2
- package/src/components/CvNotification/CvToastNotification.stories.js +2 -2
- package/src/components/CvNumberInput/CvNumberInput.stories.js +2 -6
- package/src/components/CvNumberInput/CvNumberInputSkeleton.stories.js +2 -6
- package/src/components/CvRadioButton/CvRadioButton.stories.js +2 -5
- package/src/components/CvSkeletonText/CvSkeletonText.stories.js +2 -5
- package/src/components/CvSlider/CvSlider.stories.js +2 -6
- package/src/components/CvSlider/CvSliderSkeleton.stories.js +2 -6
- package/src/components/CvStructuredList/CvStructuredList.stories.js +2 -5
- package/src/components/CvTag/CvTag.stories.js +2 -5
- package/src/components/CvTag/CvTagSkeleton.stories.js +2 -5
- package/src/components/CvTextArea/CvTextArea.stories.js +2 -6
- package/src/components/CvTextArea/CvTextAreaSkeleton.stories.js +2 -6
- package/src/components/CvTextInput/CvTextInput.stories.js +2 -5
- package/src/components/CvToggle/CvToggle.stories.js +2 -5
- package/src/components/CvTooltip/CvDefinitionTooltip.stories.js +2 -6
- package/src/components/CvTooltip/CvInteractiveTooltip.stories.js +2 -6
- package/src/components/CvTooltip/CvTooltip.stories.js +2 -6
- package/src/components/CvUIShell/CvContent.stories.js +22 -0
- package/src/components/CvUIShell/CvContent.vue +14 -0
- package/src/index.js +1 -0
- package/src/use/overflow.js +2 -2
- package/telemetry.yml +1 -1
- package/dist/web-types.json +0 -5555
- package/src/components/CvDataTable/cvDataTableStore.js +0 -314
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import {
|
|
2
|
-
sbCompPrefix,
|
|
3
2
|
storybookControlsFromProps,
|
|
4
3
|
storyParametersObject,
|
|
5
4
|
} from '../../global/storybook-utils';
|
|
@@ -9,7 +8,7 @@ import { Download16 } from '@carbon/icons-vue';
|
|
|
9
8
|
import { props as propsCvLink, linkSizes } from '../../use/cvLink';
|
|
10
9
|
|
|
11
10
|
export default {
|
|
12
|
-
title:
|
|
11
|
+
title: 'Component/CvLink',
|
|
13
12
|
component: CvLink,
|
|
14
13
|
argTypes: {
|
|
15
14
|
...storybookControlsFromProps(propsCvLink),
|
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
import { CvList, CvListItem } from '.';
|
|
2
2
|
|
|
3
|
-
import {
|
|
4
|
-
sbCompPrefix,
|
|
5
|
-
storyParametersObject,
|
|
6
|
-
} from '../../global/storybook-utils';
|
|
3
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
7
4
|
|
|
8
5
|
export default {
|
|
9
|
-
title:
|
|
6
|
+
title: 'Component/CvList',
|
|
10
7
|
component: CvList,
|
|
11
8
|
argTypes: {
|
|
12
9
|
ordered: {
|
|
@@ -2,14 +2,11 @@ import CvLoading from '.';
|
|
|
2
2
|
|
|
3
3
|
import { ref, computed } from 'vue';
|
|
4
4
|
import { action } from '@storybook/addon-actions';
|
|
5
|
-
import {
|
|
6
|
-
sbCompPrefix,
|
|
7
|
-
storyParametersObject,
|
|
8
|
-
} from '../../global/storybook-utils';
|
|
5
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
9
6
|
import './CvLoading.stories.scss';
|
|
10
7
|
|
|
11
8
|
export default {
|
|
12
|
-
title:
|
|
9
|
+
title: 'Component/CvLoading',
|
|
13
10
|
component: CvLoading,
|
|
14
11
|
argTypes: {
|
|
15
12
|
'loading-end': {
|
|
@@ -163,7 +163,10 @@
|
|
|
163
163
|
@mousemove="onMousemove(item.value)"
|
|
164
164
|
@mousedown.prevent
|
|
165
165
|
>
|
|
166
|
-
<div
|
|
166
|
+
<div
|
|
167
|
+
:class="`${carbonPrefix}--list-box__menu-item__option`"
|
|
168
|
+
:title="item.label"
|
|
169
|
+
>
|
|
167
170
|
<cv-checkbox
|
|
168
171
|
v-model="data.selectedItems"
|
|
169
172
|
tabindex="-1"
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { action } from '@storybook/addon-actions';
|
|
2
|
-
import {
|
|
2
|
+
import { storySourceCode } from '../../global/storybook-utils';
|
|
3
3
|
|
|
4
4
|
import { CvInlineNotification, CvNotificationConsts } from '.';
|
|
5
5
|
import DocumentationTemplate from './CvInlineNotificationTemplate.mdx';
|
|
6
6
|
|
|
7
7
|
export default {
|
|
8
|
-
title:
|
|
8
|
+
title: 'Component/CvInlineNotification',
|
|
9
9
|
component: CvInlineNotification,
|
|
10
10
|
argTypes: {
|
|
11
11
|
kind: {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { action } from '@storybook/addon-actions';
|
|
2
2
|
import DocumentationTemplate from './CvToastNotificationTemplate.mdx';
|
|
3
|
-
import {
|
|
3
|
+
import { storySourceCode } from '../../global/storybook-utils';
|
|
4
4
|
import { CvToastNotification, CvNotificationConsts } from '.';
|
|
5
5
|
|
|
6
6
|
export default {
|
|
7
|
-
title:
|
|
7
|
+
title: 'Component/CvToastNotification',
|
|
8
8
|
component: CvToastNotification,
|
|
9
9
|
argTypes: {
|
|
10
10
|
kind: {
|
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
import { ref } from 'vue';
|
|
2
|
-
import {
|
|
3
|
-
sbCompPrefix,
|
|
4
|
-
storyParametersObject,
|
|
5
|
-
} from '../../global/storybook-utils';
|
|
6
|
-
import { StorybookGroupConst } from './StorybookGroupConst';
|
|
2
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
7
3
|
import CvNumberInput from './CvNumberInput.vue';
|
|
8
4
|
|
|
9
5
|
export default {
|
|
10
|
-
title:
|
|
6
|
+
title: 'Component/CvNumberInput',
|
|
11
7
|
component: CvNumberInput,
|
|
12
8
|
argTypes: {
|
|
13
9
|
// attrs
|
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
sbCompPrefix,
|
|
3
|
-
storyParametersObject,
|
|
4
|
-
} from '../../global/storybook-utils';
|
|
5
|
-
import { StorybookGroupConst } from './StorybookGroupConst';
|
|
1
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
6
2
|
import CvNumberInputSkeleton from './CvNumberInputSkeleton.vue';
|
|
7
3
|
|
|
8
4
|
export default {
|
|
9
|
-
title:
|
|
5
|
+
title: 'Component/CvNumberInputSkeleton',
|
|
10
6
|
component: CvNumberInputSkeleton,
|
|
11
7
|
};
|
|
12
8
|
|
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
import { action } from '@storybook/addon-actions';
|
|
2
2
|
import { CvRadioButton, CvRadioGroup } from '.';
|
|
3
|
-
import {
|
|
4
|
-
sbCompPrefix,
|
|
5
|
-
storyParametersObject,
|
|
6
|
-
} from '../../global/storybook-utils';
|
|
3
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
7
4
|
import { ref } from 'vue';
|
|
8
5
|
|
|
9
6
|
export default {
|
|
10
|
-
title:
|
|
7
|
+
title: 'Component/CvRadioButton',
|
|
11
8
|
component: CvRadioButton,
|
|
12
9
|
argTypes: {
|
|
13
10
|
checked: {
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
sbCompPrefix,
|
|
3
|
-
storyParametersObject,
|
|
4
|
-
} from '../../global/storybook-utils';
|
|
1
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
5
2
|
|
|
6
3
|
import { CvSkeletonText } from '.';
|
|
7
4
|
|
|
8
5
|
export default {
|
|
9
|
-
title:
|
|
6
|
+
title: 'Component/CvSkeletonText',
|
|
10
7
|
component: CvSkeletonText,
|
|
11
8
|
argTypes: {
|
|
12
9
|
heading: { control: { type: 'boolean' } },
|
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
import { ref } from 'vue';
|
|
2
2
|
import { action } from '@storybook/addon-actions';
|
|
3
|
-
import {
|
|
4
|
-
sbCompPrefix,
|
|
5
|
-
storyParametersObject,
|
|
6
|
-
} from '../../global/storybook-utils';
|
|
7
|
-
import { sbSliderPrefix } from './sbSliderPrefix';
|
|
3
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
8
4
|
import { CvSlider } from '.';
|
|
9
5
|
|
|
10
6
|
export default {
|
|
11
|
-
title:
|
|
7
|
+
title: 'Component/CvSlider',
|
|
12
8
|
component: CvSlider,
|
|
13
9
|
argTypes: {
|
|
14
10
|
disabled: {
|
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
sbCompPrefix,
|
|
3
|
-
storyParametersObject,
|
|
4
|
-
} from '../../global/storybook-utils';
|
|
5
|
-
import { sbSliderPrefix } from './sbSliderPrefix';
|
|
1
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
6
2
|
import { CvSliderSkeleton } from '.';
|
|
7
3
|
|
|
8
4
|
export default {
|
|
9
|
-
title:
|
|
5
|
+
title: 'Component/CvSliderSkeleton',
|
|
10
6
|
component: CvSliderSkeleton,
|
|
11
7
|
};
|
|
12
8
|
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { action } from '@storybook/addon-actions';
|
|
2
2
|
import { ref } from 'vue';
|
|
3
|
-
import {
|
|
4
|
-
sbCompPrefix,
|
|
5
|
-
storyParametersObject,
|
|
6
|
-
} from '../../global/storybook-utils';
|
|
3
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
7
4
|
import {
|
|
8
5
|
CvStructuredList,
|
|
9
6
|
CvStructuredListHeading,
|
|
@@ -12,7 +9,7 @@ import {
|
|
|
12
9
|
} from '.';
|
|
13
10
|
|
|
14
11
|
export default {
|
|
15
|
-
title:
|
|
12
|
+
title: 'Component/CvStructuredList',
|
|
16
13
|
component: CvStructuredList,
|
|
17
14
|
argTypes: {
|
|
18
15
|
selectable: {
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import CvTag from './CvTag.vue';
|
|
2
2
|
import { tagKinds } from './consts.js';
|
|
3
3
|
import { action } from '@storybook/addon-actions';
|
|
4
|
-
import {
|
|
5
|
-
sbCompPrefix,
|
|
6
|
-
storyParametersObject,
|
|
7
|
-
} from '../../global/storybook-utils';
|
|
4
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
8
5
|
import {
|
|
9
6
|
DataDefinition20,
|
|
10
7
|
Bee20,
|
|
@@ -27,7 +24,7 @@ const icons = {
|
|
|
27
24
|
};
|
|
28
25
|
|
|
29
26
|
export default {
|
|
30
|
-
title:
|
|
27
|
+
title: 'Component/CvTag',
|
|
31
28
|
component: CvTag,
|
|
32
29
|
argTypes: {
|
|
33
30
|
kind: { control: 'select', options: tagKinds },
|
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
sbCompPrefix,
|
|
3
|
-
storyParametersObject,
|
|
4
|
-
} from '../../global/storybook-utils';
|
|
1
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
5
2
|
import CvTagSkeleton from './CvTagSkeleton.vue';
|
|
6
3
|
|
|
7
4
|
export default {
|
|
8
|
-
title:
|
|
5
|
+
title: 'Component/CvTagSkeleton',
|
|
9
6
|
component: CvTagSkeleton,
|
|
10
7
|
};
|
|
11
8
|
|
|
@@ -1,13 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
sbCompPrefix,
|
|
3
|
-
storyParametersObject,
|
|
4
|
-
} from '../../global/storybook-utils';
|
|
5
|
-
import { StorybookGroupConst } from './StorybookGroupConst';
|
|
1
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
6
2
|
import CvTextArea from '.';
|
|
7
3
|
import { ref } from 'vue';
|
|
8
4
|
|
|
9
5
|
export default {
|
|
10
|
-
title:
|
|
6
|
+
title: 'Component/CvTextArea',
|
|
11
7
|
component: CvTextArea,
|
|
12
8
|
argTypes: {
|
|
13
9
|
// attrs
|
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
sbCompPrefix,
|
|
3
|
-
storyParametersObject,
|
|
4
|
-
} from '../../global/storybook-utils';
|
|
5
|
-
import { StorybookGroupConst } from './StorybookGroupConst';
|
|
1
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
6
2
|
import { CvTextAreaSkeleton } from './';
|
|
7
3
|
|
|
8
4
|
export default {
|
|
9
|
-
title:
|
|
5
|
+
title: 'Component/CvTextAreaSkeleton',
|
|
10
6
|
component: CvTextAreaSkeleton,
|
|
11
7
|
};
|
|
12
8
|
|
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
sbCompPrefix,
|
|
3
|
-
storyParametersObject,
|
|
4
|
-
} from '../../global/storybook-utils';
|
|
1
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
5
2
|
|
|
6
3
|
import { CvTextInput, CvTextInputSkeleton } from '.';
|
|
7
4
|
import { ref } from 'vue';
|
|
8
5
|
|
|
9
6
|
export default {
|
|
10
|
-
title:
|
|
7
|
+
title: 'Component/CvTextInput',
|
|
11
8
|
component: CvTextInput,
|
|
12
9
|
argTypes: {
|
|
13
10
|
// attrs
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
sbCompPrefix,
|
|
3
|
-
storyParametersObject,
|
|
4
|
-
} from '../../global/storybook-utils';
|
|
1
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
5
2
|
|
|
6
3
|
import { CvToggle } from '.';
|
|
7
4
|
import { CvToggleSkeleton } from '.';
|
|
@@ -20,7 +17,7 @@ const initArgsMinimal = {
|
|
|
20
17
|
};
|
|
21
18
|
|
|
22
19
|
export default {
|
|
23
|
-
title:
|
|
20
|
+
title: 'Component/CvToggle',
|
|
24
21
|
component: CvToggle,
|
|
25
22
|
parameters: {
|
|
26
23
|
a11y: {
|
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
import CvDefinitionTooltip from './CvDefinitionTooltip.vue';
|
|
2
|
-
import {
|
|
3
|
-
sbCompPrefix,
|
|
4
|
-
storyParametersObject,
|
|
5
|
-
} from '../../global/storybook-utils';
|
|
2
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
6
3
|
import { alignments, directions } from './consts';
|
|
7
|
-
import { sbTooltipPrefix } from './sbTooltipPrefix';
|
|
8
4
|
|
|
9
5
|
export default {
|
|
10
|
-
title:
|
|
6
|
+
title: 'Component/CvDefinitionTooltip',
|
|
11
7
|
component: CvDefinitionTooltip,
|
|
12
8
|
argTypes: {
|
|
13
9
|
alignment: {
|
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
import CvInteractiveTooltip from './CvInteractiveTooltip.vue';
|
|
2
|
-
import {
|
|
3
|
-
sbCompPrefix,
|
|
4
|
-
storyParametersObject,
|
|
5
|
-
} from '../../global/storybook-utils';
|
|
2
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
6
3
|
import { alignments, directions } from './consts';
|
|
7
|
-
import { sbTooltipPrefix } from './sbTooltipPrefix';
|
|
8
4
|
import Filter16 from '@carbon/icons-vue/es/filter/16';
|
|
9
5
|
|
|
10
6
|
export default {
|
|
11
|
-
title:
|
|
7
|
+
title: 'Component/CvInteractiveTooltip',
|
|
12
8
|
component: CvInteractiveTooltip,
|
|
13
9
|
argTypes: {
|
|
14
10
|
alignment: {
|
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
import CvTooltip from './CvTooltip.vue';
|
|
2
|
-
import {
|
|
3
|
-
sbCompPrefix,
|
|
4
|
-
storyParametersObject,
|
|
5
|
-
} from '../../global/storybook-utils';
|
|
2
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
6
3
|
import { alignments, directions } from './consts';
|
|
7
|
-
import { sbTooltipPrefix } from './sbTooltipPrefix';
|
|
8
4
|
|
|
9
5
|
export default {
|
|
10
|
-
title:
|
|
6
|
+
title: 'Component/CvTooltip',
|
|
11
7
|
component: CvTooltip,
|
|
12
8
|
argTypes: {
|
|
13
9
|
alignment: {
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { storyParametersObject } from '../../global/storybook-utils';
|
|
2
|
+
import CvContent from './CvContent.vue';
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
title: 'Component/ui-select/CvContent',
|
|
6
|
+
component: CvContent,
|
|
7
|
+
argTypes: {},
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const template = `<cv-content>Hello main</cv-content>`;
|
|
11
|
+
const Template = () => {
|
|
12
|
+
return {
|
|
13
|
+
template,
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export const Default = Template.bind({});
|
|
18
|
+
Default.parameters = storyParametersObject(
|
|
19
|
+
Default.parameters,
|
|
20
|
+
template,
|
|
21
|
+
Default.args
|
|
22
|
+
);
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { carbonPrefix } from '../../global/settings';
|
|
3
|
+
defineProps({
|
|
4
|
+
tagType: { type: String, default: 'main' },
|
|
5
|
+
});
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
<template>
|
|
9
|
+
<component :is="tagType" :class="`${carbonPrefix}--content`">
|
|
10
|
+
<slot />
|
|
11
|
+
</component>
|
|
12
|
+
</template>
|
|
13
|
+
|
|
14
|
+
<style scoped lang="scss"></style>
|
package/src/index.js
CHANGED
|
@@ -138,6 +138,7 @@ export { default as CvToggle } from './components/CvToggle/CvToggle.vue';
|
|
|
138
138
|
export { default as CvDefinitionTooltip } from './components/CvTooltip/CvDefinitionTooltip.vue';
|
|
139
139
|
export { default as CvInteractiveTooltip } from './components/CvTooltip/CvInteractiveTooltip.vue';
|
|
140
140
|
export { default as CvTooltip } from './components/CvTooltip/CvTooltip.vue';
|
|
141
|
+
export { default as CvContent } from './components/CvUIShell/CvContent.vue';
|
|
141
142
|
export { default as CvHeader } from './components/CvUIShell/CvHeader.vue';
|
|
142
143
|
export { default as CvHeaderGlobalAction } from './components/CvUIShell/CvHeaderGlobalAction.vue';
|
|
143
144
|
export { default as CvHeaderMenu } from './components/CvUIShell/CvHeaderMenu.vue';
|
package/src/use/overflow.js
CHANGED
|
@@ -13,8 +13,8 @@ export const useElementHasOverflow = element => {
|
|
|
13
13
|
const scrollWidth = ref(0);
|
|
14
14
|
|
|
15
15
|
const updateStaticValues = () => {
|
|
16
|
-
clientWidth.value = element.value
|
|
17
|
-
scrollWidth.value = element.value
|
|
16
|
+
clientWidth.value = element.value?.clientWidth;
|
|
17
|
+
scrollWidth.value = element.value?.scrollWidth;
|
|
18
18
|
};
|
|
19
19
|
const debouncedUpdateStaticValues = useDebounceFn(
|
|
20
20
|
updateStaticValues,
|
package/telemetry.yml
CHANGED