@histoire/controls 0.2.2 → 0.2.3

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/src/index.ts CHANGED
@@ -3,11 +3,15 @@ import HstCheckboxVue from './components/checkbox/HstCheckbox.vue'
3
3
  import HstTextVue from './components/text/HstText.vue'
4
4
  import HstNumberVue from './components/number/HstNumber.vue'
5
5
  import HstTextareaVue from './components/textarea/HstTextarea.vue'
6
+ import HstColorShadesVue from './components/design-tokens/HstColorShades.vue'
7
+ import HstCopyIconVue from './components/HstCopyIcon.vue'
6
8
 
7
9
  export const HstCheckbox = HstCheckboxVue
8
10
  export const HstText = HstTextVue
9
11
  export const HstNumber = HstNumberVue
10
12
  export const HstTextarea = HstTextareaVue
13
+ export const HstColorShades = HstColorShadesVue
14
+ export const HstCopyIcon = HstCopyIconVue
11
15
 
12
16
  export function registerVueComponents (app: App) {
13
17
  app.component('HstCheckbox', HstCheckboxVue)