@histoire/controls 0.11.7 → 0.11.9
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 +2 -2
- package/dist/components/HstWrapper.vue.d.ts +3 -3
- package/dist/components/button/HstButton.vue.d.ts +2 -2
- package/dist/components/button/HstButtonGroup.vue.d.ts +2 -2
- package/dist/components/checkbox/HstCheckbox.vue.d.ts +2 -2
- package/dist/components/checkbox/HstCheckboxList.vue.d.ts +2 -2
- package/dist/components/checkbox/HstSimpleCheckbox.vue.d.ts +2 -2
- package/dist/components/design-tokens/HstColorShades.vue.d.ts +2 -2
- package/dist/components/design-tokens/HstTokenGrid.vue.d.ts +3 -3
- package/dist/components/design-tokens/HstTokenList.vue.d.ts +2 -2
- package/dist/components/json/HstJson.vue.d.ts +2 -2
- package/dist/components/number/HstNumber.vue.d.ts +2 -2
- package/dist/components/radio/HstRadio.vue.d.ts +2 -2
- package/dist/components/select/CustomSelect.vue.d.ts +2 -2
- package/dist/components/select/HstSelect.vue.d.ts +2 -2
- package/dist/components/slider/HstSlider.vue.d.ts +2 -2
- package/dist/components/text/HstText.vue.d.ts +2 -2
- package/dist/components/textarea/HstTextarea.vue.d.ts +2 -2
- package/dist/index.es.js +2450 -2380
- package/package.json +2 -2
- package/src/components/select/CustomSelect.vue +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@histoire/controls",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.9",
|
|
4
4
|
"description": "Prebuilt controls components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@codemirror/state": "^6.1.2",
|
|
39
39
|
"@codemirror/theme-one-dark": "^6.1.0",
|
|
40
40
|
"@codemirror/view": "^6.3.0",
|
|
41
|
-
"@histoire/vendors": "^0.11.
|
|
41
|
+
"@histoire/vendors": "^0.11.9"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@peeky/server": "^0.14.0",
|
|
@@ -44,6 +44,7 @@ function selectValue (value: any, hide: () => void) {
|
|
|
44
44
|
<template>
|
|
45
45
|
<VDropdown
|
|
46
46
|
auto-size
|
|
47
|
+
auto-boundary-max-size
|
|
47
48
|
>
|
|
48
49
|
<div
|
|
49
50
|
class="htw-cursor-pointer htw-w-full htw-outline-none htw-px-2 htw-h-[27px] -htw-my-1 htw-border htw-border-solid htw-border-black/25 dark:htw-border-white/25 hover:htw-border-primary-500 dark:hover:htw-border-primary-500 htw-rounded-sm htw-flex htw-gap-2 htw-items-center htw-leading-normal"
|