@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/dist/components/HstCopyIcon.vue.d.ts +15 -0
- package/dist/components/design-tokens/HstColorShades.story.vue.d.ts +2 -0
- package/dist/components/design-tokens/HstColorShades.vue.d.ts +19 -0
- package/dist/index.d.ts +34 -0
- package/dist/index.es.js +2315 -86
- package/dist/style.css +91 -0
- package/package.json +17 -12
- package/src/components/HstCopyIcon.vue +34 -0
- package/src/components/design-tokens/HstColorShades.story.vue +381 -0
- package/src/components/design-tokens/HstColorShades.vue +80 -0
- package/src/index.ts +4 -0
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)
|