@avakhula/ui 0.0.346 → 0.0.347
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
package/src/App.vue
CHANGED
|
@@ -5,8 +5,6 @@
|
|
|
5
5
|
</template>
|
|
6
6
|
</ib-select>
|
|
7
7
|
|
|
8
|
-
<ib-text-editor :character-limit="40" name="test-name" character-limit-error-message="limit error"></ib-text-editor>
|
|
9
|
-
|
|
10
8
|
|
|
11
9
|
</template>
|
|
12
10
|
|
|
@@ -14,7 +12,7 @@
|
|
|
14
12
|
import IbSelect from "./components/TreeSelect/Select.vue";
|
|
15
13
|
import label from "@/components/Form/Label/Label.vue";
|
|
16
14
|
import {IbCheckboxGroup} from "./index.js";
|
|
17
|
-
import {IbRadio
|
|
15
|
+
import {IbRadio} from "./index.js";
|
|
18
16
|
const testData1 = [
|
|
19
17
|
{
|
|
20
18
|
id: "1",
|
|
@@ -142,6 +140,6 @@ export default {
|
|
|
142
140
|
checked: '1'
|
|
143
141
|
}
|
|
144
142
|
},
|
|
145
|
-
components: {
|
|
143
|
+
components: {IbSelect, IbCheckboxGroup, IbRadio}
|
|
146
144
|
}
|
|
147
145
|
</script>
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
class="ib-checkbox-group-label"
|
|
9
9
|
:required="required"
|
|
10
10
|
:info-text="infoText"
|
|
11
|
+
:tooltip-position="tooltipPosition"
|
|
11
12
|
>
|
|
12
13
|
{{ labelText }}
|
|
13
14
|
</ib-label>
|
|
@@ -52,6 +53,9 @@ export default {
|
|
|
52
53
|
height: {
|
|
53
54
|
type: String,
|
|
54
55
|
default: '290px'
|
|
56
|
+
},
|
|
57
|
+
tooltipPosition: {
|
|
58
|
+
type: String
|
|
55
59
|
}
|
|
56
60
|
},
|
|
57
61
|
components: {
|