@dialpad/dialtone-vue 2.101.1 → 2.102.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/CHANGELOG.json +1 -1
- package/CHANGELOG.md +16 -0
- package/dist/_plugin-vue2_normalizer-71e2aa87.js +32 -0
- package/dist/_plugin-vue2_normalizer-d59b995e.cjs +1 -0
- package/dist/component-documentation.json +1 -1
- package/dist/dialtone-vue.cjs +6 -30
- package/dist/dialtone-vue.js +2430 -4901
- package/dist/directives.cjs +1 -0
- package/dist/directives.js +109 -0
- package/dist/emoji-9ef04a92.cjs +1 -0
- package/dist/{emoji-c718e3bb.js → emoji-efd28b85.js} +3180 -3152
- package/dist/emoji.cjs +1 -1
- package/dist/emoji.js +21 -20
- package/dist/style.css +1 -1
- package/dist/tooltip-6726b38f.cjs +25 -0
- package/dist/tooltip-dc246ca8.js +2515 -0
- package/dist/types/components/tooltip/tooltip.vue.d.ts +20 -4
- package/dist/types/components/tooltip/tooltip.vue.d.ts.map +1 -1
- package/dist/types/components/tooltip/tooltip_variants.vue.d.ts +1 -0
- package/dist/types/directives/tooltip/index.d.ts +2 -0
- package/dist/types/directives/tooltip/index.d.ts.map +1 -0
- package/dist/types/directives/tooltip/tooltip.d.ts +6 -0
- package/dist/types/directives/tooltip/tooltip.d.ts.map +1 -0
- package/dist/types/directives.d.ts +2 -0
- package/dist/types/directives.d.ts.map +1 -0
- package/package.json +16 -6
- package/dist/emoji-4797a56d.cjs +0 -1
|
@@ -106,7 +106,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
106
106
|
* Controls whether the tooltip is shown. Leaving this null will have the tooltip trigger on mouseover by default.
|
|
107
107
|
* If you set this value, the default mouseover behavior will be disabled and you can control it as you need.
|
|
108
108
|
* Supports .sync modifier
|
|
109
|
-
* @values true, false
|
|
109
|
+
* @values null, true, false
|
|
110
110
|
*/
|
|
111
111
|
show: {
|
|
112
112
|
type: BooleanConstructor;
|
|
@@ -128,6 +128,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
128
128
|
type: BooleanConstructor;
|
|
129
129
|
default: boolean;
|
|
130
130
|
};
|
|
131
|
+
/**
|
|
132
|
+
* External anchor id to use in those cases the anchor can't be provided via the slot.
|
|
133
|
+
* For instance, using the combobox's input as the anchor for the popover.
|
|
134
|
+
*/
|
|
135
|
+
externalAnchor: {
|
|
136
|
+
type: StringConstructor;
|
|
137
|
+
default: null;
|
|
138
|
+
};
|
|
131
139
|
}, {}, {
|
|
132
140
|
TOOLTIP_KIND_MODIFIERS: {
|
|
133
141
|
hover: string;
|
|
@@ -146,7 +154,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
146
154
|
};
|
|
147
155
|
tippyProps(): {
|
|
148
156
|
offset: any;
|
|
149
|
-
appendTo: any;
|
|
150
157
|
interactive: boolean;
|
|
151
158
|
trigger: string;
|
|
152
159
|
placement: any;
|
|
@@ -183,6 +190,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
183
190
|
})[];
|
|
184
191
|
};
|
|
185
192
|
};
|
|
193
|
+
anchor(): any;
|
|
186
194
|
}, {
|
|
187
195
|
calculateAnchorZindex(): 651 | 400;
|
|
188
196
|
hasVisibleFocus(): any;
|
|
@@ -197,7 +205,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
197
205
|
onMount(): void;
|
|
198
206
|
initOptions(): {
|
|
199
207
|
offset: any;
|
|
200
|
-
appendTo: any;
|
|
201
208
|
interactive: boolean;
|
|
202
209
|
trigger: string;
|
|
203
210
|
placement: any;
|
|
@@ -346,7 +353,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
346
353
|
* Controls whether the tooltip is shown. Leaving this null will have the tooltip trigger on mouseover by default.
|
|
347
354
|
* If you set this value, the default mouseover behavior will be disabled and you can control it as you need.
|
|
348
355
|
* Supports .sync modifier
|
|
349
|
-
* @values true, false
|
|
356
|
+
* @values null, true, false
|
|
350
357
|
*/
|
|
351
358
|
show: {
|
|
352
359
|
type: BooleanConstructor;
|
|
@@ -368,6 +375,14 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
368
375
|
type: BooleanConstructor;
|
|
369
376
|
default: boolean;
|
|
370
377
|
};
|
|
378
|
+
/**
|
|
379
|
+
* External anchor id to use in those cases the anchor can't be provided via the slot.
|
|
380
|
+
* For instance, using the combobox's input as the anchor for the popover.
|
|
381
|
+
*/
|
|
382
|
+
externalAnchor: {
|
|
383
|
+
type: StringConstructor;
|
|
384
|
+
default: null;
|
|
385
|
+
};
|
|
371
386
|
}>>, {
|
|
372
387
|
id: string;
|
|
373
388
|
transition: string;
|
|
@@ -380,6 +395,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
380
395
|
delay: boolean;
|
|
381
396
|
placement: string;
|
|
382
397
|
sticky: string | boolean;
|
|
398
|
+
externalAnchor: string;
|
|
383
399
|
}>;
|
|
384
400
|
export default _default;
|
|
385
401
|
//# sourceMappingURL=tooltip.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tooltip.vue.d.ts","sourceRoot":"","sources":["../../../../components/tooltip/tooltip.vue.js"],"names":[],"mappings":";IA6BI;;OAEG;;;;;IAMH;;;;;;;;;;;;SAYK;;;;;IAML;;;OAGG;;;;;IAMH;;;;;;;;;;OAUG;;;;;IAMH;;;;;;;;;;;;;;OAcG;;;;;;IASH;;;;;;;;;;;;;;OAcG;;;;;;IASH;;;;OAIG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG
|
|
1
|
+
{"version":3,"file":"tooltip.vue.d.ts","sourceRoot":"","sources":["../../../../components/tooltip/tooltip.vue.js"],"names":[],"mappings":";IA6BI;;OAEG;;;;;IAMH;;;;;;;;;;;;SAYK;;;;;IAML;;;OAGG;;;;;IAMH;;;;;;;;;;OAUG;;;;;IAMH;;;;;;;;;;;;;;OAcG;;;;;;IASH;;;;;;;;;;;;;;OAcG;;;;;;IASH;;;;OAIG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAnJH;;OAEG;;;;;IAMH;;;;;;;;;;;;SAYK;;;;;IAML;;;OAGG;;;;;IAMH;;;;;;;;;;OAUG;;;;;IAMH;;;;;;;;;;;;;;OAcG;;;;;;IASH;;;;;;;;;;;;;;OAcG;;;;;;IASH;;;;OAIG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG"}
|
|
@@ -2,6 +2,7 @@ declare const _default: import("vue").DefineComponent<{}, any, {
|
|
|
2
2
|
TOOLTIP_DIRECTIONS: any[];
|
|
3
3
|
localMessage: string;
|
|
4
4
|
show1: any;
|
|
5
|
+
externalAnchorShow: boolean;
|
|
5
6
|
}, {}, {}, import("vue/types/v3-component-options.js").ComponentOptionsMixin, import("vue/types/v3-component-options.js").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
6
7
|
export default _default;
|
|
7
8
|
//# sourceMappingURL=tooltip_variants.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../directives/tooltip/index.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../../../directives/tooltip/tooltip.js"],"names":[],"mappings":";;IAKE,iCAgIC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"directives.d.ts","sourceRoot":"","sources":["../../directives.js"],"names":[],"mappings":""}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dialpad/dialtone-vue",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.102.1",
|
|
4
4
|
"description": "Vue component library for Dialpad's design system Dialtone",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "run-s clean build:main build:typescript build:documentation",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"CHANGELOG.json"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@dialpad/dialtone-icons": "^2.
|
|
37
|
+
"@dialpad/dialtone-icons": "^2.4.0",
|
|
38
38
|
"@linusborg/vue-simple-portal": "^0.1.5",
|
|
39
39
|
"@tiptap/extension-document": "^2.0.3",
|
|
40
40
|
"@tiptap/extension-paragraph": "^2.0.3",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
"@commitlint/cli": "^17.6.6",
|
|
52
52
|
"@commitlint/config-conventional": "^17.6.6",
|
|
53
53
|
"@dialpad/conventional-changelog-angular": "^1.1.1",
|
|
54
|
-
"@dialpad/dialtone": "^8.
|
|
54
|
+
"@dialpad/dialtone": "^8.20.1",
|
|
55
55
|
"@dialpad/semantic-release-changelog-json": "^1.0.0",
|
|
56
|
-
"@percy/cli": "^1.
|
|
57
|
-
"@percy/storybook": "^4.3.
|
|
56
|
+
"@percy/cli": "^1.27.3",
|
|
57
|
+
"@percy/storybook": "^4.3.7",
|
|
58
58
|
"@semantic-release/changelog": "^6.0.3",
|
|
59
59
|
"@semantic-release/git": "^10.0.1",
|
|
60
60
|
"@storybook/addon-a11y": "^7.4.6",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"yorkie": "^2.0.0"
|
|
111
111
|
},
|
|
112
112
|
"peerDependencies": {
|
|
113
|
-
"@dialpad/dialtone": "^7.30.0 || ^8.
|
|
113
|
+
"@dialpad/dialtone": "^7.30.0 || ^8.20.1",
|
|
114
114
|
"vue": ">=2.6"
|
|
115
115
|
},
|
|
116
116
|
"bugs": {
|
|
@@ -172,6 +172,16 @@
|
|
|
172
172
|
"default": "./dist/emoji.cjs"
|
|
173
173
|
}
|
|
174
174
|
},
|
|
175
|
+
"./directives": {
|
|
176
|
+
"import": {
|
|
177
|
+
"types": "./dist/types/directives.d.ts",
|
|
178
|
+
"default": "./dist/directives.js"
|
|
179
|
+
},
|
|
180
|
+
"require": {
|
|
181
|
+
"types": "./dist/types/directives.d.ts",
|
|
182
|
+
"default": "./dist/directives.cjs"
|
|
183
|
+
}
|
|
184
|
+
},
|
|
175
185
|
"./css": {
|
|
176
186
|
"style": "./dist/style.css"
|
|
177
187
|
}
|