@dialpad/dialtone-vue 3.0.0 → 3.1.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/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "@dialpad/dialtone-vue",
3
- "version": "3.0.0",
3
+ "version": "3.1.1",
4
4
  "description": "Vue component library for Dialtone components",
5
5
  "scripts": {
6
6
  "build": "vue-cli-service build --target lib --name dialtone-vue index.js",
7
+ "clean": "rm -rf ./dist",
8
+ "pretest": "npm run clean",
7
9
  "lint": "run-s lint:code lint:docs",
8
10
  "build:wc": "vue-cli-service build --target wc-async --name dialtone-vue 'components/**/*[!.story]*.vue'",
9
11
  "lint:code": "esplint ./",
@@ -16,20 +18,22 @@
16
18
  "storybook": "npm run --prefix storybook storybook",
17
19
  "storybook:build": "npm run --prefix storybook build",
18
20
  "storybook:install": "npm install --prefix storybook",
21
+ "storybook:a11y-test": "npm run --prefix storybook storybook-a11y-test",
19
22
  "test": "vue-cli-service test:unit --timeout 100000 --require source-map-support/register --require jsdom-global/register --colors components/**/*.test.js recipes/**/**/*.test.js",
20
- "test:watch": "vue-cli-service test:unit --watch --timeout 100000 --require source-map-support/register --require jsdom-global/register --colors components/**/*.test.js"
23
+ "test:watch": "vue-cli-service test:unit --watch --timeout 100000 --require source-map-support/register --require jsdom-global/register --colors components/**/*.test.js recipes/**/**/*.test.js",
24
+ "install:all": "npm install && npm install --prefix storybook && npm install --prefix generator-dialtone-vue"
21
25
  },
22
- "main": "./dist/dialtone-vue.common.js",
23
26
  "files": [
24
27
  "dist/*.js"
25
28
  ],
29
+ "main": "./dist/dialtone-vue.common.js",
26
30
  "dependencies": {
27
31
  "tippy.js": "^6.3.1"
28
32
  },
29
33
  "devDependencies": {
30
34
  "@commitlint/cli": "^15.0.0",
31
35
  "@commitlint/config-conventional": "^15.0.0",
32
- "@dialpad/dialtone": "^6.20.0",
36
+ "@dialpad/dialtone": "^6.27.0",
33
37
  "@semantic-release/changelog": "^6.0.1",
34
38
  "@semantic-release/git": "^10.0.1",
35
39
  "@vue/cli-plugin-babel": "~4.5.15",
@@ -37,7 +41,8 @@
37
41
  "@vue/cli-plugin-unit-mocha": "~4.5.15",
38
42
  "@vue/cli-service": "~4.5.15",
39
43
  "@vue/compiler-sfc": "^3.1.0",
40
- "@vue/test-utils": "^2.0.0-rc.16",
44
+ "@vue/test-utils": "^2.0.0-rc.12",
45
+ "axe-core": "^4.4.1",
41
46
  "babel-eslint": "^10.1.0",
42
47
  "babel-plugin-dynamic-import-node": "^2.2.0",
43
48
  "chai": "^4.2.0",
@@ -48,6 +53,7 @@
48
53
  "eslint-config-standard": "^14.1.1",
49
54
  "eslint-plugin-import": "^2.22.1",
50
55
  "eslint-plugin-mocha": "^8.0.0",
56
+ "emoji-toolkit": "^6.6.0",
51
57
  "eslint-plugin-node": "^11.1.0",
52
58
  "eslint-plugin-promise": "^4.2.1",
53
59
  "eslint-plugin-standard": "^4.0.1",
@@ -73,7 +79,7 @@
73
79
  "yo": "^3.1.1"
74
80
  },
75
81
  "peerDependencies": {
76
- "@dialpad/dialtone": ">=6.18",
82
+ "@dialpad/dialtone": ">=6.27",
77
83
  "vue": "^3.1.0",
78
84
  "yo": "^4.3.0"
79
85
  },
package/CHANGELOG.md DELETED
@@ -1,345 +0,0 @@
1
- # [3.0.0](https://github.com/dialpad/dialtone-vue/compare/v2.1.1...v3.0.0) (2022-03-24)
2
-
3
-
4
- ### Bug Fixes
5
-
6
- * add vue3 branch to commit message lint ([b685cc8](https://github.com/dialpad/dialtone-vue/commit/b685cc876a729284d739c19d67b6dd7577c04585))
7
- * fix storybook package-lock.json ([#254](https://github.com/dialpad/dialtone-vue/issues/254)) ([b57b17c](https://github.com/dialpad/dialtone-vue/commit/b57b17c86691fcf4a66411422929012278d46615))
8
- * fix the way storybook args are handled in vue3 ([#250](https://github.com/dialpad/dialtone-vue/issues/250)) ([f2ad98d](https://github.com/dialpad/dialtone-vue/commit/f2ad98d4bed472136625d98c1f2efa7882a34816))
9
- * rename args -> $attrs and fix createTemplateFromVueFile function ([#251](https://github.com/dialpad/dialtone-vue/issues/251)) ([3bda977](https://github.com/dialpad/dialtone-vue/commit/3bda977ffe64a55241a0a62df75d7c8881768f85))
10
-
11
-
12
- ### Code Refactoring
13
-
14
- * popover component ([#252](https://github.com/dialpad/dialtone-vue/issues/252)) ([4544c83](https://github.com/dialpad/dialtone-vue/commit/4544c837f99db3a25e37270170d2ab38c7803069)), closes [#223](https://github.com/dialpad/dialtone-vue/issues/223) [#235](https://github.com/dialpad/dialtone-vue/issues/235) [#243](https://github.com/dialpad/dialtone-vue/issues/243) [#242](https://github.com/dialpad/dialtone-vue/issues/242)
15
-
16
-
17
- ### Features
18
-
19
- * **button:** support top and bottom iconPositions ([7b40812](https://github.com/dialpad/dialtone-vue/commit/7b408126a4fea69a23b43cae40231a1be6fedf43))
20
- * dt-407 support "top" and "bottom" as valid iconPositions for dt-button ([#284](https://github.com/dialpad/dialtone-vue/issues/284)) ([414aac3](https://github.com/dialpad/dialtone-vue/commit/414aac3dcdcac870808a18ab8625a32f4733f06a))
21
- * **vue 3:** component migration avatar to combobox ([#278](https://github.com/dialpad/dialtone-vue/issues/278)) ([4d479e3](https://github.com/dialpad/dialtone-vue/commit/4d479e32c671166370051cf537b68d4741ba8484))
22
- * **vue 3:** migrate notice to select menu ([#288](https://github.com/dialpad/dialtone-vue/issues/288)) ([37f0fd1](https://github.com/dialpad/dialtone-vue/commit/37f0fd1da6f150ec19e30bc14abf486f24c7cc03))
23
- * **vue 3:** remove @vue/compat ([#291](https://github.com/dialpad/dialtone-vue/issues/291)) ([122573b](https://github.com/dialpad/dialtone-vue/commit/122573b1d87f9ab9173f6017917ab332a45af870))
24
- * **vue3:** migrate dropdown to modal component ([#277](https://github.com/dialpad/dialtone-vue/issues/277)) ([fcfb355](https://github.com/dialpad/dialtone-vue/commit/fcfb355cf4bfbfa3588bab06470624191a60b819))
25
- * **vue3:** migrate skeleton to validation messages component ([#290](https://github.com/dialpad/dialtone-vue/issues/290)) ([e6ca99e](https://github.com/dialpad/dialtone-vue/commit/e6ca99e3fe3846b6ba0f53f8cb08ae99c94812a7))
26
-
27
-
28
- ### BREAKING CHANGES
29
-
30
- * removed fixedVerticalAlignment, fixedAlignment props for the popover component
31
-
32
- ## [2.1.1](https://github.com/dialpad/dialtone-vue/compare/v2.1.0...v2.1.1) (2022-03-16)
33
-
34
-
35
- ### Bug Fixes
36
-
37
- * add missing exports to index.js ([c5c5e39](https://github.com/dialpad/dialtone-vue/commit/c5c5e39b35d99335bfc4c9b530f2c73f9e8cbbed))
38
- * fix input length validation ([#269](https://github.com/dialpad/dialtone-vue/issues/269)) ([42c57ef](https://github.com/dialpad/dialtone-vue/commit/42c57efa84349d16d841965144a88dc2c2278120))
39
- * update to force release ([d75b090](https://github.com/dialpad/dialtone-vue/commit/d75b090eb4e1cb4cd661ac122389afeafdfbfcc3))
40
-
41
- # [2.1.0](https://github.com/dialpad/dialtone-vue/compare/v2.0.1...v2.1.0) (2022-03-16)
42
-
43
-
44
- ### Bug Fixes
45
-
46
- * add missing exports to index.js ([c5c5e39](https://github.com/dialpad/dialtone-vue/commit/c5c5e39b35d99335bfc4c9b530f2c73f9e8cbbed))
47
- * fix input length validation ([#269](https://github.com/dialpad/dialtone-vue/issues/269)) ([42c57ef](https://github.com/dialpad/dialtone-vue/commit/42c57efa84349d16d841965144a88dc2c2278120))
48
- * revert add length validation in the input component ([0ed0cde](https://github.com/dialpad/dialtone-vue/commit/0ed0cde8f8e5fd28b96c984793f163816faf12c1))
49
- * update to force release ([d75b090](https://github.com/dialpad/dialtone-vue/commit/d75b090eb4e1cb4cd661ac122389afeafdfbfcc3))
50
-
51
-
52
- ### Features
53
-
54
- * add length validation in the input component ([b063876](https://github.com/dialpad/dialtone-vue/commit/b063876e45b7c22e963a6a2b1bc0f2ef7ae37be5))
55
- * add length validation in the input component ([592acb1](https://github.com/dialpad/dialtone-vue/commit/592acb191c662dd53d38cc982c804d791b0875e2))
56
-
57
- # [2.1.0](https://github.com/dialpad/dialtone-vue/compare/v2.0.1...v2.1.0) (2022-03-16)
58
-
59
-
60
- ### Bug Fixes
61
-
62
- * add missing exports to index.js ([c5c5e39](https://github.com/dialpad/dialtone-vue/commit/c5c5e39b35d99335bfc4c9b530f2c73f9e8cbbed))
63
- * fix input length validation ([#269](https://github.com/dialpad/dialtone-vue/issues/269)) ([42c57ef](https://github.com/dialpad/dialtone-vue/commit/42c57efa84349d16d841965144a88dc2c2278120))
64
- * revert add length validation in the input component ([0ed0cde](https://github.com/dialpad/dialtone-vue/commit/0ed0cde8f8e5fd28b96c984793f163816faf12c1))
65
-
66
-
67
- ### Features
68
-
69
- * add length validation in the input component ([b063876](https://github.com/dialpad/dialtone-vue/commit/b063876e45b7c22e963a6a2b1bc0f2ef7ae37be5))
70
- * add length validation in the input component ([592acb1](https://github.com/dialpad/dialtone-vue/commit/592acb191c662dd53d38cc982c804d791b0875e2))
71
-
72
- # [2.1.0](https://github.com/dialpad/dialtone-vue/compare/v2.0.1...v2.1.0) (2022-03-16)
73
-
74
-
75
- ### Bug Fixes
76
-
77
- * add missing exports to index.js ([c5c5e39](https://github.com/dialpad/dialtone-vue/commit/c5c5e39b35d99335bfc4c9b530f2c73f9e8cbbed))
78
- * fix input length validation ([#269](https://github.com/dialpad/dialtone-vue/issues/269)) ([42c57ef](https://github.com/dialpad/dialtone-vue/commit/42c57efa84349d16d841965144a88dc2c2278120))
79
- * revert add length validation in the input component ([0ed0cde](https://github.com/dialpad/dialtone-vue/commit/0ed0cde8f8e5fd28b96c984793f163816faf12c1))
80
-
81
-
82
- ### Features
83
-
84
- * add length validation in the input component ([b063876](https://github.com/dialpad/dialtone-vue/commit/b063876e45b7c22e963a6a2b1bc0f2ef7ae37be5))
85
- * add length validation in the input component ([592acb1](https://github.com/dialpad/dialtone-vue/commit/592acb191c662dd53d38cc982c804d791b0875e2))
86
-
87
- # [2.1.0](https://github.com/dialpad/dialtone-vue/compare/v2.0.1...v2.1.0) (2022-03-14)
88
-
89
-
90
- ### Bug Fixes
91
-
92
- * revert add length validation in the input component ([1dbfedc](https://github.com/dialpad/dialtone-vue/commit/1dbfedcfb8c87759b42791f7643613f692da9469))
93
-
94
-
95
- ### Features
96
-
97
- * add length validation in the input component ([b5fc958](https://github.com/dialpad/dialtone-vue/commit/b5fc958f68251d64d544325319ba347a33ec4cc3))
98
- * add length validation in the input component" ([aac5471](https://github.com/dialpad/dialtone-vue/commit/aac5471647bcf7ff346cd0e11b5e2daf755f5160))
99
-
100
- ## [2.0.1](https://github.com/dialpad/dialtone-vue/compare/v2.0.0...v2.0.1) (2022-03-12)
101
-
102
-
103
- ### Bug Fixes
104
-
105
- * revert add length validation in the input component ([ee13fb6](https://github.com/dialpad/dialtone-vue/commit/ee13fb6b26b65c36271bc95fb7548d7124e12417))
106
-
107
- # [2.0.0](https://github.com/dialpad/dialtone-vue/compare/v1.16.0...v2.0.0) (2022-03-12)
108
-
109
-
110
- ### Features
111
-
112
- * add length validation in the input component ([#238](https://github.com/dialpad/dialtone-vue/issues/238)) ([3faae3e](https://github.com/dialpad/dialtone-vue/commit/3faae3ebc7a7b69b77e99f71a00f9b0124da5f4f))
113
- * alignment of props, behaviour, a11y in Popover, Tooltip ([#256](https://github.com/dialpad/dialtone-vue/issues/256)) ([1f4342d](https://github.com/dialpad/dialtone-vue/commit/1f4342db3691d89b77f42750bfa58112374bb972))
114
-
115
-
116
- ### BREAKING CHANGES
117
-
118
- * many changes in prop naming and structure.
119
-
120
- # [1.16.0](https://github.com/dialpad/dialtone-vue/compare/v1.15.0...v1.16.0) (2022-03-08)
121
-
122
-
123
- ### Bug Fixes
124
-
125
- * make padding same on both sides on keyboard shortcut ([2b8113c](https://github.com/dialpad/dialtone-vue/commit/2b8113ce1d597211713faa5acb623685ae863a75))
126
-
127
-
128
- ### Features
129
-
130
- * add contact info component for call info display ([#249](https://github.com/dialpad/dialtone-vue/issues/249)) ([8195314](https://github.com/dialpad/dialtone-vue/commit/81953141235af95c5d10842c6d314ecc8d089bc2))
131
-
132
- # [1.15.0](https://github.com/dialpad/dialtone-vue/compare/v1.14.0...v1.15.0) (2022-02-28)
133
-
134
-
135
- ### Bug Fixes
136
-
137
- * multiple items being highlighted at the same time ([#245](https://github.com/dialpad/dialtone-vue/issues/245)) ([05d6c6d](https://github.com/dialpad/dialtone-vue/commit/05d6c6d911d9a67eb4975296072b40cc25c924be))
138
-
139
-
140
- ### Features
141
-
142
- * add top banner info component for call info display ([#246](https://github.com/dialpad/dialtone-vue/issues/246)) ([8f47407](https://github.com/dialpad/dialtone-vue/commit/8f474073743c5123396252ec288a468affdaef4a))
143
-
144
- # [1.14.0](https://github.com/dialpad/dialtone-vue/compare/v1.13.2...v1.14.0) (2022-02-18)
145
-
146
-
147
- ### Bug Fixes
148
-
149
- * keyboard nav bugs, combobox, dropdown ([#236](https://github.com/dialpad/dialtone-vue/issues/236)) ([a7cf63e](https://github.com/dialpad/dialtone-vue/commit/a7cf63ee44eee7559daaae47b8252e5cab4359b7))
150
- * storybook addon-docs define alias ([#240](https://github.com/dialpad/dialtone-vue/issues/240)) ([dd83bac](https://github.com/dialpad/dialtone-vue/commit/dd83bacdb35658cf45d92493a44949da64828516))
151
-
152
-
153
- ### Features
154
-
155
- * add icon only variant with rectangular button ([#239](https://github.com/dialpad/dialtone-vue/issues/239)) ([dafd7cb](https://github.com/dialpad/dialtone-vue/commit/dafd7cbe1c64c32132487ae52fd9b42536c4e11c))
156
-
157
- # [1.14.0](https://github.com/dialpad/dialtone-vue/compare/v1.13.2...v1.14.0) (2022-02-18)
158
-
159
-
160
- ### Bug Fixes
161
-
162
- * keyboard nav bugs, combobox, dropdown ([#236](https://github.com/dialpad/dialtone-vue/issues/236)) ([a7cf63e](https://github.com/dialpad/dialtone-vue/commit/a7cf63ee44eee7559daaae47b8252e5cab4359b7))
163
- * storybook addon-docs define alias ([#240](https://github.com/dialpad/dialtone-vue/issues/240)) ([dd83bac](https://github.com/dialpad/dialtone-vue/commit/dd83bacdb35658cf45d92493a44949da64828516))
164
-
165
-
166
- ### Features
167
-
168
- * add icon only variant with rectangular button ([#239](https://github.com/dialpad/dialtone-vue/issues/239)) ([dafd7cb](https://github.com/dialpad/dialtone-vue/commit/dafd7cbe1c64c32132487ae52fd9b42536c4e11c))
169
-
170
- ## [1.13.2](https://github.com/dialpad/dialtone-vue/compare/v1.13.1...v1.13.2) (2022-02-03)
171
-
172
-
173
- ### Bug Fixes
174
-
175
- * apply fixed header classes only if slots not empty ([a0f58f1](https://github.com/dialpad/dialtone-vue/commit/a0f58f16db26293d6d2a2e779161f5f943e8d3a9))
176
-
177
- ## [1.13.1](https://github.com/dialpad/dialtone-vue/compare/v1.13.0...v1.13.1) (2022-01-27)
178
-
179
-
180
- ### Bug Fixes
181
-
182
- * update list item to apply hover when navigationType is set ([#234](https://github.com/dialpad/dialtone-vue/issues/234)) ([23c4dda](https://github.com/dialpad/dialtone-vue/commit/23c4ddace6d3b20a5a3b953e535091ca3750bb74))
183
-
184
- # [1.13.0](https://github.com/dialpad/dialtone-vue/compare/v1.12.0...v1.13.0) (2022-01-26)
185
-
186
-
187
- ### Bug Fixes
188
-
189
- * add null check to tip.unmount() call ([#232](https://github.com/dialpad/dialtone-vue/issues/232)) ([964f114](https://github.com/dialpad/dialtone-vue/commit/964f114881ce5240584ecac25bf678b84d2d91f7))
190
- * render popover in combobox list ([#230](https://github.com/dialpad/dialtone-vue/issues/230)) ([a18c9ae](https://github.com/dialpad/dialtone-vue/commit/a18c9aeb8dba982d0db2ec9639317d6808518b3a))
191
-
192
-
193
- ### Features
194
-
195
- * add class prop to tooltip content wrapper ([#233](https://github.com/dialpad/dialtone-vue/issues/233)) ([c3bf657](https://github.com/dialpad/dialtone-vue/commit/c3bf6574c0eeb0ae04486e61288f2d5376aeaaf3))
196
- * implement footer into popover ([#231](https://github.com/dialpad/dialtone-vue/issues/231)) ([6dd5ffe](https://github.com/dialpad/dialtone-vue/commit/6dd5ffe869db2b8852b06e931b9947866e31e020))
197
-
198
- # [1.12.0](https://github.com/dialpad/dialtone-vue/compare/v1.11.0...v1.12.0) (2022-01-24)
199
-
200
-
201
- ### Features
202
-
203
- * add event `dt-popover-close` to close popover instances ([#228](https://github.com/dialpad/dialtone-vue/issues/228)) ([65da860](https://github.com/dialpad/dialtone-vue/commit/65da860deecacdc8c219313beda433b5baa38e74))
204
- * dt-toggle ([#226](https://github.com/dialpad/dialtone-vue/issues/226)) ([002c780](https://github.com/dialpad/dialtone-vue/commit/002c7804d7495eeecdaad1fcab27a29557681db6))
205
-
206
- # [1.11.0](https://github.com/dialpad/dialtone-vue/compare/v1.10.1...v1.11.0) (2022-01-20)
207
-
208
-
209
- ### Features
210
-
211
- * add dialogClass prop to modal ([4500ade](https://github.com/dialpad/dialtone-vue/commit/4500adea34df6a5923b96a573284212761505ab5))
212
-
213
- ## [1.10.1](https://github.com/dialpad/dialtone-vue/compare/v1.10.0...v1.10.1) (2022-01-17)
214
-
215
-
216
- ### Bug Fixes
217
-
218
- * broken styles in list item ([#225](https://github.com/dialpad/dialtone-vue/issues/225)) ([be69a85](https://github.com/dialpad/dialtone-vue/commit/be69a85627a2e7e9c37af46a1e30f517e096bfc5))
219
-
220
- # [1.10.0](https://github.com/dialpad/dialtone-vue/compare/v1.9.0...v1.10.0) (2022-01-14)
221
-
222
-
223
- ### Bug Fixes
224
-
225
- * component skeleton documentation fixes ([#218](https://github.com/dialpad/dialtone-vue/issues/218)) ([58bdcf9](https://github.com/dialpad/dialtone-vue/commit/58bdcf9a98466c7e8cddd8986998d5902b8b3d48))
226
-
227
-
228
- ### Features
229
-
230
- * add focus-visible polyfill ([#222](https://github.com/dialpad/dialtone-vue/issues/222)) ([ce089a8](https://github.com/dialpad/dialtone-vue/commit/ce089a8dd8f5b1465d533b60fa9d82c1523990b4))
231
- * add header to component popover, update a11y documentation ([#217](https://github.com/dialpad/dialtone-vue/issues/217)) ([cdfb459](https://github.com/dialpad/dialtone-vue/commit/cdfb459541597ae5d56224f897186159b9fd18cc))
232
-
233
- # [1.9.0](https://github.com/dialpad/dialtone-vue/compare/v1.8.2...v1.9.0) (2022-01-13)
234
-
235
-
236
- ### Bug Fixes
237
-
238
- * include tabindex=-1 in focusFirstElement ([#219](https://github.com/dialpad/dialtone-vue/issues/219)) ([2ca4577](https://github.com/dialpad/dialtone-vue/commit/2ca4577fafca59ece95bfa86a7b0e6a880141e39))
239
-
240
-
241
- ### Features
242
-
243
- * add dropdown component ([#215](https://github.com/dialpad/dialtone-vue/issues/215)) ([d3a3918](https://github.com/dialpad/dialtone-vue/commit/d3a39184303b0ea59d01476c32f22909e693e9ad))
244
- * create combobox component ([#199](https://github.com/dialpad/dialtone-vue/issues/199)) ([cefdd5a](https://github.com/dialpad/dialtone-vue/commit/cefdd5ac88df07b9b6933f1d9692348f58ac0a50))
245
-
246
- ## [1.8.2](https://github.com/dialpad/dialtone-vue/compare/v1.8.1...v1.8.2) (2022-01-06)
247
-
248
-
249
- ### Bug Fixes
250
-
251
- * skeleton-text import ([#221](https://github.com/dialpad/dialtone-vue/issues/221)) ([ff6ca97](https://github.com/dialpad/dialtone-vue/commit/ff6ca978f20a20d8f160fecfde040deacdc735df))
252
-
253
- ## [1.8.1](https://github.com/dialpad/dialtone-vue/compare/v1.8.0...v1.8.1) (2022-01-06)
254
-
255
-
256
- ### Bug Fixes
257
-
258
- * bad exports on skeleton ([#220](https://github.com/dialpad/dialtone-vue/issues/220)) ([5b66ae7](https://github.com/dialpad/dialtone-vue/commit/5b66ae75c8034434b02f67b26f4fb9136966032e))
259
-
260
- # [1.8.0](https://github.com/dialpad/dialtone-vue/compare/v1.7.0...v1.8.0) (2022-01-04)
261
-
262
-
263
- ### Bug Fixes
264
-
265
- * popover stories ([#216](https://github.com/dialpad/dialtone-vue/issues/216)) ([8229467](https://github.com/dialpad/dialtone-vue/commit/8229467b25342540163e61f8fc5797beb1e780b2))
266
-
267
-
268
- ### Features
269
-
270
- * add keyboard shortcut component ([#209](https://github.com/dialpad/dialtone-vue/issues/209)) ([88efc48](https://github.com/dialpad/dialtone-vue/commit/88efc4882812d391bb9200c2c1f7cdb7dc56d5a9))
271
- * component skeleton ([#203](https://github.com/dialpad/dialtone-vue/issues/203)) ([ce2a4d2](https://github.com/dialpad/dialtone-vue/commit/ce2a4d21dc45924e0eec561299de768ba8ae5222))
272
-
273
- # [1.7.0](https://github.com/dialpad/dialtone-vue/compare/v1.6.1...v1.7.0) (2021-12-15)
274
-
275
-
276
- ### Bug Fixes
277
-
278
- * popover component. remove overlay on before destroy ([#214](https://github.com/dialpad/dialtone-vue/issues/214)) ([3f88ad8](https://github.com/dialpad/dialtone-vue/commit/3f88ad8b8c062094073917ae71030120ed6ac096))
279
-
280
-
281
- ### Features
282
-
283
- * add button group component ([#204](https://github.com/dialpad/dialtone-vue/issues/204)) ([99bbe17](https://github.com/dialpad/dialtone-vue/commit/99bbe1717627234d1dc7b091ec775403808daeed))
284
-
285
- ## [1.6.1](https://github.com/dialpad/dialtone-vue/compare/v1.6.0...v1.6.1) (2021-12-03)
286
-
287
-
288
- ### Bug Fixes
289
-
290
- * disable hide when append to is parent ([#207](https://github.com/dialpad/dialtone-vue/issues/207)) ([f478b3e](https://github.com/dialpad/dialtone-vue/commit/f478b3edc4ee4e306759b8e0d42ebbb4340aa733))
291
- * popover (props alignment between dt-popover and dt-tooltip) ([#205](https://github.com/dialpad/dialtone-vue/issues/205)) ([f935aad](https://github.com/dialpad/dialtone-vue/commit/f935aada1a5c23fc540c3479aab7cb605e47fcee))
292
-
293
- # [1.6.0](https://github.com/dialpad/dialtone-vue/compare/v1.5.0...v1.6.0) (2021-11-25)
294
-
295
-
296
- ### Bug Fixes
297
-
298
- * add our alpha sort to list-item. Change slot types to VNode for consistiency ([#202](https://github.com/dialpad/dialtone-vue/issues/202)) ([686b2b9](https://github.com/dialpad/dialtone-vue/commit/686b2b919f8882588f8374729538242071e0abcf))
299
-
300
-
301
- ### Features
302
-
303
- * components tooltip and popover. absolute positioning (dt 40) ([#194](https://github.com/dialpad/dialtone-vue/issues/194)) ([dd9e44d](https://github.com/dialpad/dialtone-vue/commit/dd9e44dbc1ea0a5439652e8b0597e5d3e254f68a)), closes [#131](https://github.com/dialpad/dialtone-vue/issues/131) [#177](https://github.com/dialpad/dialtone-vue/issues/177) [#178](https://github.com/dialpad/dialtone-vue/issues/178) [#135](https://github.com/dialpad/dialtone-vue/issues/135)
304
-
305
- # [1.5.0](https://github.com/dialpad/dialtone-vue/compare/v1.4.0...v1.5.0) (2021-11-19)
306
-
307
-
308
- ### Bug Fixes
309
-
310
- * list-item story prefix ([#196](https://github.com/dialpad/dialtone-vue/issues/196)) ([7129a5c](https://github.com/dialpad/dialtone-vue/commit/7129a5cb84a4a1de8512ffb30d188bb6de980cdb))
311
- * missing class ([#197](https://github.com/dialpad/dialtone-vue/issues/197)) ([f7c80cc](https://github.com/dialpad/dialtone-vue/commit/f7c80cc6dd23ef7dd3603581b61a211a702f06e6))
312
- * stories prefix name in the documentation ([#195](https://github.com/dialpad/dialtone-vue/issues/195)) ([fa59c03](https://github.com/dialpad/dialtone-vue/commit/fa59c03d3259c15dcc80611855912ed13721c499))
313
- * update list-section padding to match new default list item ([dca215e](https://github.com/dialpad/dialtone-vue/commit/dca215e8fc630fcc74036a62fa84267c4853e91b))
314
-
315
-
316
- ### Features
317
-
318
- * add `update:show` event in tooltip component ([#193](https://github.com/dialpad/dialtone-vue/issues/193)) ([3350659](https://github.com/dialpad/dialtone-vue/commit/3350659be2c8fec4993e27bcd4c56b42ca462b7c))
319
-
320
- # [1.4.0](https://github.com/dialpad/dialtone-vue/compare/v1.3.0...v1.4.0) (2021-11-12)
321
-
322
-
323
- ### Bug Fixes
324
-
325
- * removed css loader rule from storybook webpack config ([#189](https://github.com/dialpad/dialtone-vue/issues/189)) ([fefb690](https://github.com/dialpad/dialtone-vue/commit/fefb690c20ba45842f2df28fd75db7495b2948e6))
326
- * tooltip exception on mounted and beforeUpdate hook ([#190](https://github.com/dialpad/dialtone-vue/issues/190)) ([316008d](https://github.com/dialpad/dialtone-vue/commit/316008d2eb5ec2320a850fa5ad50e2ad9d074f47))
327
- * update repository URL ([#184](https://github.com/dialpad/dialtone-vue/issues/184)) ([37c14ad](https://github.com/dialpad/dialtone-vue/commit/37c14ad0376dc2560f0417fdb1b01fcb32a759a6))
328
-
329
-
330
- ### Features
331
-
332
- * allow footer slot to list section ([#187](https://github.com/dialpad/dialtone-vue/issues/187)) ([d5c89fa](https://github.com/dialpad/dialtone-vue/commit/d5c89fab241e3301c240ed772ec0b7b46c59e2f3))
333
-
334
- # [1.3.0](https://github.com/dialpad/dialtone-vue/compare/v1.2.1...v1.3.0) (2021-11-04)
335
-
336
-
337
- ### Bug Fixes
338
-
339
- * update node engine reqs for semantic-release ([#183](https://github.com/dialpad/dialtone-vue/issues/183)) ([f89c779](https://github.com/dialpad/dialtone-vue/commit/f89c7790fd18fb558ecb88ed1152ae9e0beec8bc))
340
-
341
-
342
- ### Features
343
-
344
- * add pass through class and props to tab list ([#181](https://github.com/dialpad/dialtone-vue/issues/181)) ([54dd054](https://github.com/dialpad/dialtone-vue/commit/54dd05418ab80ea1e7aaac16796ae7a785d4891b))
345
- * automatization for the releasing process ([#180](https://github.com/dialpad/dialtone-vue/issues/180)) ([8b397b9](https://github.com/dialpad/dialtone-vue/commit/8b397b952e8ecfdefd18e400fbcf8c5d27fec2b3))