@dialpad/dialtone-vue 3.114.0 → 3.115.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.
Files changed (38) hide show
  1. package/CHANGELOG.json +1 -1
  2. package/CHANGELOG.md +21 -0
  3. package/dist/component-documentation.json +1 -1
  4. package/dist/dialtone-vue.cjs +3 -3
  5. package/dist/dialtone-vue.js +327 -269
  6. package/dist/directives.cjs +1 -1
  7. package/dist/directives.js +1 -1
  8. package/dist/emoji-1NjKe1Yv.cjs +1 -0
  9. package/dist/{emoji-ifbDMGtx.js → emoji-VxFu3PHn.js} +181 -180
  10. package/dist/emoji.cjs +1 -1
  11. package/dist/emoji.js +4 -4
  12. package/dist/{emoji_picker-i3y8jyyY.cjs → emoji_picker--qWnpkri.cjs} +1 -1
  13. package/dist/{emoji_picker-G6QLC4uN.js → emoji_picker-1UT0z6jY.js} +2 -2
  14. package/dist/{emoji_text_wrapper-vQeoLfQ4.js → emoji_text_wrapper-NMuqIG_X.js} +1 -1
  15. package/dist/{emoji_text_wrapper-spWldgj4.cjs → emoji_text_wrapper-bOsTtVBL.cjs} +1 -1
  16. package/dist/message_input.cjs +1 -1
  17. package/dist/message_input.js +4 -4
  18. package/dist/{rich_text_editor-PlDAAo2K.js → rich_text_editor-_wxi33hv.js} +4 -8
  19. package/dist/{rich_text_editor-m8DM-vOU.cjs → rich_text_editor-pnYcPOnF.cjs} +2 -2
  20. package/dist/style.css +1 -1
  21. package/dist/{tooltip-px-Nxl4C.cjs → tooltip-P8ouLQqi.cjs} +1 -1
  22. package/dist/{tooltip-FcHJcgMd.js → tooltip-S6S4up2q.js} +3 -3
  23. package/dist/types/components/banner/banner.vue.d.ts +20 -1
  24. package/dist/types/components/banner/banner.vue.d.ts.map +1 -1
  25. package/dist/types/components/link/link.vue.d.ts +3 -2
  26. package/dist/types/components/link/link.vue.d.ts.map +1 -1
  27. package/dist/types/components/link/link_constants.d.ts +2 -0
  28. package/dist/types/components/link/link_constants.d.ts.map +1 -1
  29. package/dist/types/components/notice/notice.vue.d.ts +34 -0
  30. package/dist/types/components/notice/notice.vue.d.ts.map +1 -1
  31. package/dist/types/components/notice/notice_action.vue.d.ts +17 -0
  32. package/dist/types/components/notice/notice_action.vue.d.ts.map +1 -1
  33. package/dist/types/components/toast/toast.vue.d.ts +34 -0
  34. package/dist/types/components/toast/toast.vue.d.ts.map +1 -1
  35. package/dist/types/components/tooltip/tooltip.vue.d.ts +0 -1
  36. package/dist/types/components/tooltip/tooltip.vue.d.ts.map +1 -1
  37. package/package.json +2 -2
  38. package/dist/emoji-q4ZpxDOX.cjs +0 -1
@@ -2393,20 +2393,20 @@ const ho = (e) => ({
2393
2393
  this.$emit("shown", !0), this.show !== null && this.$emit("update:show", !0);
2394
2394
  },
2395
2395
  setProps() {
2396
+ var e, t;
2396
2397
  this.tip && this.tip.setProps && this.tip.setProps({
2397
2398
  ...this.tippyProps,
2398
- zIndex: this.calculateAnchorZindex()
2399
+ zIndex: this.calculateAnchorZindex(),
2400
+ appendTo: this.appendTo === "body" ? (t = (e = this.anchor) == null ? void 0 : e.getRootNode()) == null ? void 0 : t.querySelector("body") : this.appendTo
2399
2401
  });
2400
2402
  },
2401
2403
  onMount() {
2402
2404
  this.setProps();
2403
2405
  },
2404
2406
  initOptions() {
2405
- var e, t;
2406
2407
  return {
2407
2408
  contentElement: this.$refs.content.$el,
2408
2409
  allowHTML: !0,
2409
- appendTo: this.appendTo === "body" ? (t = (e = this.anchor) == null ? void 0 : e.getRootNode()) == null ? void 0 : t.querySelector("body") : this.appendTo,
2410
2410
  zIndex: this.calculateAnchorZindex(),
2411
2411
  onMount: this.onMount,
2412
2412
  ...this.tippyProps
@@ -58,6 +58,7 @@ declare const _default: import("vue").DefineComponent<{
58
58
  };
59
59
  /**
60
60
  * Hides the close button from the notice
61
+ * @values true, false
61
62
  */
62
63
  hideClose: {
63
64
  type: BooleanConstructor;
@@ -71,6 +72,14 @@ declare const _default: import("vue").DefineComponent<{
71
72
  type: BooleanConstructor;
72
73
  default: boolean;
73
74
  };
75
+ /**
76
+ * Hides the action from the notice
77
+ * @values true, false
78
+ */
79
+ hideAction: {
80
+ type: BooleanConstructor;
81
+ default: boolean;
82
+ };
74
83
  /**
75
84
  * Inner dialog class
76
85
  */
@@ -193,6 +202,7 @@ declare const _default: import("vue").DefineComponent<{
193
202
  };
194
203
  /**
195
204
  * Hides the close button from the notice
205
+ * @values true, false
196
206
  */
197
207
  hideClose: {
198
208
  type: BooleanConstructor;
@@ -206,6 +216,14 @@ declare const _default: import("vue").DefineComponent<{
206
216
  type: BooleanConstructor;
207
217
  default: boolean;
208
218
  };
219
+ /**
220
+ * Hides the action from the notice
221
+ * @values true, false
222
+ */
223
+ hideAction: {
224
+ type: BooleanConstructor;
225
+ default: boolean;
226
+ };
209
227
  /**
210
228
  * Inner dialog class
211
229
  */
@@ -239,9 +257,10 @@ declare const _default: import("vue").DefineComponent<{
239
257
  contentId: string;
240
258
  closeButtonProps: Record<string, any>;
241
259
  hideClose: boolean;
260
+ hideAction: boolean;
242
261
  important: boolean;
243
- pinned: boolean;
244
262
  hideIcon: boolean;
263
+ pinned: boolean;
245
264
  dialogClass: string;
246
265
  backgroundImage: string;
247
266
  backgroundSize: string;
@@ -1 +1 @@
1
- {"version":3,"file":"banner.vue.d.ts","sourceRoot":"","sources":["../../../../components/banner/banner.vue.js"],"names":[],"mappings":";IAwBI;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;;IASH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAxGH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;;IASH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG"}
1
+ {"version":3,"file":"banner.vue.d.ts","sourceRoot":"","sources":["../../../../components/banner/banner.vue.js"],"names":[],"mappings":";IAwBI;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;;IASH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAlHH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;;IASH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG"}
@@ -1,7 +1,7 @@
1
1
  declare const _default: import("vue").DefineComponent<{
2
2
  /**
3
3
  * Applies the link variant styles
4
- * @values null, danger, warning, success, muted, inverted
4
+ * @values null, danger, warning, success, muted, inverted, mention
5
5
  */
6
6
  kind: {
7
7
  type: StringConstructor;
@@ -16,11 +16,12 @@ declare const _default: import("vue").DefineComponent<{
16
16
  success: string;
17
17
  muted: string;
18
18
  inverted: string;
19
+ mention: string;
19
20
  };
20
21
  }, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
21
22
  /**
22
23
  * Applies the link variant styles
23
- * @values null, danger, warning, success, muted, inverted
24
+ * @values null, danger, warning, success, muted, inverted, mention
24
25
  */
25
26
  kind: {
26
27
  type: StringConstructor;
@@ -1 +1 @@
1
- {"version":3,"file":"link.vue.d.ts","sourceRoot":"","sources":["../../../../components/link/link.vue.js"],"names":[],"mappings":";IAcI;;;OAGG;;;;;;;;;;;;;;;;IAHH;;;OAGG"}
1
+ {"version":3,"file":"link.vue.d.ts","sourceRoot":"","sources":["../../../../components/link/link.vue.js"],"names":[],"mappings":";IAcI;;;OAGG;;;;;;;;;;;;;;;;;IAHH;;;OAGG"}
@@ -3,6 +3,7 @@ export const WARNING: "warning";
3
3
  export const SUCCESS: "success";
4
4
  export const MUTED: "muted";
5
5
  export const INVERTED: "inverted";
6
+ export const MENTION: "mention";
6
7
  export const LINK_VARIANTS: string[];
7
8
  export namespace LINK_KIND_MODIFIERS {
8
9
  let _default: string;
@@ -12,6 +13,7 @@ export namespace LINK_KIND_MODIFIERS {
12
13
  export let success: string;
13
14
  export let muted: string;
14
15
  export let inverted: string;
16
+ export let mention: string;
15
17
  }
16
18
  declare namespace _default {
17
19
  export { LINK_VARIANTS };
@@ -1 +1 @@
1
- {"version":3,"file":"link_constants.d.ts","sourceRoot":"","sources":["../../../../components/link/link_constants.js"],"names":[],"mappings":"AAAA,8BAA+B;AAC/B,gCAAiC;AACjC,gCAAiC;AACjC,4BAA6B;AAC7B,kCAAmC;AACnC,qCAA6E"}
1
+ {"version":3,"file":"link_constants.d.ts","sourceRoot":"","sources":["../../../../components/link/link_constants.js"],"names":[],"mappings":"AAAA,8BAA+B;AAC/B,gCAAiC;AACjC,gCAAiC;AACjC,4BAA6B;AAC7B,kCAAmC;AACnC,gCAAiC;AACjC,qCAAsF"}
@@ -66,6 +66,22 @@ declare const _default: import("vue").DefineComponent<{
66
66
  type: BooleanConstructor;
67
67
  default: boolean;
68
68
  };
69
+ /**
70
+ * Hides the icon from the notice
71
+ * @values true, false
72
+ */
73
+ hideIcon: {
74
+ type: BooleanConstructor;
75
+ default: boolean;
76
+ };
77
+ /**
78
+ * Hides the action from the notice
79
+ * @values true, false
80
+ */
81
+ hideAction: {
82
+ type: BooleanConstructor;
83
+ default: boolean;
84
+ };
69
85
  }, any, any, {
70
86
  noticeClass(): any[];
71
87
  }, {}, {
@@ -160,6 +176,22 @@ declare const _default: import("vue").DefineComponent<{
160
176
  type: BooleanConstructor;
161
177
  default: boolean;
162
178
  };
179
+ /**
180
+ * Hides the icon from the notice
181
+ * @values true, false
182
+ */
183
+ hideIcon: {
184
+ type: BooleanConstructor;
185
+ default: boolean;
186
+ };
187
+ /**
188
+ * Hides the action from the notice
189
+ * @values true, false
190
+ */
191
+ hideAction: {
192
+ type: BooleanConstructor;
193
+ default: boolean;
194
+ };
163
195
  }>> & {
164
196
  onClick?: ((...args: any[]) => any) | undefined;
165
197
  onClose?: ((...args: any[]) => any) | undefined;
@@ -171,7 +203,9 @@ declare const _default: import("vue").DefineComponent<{
171
203
  contentId: string;
172
204
  closeButtonProps: Record<string, any>;
173
205
  hideClose: boolean;
206
+ hideAction: boolean;
174
207
  important: boolean;
208
+ hideIcon: boolean;
175
209
  }, {}>;
176
210
  export default _default;
177
211
  //# sourceMappingURL=notice.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"notice.vue.d.ts","sourceRoot":"","sources":["../../../../components/notice/notice.vue.js"],"names":[],"mappings":";IAwBI;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG;;;;;;IASH;;;;OAIG;;;;;IAMH;;;OAGG;;;;;;IASH;;OAEG;;;;;IAMH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAzEH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG;;;;;;IASH;;;;OAIG;;;;;IAMH;;;OAGG;;;;;;IASH;;OAEG;;;;;IAMH;;;OAGG"}
1
+ {"version":3,"file":"notice.vue.d.ts","sourceRoot":"","sources":["../../../../components/notice/notice.vue.js"],"names":[],"mappings":";IAwBI;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG;;;;;;IASH;;;;OAIG;;;;;IAMH;;;OAGG;;;;;;IASH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA3FH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;;;;OAKG;;;;;;IASH;;;;OAIG;;;;;IAMH;;;OAGG;;;;;;IASH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG"}
@@ -14,6 +14,14 @@ declare const _default: import("vue").DefineComponent<{
14
14
  type: BooleanConstructor;
15
15
  default: boolean;
16
16
  };
17
+ /**
18
+ * Hides the action from the notice
19
+ * @values true, false
20
+ */
21
+ hideAction: {
22
+ type: BooleanConstructor;
23
+ default: boolean;
24
+ };
17
25
  }, any, any, {}, {
18
26
  close(): void;
19
27
  }, {
@@ -56,11 +64,20 @@ declare const _default: import("vue").DefineComponent<{
56
64
  type: BooleanConstructor;
57
65
  default: boolean;
58
66
  };
67
+ /**
68
+ * Hides the action from the notice
69
+ * @values true, false
70
+ */
71
+ hideAction: {
72
+ type: BooleanConstructor;
73
+ default: boolean;
74
+ };
59
75
  }>> & {
60
76
  onClose?: ((...args: any[]) => any) | undefined;
61
77
  }, {
62
78
  closeButtonProps: Record<string, any>;
63
79
  hideClose: boolean;
80
+ hideAction: boolean;
64
81
  }, {}>;
65
82
  export default _default;
66
83
  //# sourceMappingURL=notice_action.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"notice_action.vue.d.ts","sourceRoot":"","sources":["../../../../components/notice/notice_action.vue.js"],"names":[],"mappings":";IAmBI;;OAEG;;;;;IAMH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAXH;;OAEG;;;;;IAMH;;;OAGG"}
1
+ {"version":3,"file":"notice_action.vue.d.ts","sourceRoot":"","sources":["../../../../components/notice/notice_action.vue.js"],"names":[],"mappings":";IAmBI;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IApBH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG"}
@@ -82,6 +82,22 @@ declare const _default: import("vue").DefineComponent<{
82
82
  type: BooleanConstructor;
83
83
  default: boolean;
84
84
  };
85
+ /**
86
+ * Hides the icon from the notice
87
+ * @values true, false
88
+ */
89
+ hideIcon: {
90
+ type: BooleanConstructor;
91
+ default: boolean;
92
+ };
93
+ /**
94
+ * Hides the action from the notice
95
+ * @values true, false
96
+ */
97
+ hideAction: {
98
+ type: BooleanConstructor;
99
+ default: boolean;
100
+ };
85
101
  /**
86
102
  * The duration in ms the toast will display before disappearing.
87
103
  * The toast won't disappear if the duration is not provided.
@@ -209,6 +225,22 @@ declare const _default: import("vue").DefineComponent<{
209
225
  type: BooleanConstructor;
210
226
  default: boolean;
211
227
  };
228
+ /**
229
+ * Hides the icon from the notice
230
+ * @values true, false
231
+ */
232
+ hideIcon: {
233
+ type: BooleanConstructor;
234
+ default: boolean;
235
+ };
236
+ /**
237
+ * Hides the action from the notice
238
+ * @values true, false
239
+ */
240
+ hideAction: {
241
+ type: BooleanConstructor;
242
+ default: boolean;
243
+ };
212
244
  /**
213
245
  * The duration in ms the toast will display before disappearing.
214
246
  * The toast won't disappear if the duration is not provided.
@@ -232,7 +264,9 @@ declare const _default: import("vue").DefineComponent<{
232
264
  contentId: string;
233
265
  closeButtonProps: Record<string, any>;
234
266
  hideClose: boolean;
267
+ hideAction: boolean;
235
268
  important: boolean;
269
+ hideIcon: boolean;
236
270
  show: boolean;
237
271
  duration: number;
238
272
  }, {}>;
@@ -1 +1 @@
1
- {"version":3,"file":"toast.vue.d.ts","sourceRoot":"","sources":["../../../../components/toast/toast.vue.js"],"names":[],"mappings":";IAwBI;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;;OAIG;;;;;;IASH;;;OAGG;;;;;;IASH;;;OAGG;;;;;IAMH;;;;;;OAMG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IArGH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;;OAIG;;;;;;IASH;;;OAGG;;;;;;IASH;;;OAGG;;;;;IAMH;;;;;;OAMG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;;;OAIG"}
1
+ {"version":3,"file":"toast.vue.d.ts","sourceRoot":"","sources":["../../../../components/toast/toast.vue.js"],"names":[],"mappings":";IAwBI;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;;OAIG;;;;;;IASH;;;OAGG;;;;;;IASH;;;OAGG;;;;;IAMH;;;;;;OAMG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAvHH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;OAEG;;;;;IAMH;;OAEG;;;;;IAMH;;;;OAIG;;;;;;IASH;;;OAGG;;;;;;IASH;;;OAGG;;;;;IAMH;;;;;;OAMG;;;;;IAMH;;OAEG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;;OAIG"}
@@ -276,7 +276,6 @@ declare const _default: import("vue").DefineComponent<{
276
276
  };
277
277
  contentElement: any;
278
278
  allowHTML: boolean;
279
- appendTo: any;
280
279
  zIndex: number;
281
280
  onMount: () => void;
282
281
  };
@@ -1 +1 @@
1
- {"version":3,"file":"tooltip.vue.d.ts","sourceRoot":"","sources":["../../../../components/tooltip/tooltip.vue.js"],"names":[],"mappings":";IAgCI;;OAEG;;;;;IAMH;;;;;;;;;;;;SAYK;;;;;IAML;;;OAGG;;;;;IAMH;;;;;;;;;;OAUG;;;;;IAMH;;;;;;;;;;;;;;OAcG;;;;;;IASH;;;;;;;;;;;;;;OAcG;;;;;;IASH;;;;;OAKG;;;;;;;;;IAUH;;;;OAIG;;;;;IAMH;;OAEG;;;;;IAMH;;;;OAIG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IArLH;;OAEG;;;;;IAMH;;;;;;;;;;;;SAYK;;;;;IAML;;;OAGG;;;;;IAMH;;;;;;;;;;OAUG;;;;;IAMH;;;;;;;;;;;;;;OAcG;;;;;;IASH;;;;;;;;;;;;;;OAcG;;;;;;IASH;;;;;OAKG;;;;;;;;;IAUH;;;;OAIG;;;;;IAMH;;OAEG;;;;;IAMH;;;;OAIG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;+BA1MyC,gBAAgB"}
1
+ {"version":3,"file":"tooltip.vue.d.ts","sourceRoot":"","sources":["../../../../components/tooltip/tooltip.vue.js"],"names":[],"mappings":";IAgCI;;OAEG;;;;;IAMH;;;;;;;;;;;;SAYK;;;;;IAML;;;OAGG;;;;;IAMH;;;;;;;;;;OAUG;;;;;IAMH;;;;;;;;;;;;;;OAcG;;;;;;IASH;;;;;;;;;;;;;;OAcG;;;;;;IASH;;;;;OAKG;;;;;;;;;IAUH;;;;OAIG;;;;;IAMH;;OAEG;;;;;IAMH;;;;OAIG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IArLH;;OAEG;;;;;IAMH;;;;;;;;;;;;SAYK;;;;;IAML;;;OAGG;;;;;IAMH;;;;;;;;;;OAUG;;;;;IAMH;;;;;;;;;;;;;;OAcG;;;;;;IASH;;;;;;;;;;;;;;OAcG;;;;;;IASH;;;;;OAKG;;;;;;;;;IAUH;;;;OAIG;;;;;IAMH;;OAEG;;;;;IAMH;;;;OAIG;;;;;IAMH;;;;;OAKG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;IAMH;;;OAGG;;;;;;;;;;;;;;;;;;;;;;;;;;+BA1MyC,gBAAgB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dialpad/dialtone-vue",
3
- "version": "3.114.0",
3
+ "version": "3.115.1",
4
4
  "description": "Vue component library for Dialpad's design system Dialtone",
5
5
  "files": [
6
6
  "dist",
@@ -81,7 +81,7 @@
81
81
  "vue-tsc": "^1.8.25",
82
82
  "yo": "^5.0.0",
83
83
  "yorkie": "^2.0.0",
84
- "@dialpad/dialtone-css": "8.27.1",
84
+ "@dialpad/dialtone-css": "8.28.1",
85
85
  "@dialpad/dialtone-icons": "4.11.0",
86
86
  "@dialpad/generator-dialtone": "0.1.0"
87
87
  },