@avakhula/ui 0.0.18 → 0.0.20

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@avakhula/ui",
3
- "version": "0.0.18",
3
+ "version": "0.0.20",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.umd.cjs",
6
6
  "source": "src/index.js",
package/src/App.vue CHANGED
@@ -18,53 +18,54 @@ import IbCheckbox from "./components/Form/Checkbox/Checkbox.vue"
18
18
 
19
19
 
20
20
  const testData = [
21
- {
22
- id: "1",
23
- title: "Education",
24
- is_category: true,
25
- initiallyVisible: true,
26
- visible: true,
27
- isDisabled: false,
28
- checked: true,
29
- isChildrenVisible: true,
30
- },
31
- {
32
- id: "2",
33
- title: "Education 2",
34
- is_category: true,
35
- initiallyVisible: true,
36
- visible: true,
37
- isDisabled: false,
38
- checked: false,
39
- isChildrenVisible: true,
40
- },
41
- {
42
- id: "3",
43
- title: "Education 3",
44
- is_category: true,
45
- initiallyVisible: true,
46
- visible: true,
47
- isDisabled: false,
48
- checked: false,
49
- isChildrenVisible: true,
50
- },
51
- {
52
- id: "4",
53
- title: "Education 4",
54
- is_category: true,
55
- initiallyVisible: true,
56
- visible: true,
57
- isDisabled: false,
58
- checked: false,
59
- isChildrenVisible: true,
60
- },
21
+ // {
22
+ // id: "1",
23
+ // title: "Education",
24
+ // is_category: true,
25
+ // initiallyVisible: true,
26
+ // visible: true,
27
+ // isDisabled: false,
28
+ // checked: true,
29
+ // isChildrenVisible: true,
30
+ // },
31
+ {"id":2,"title":"test role","initiallyVisible":true,"visible":true,"isDisabled":false,"checked":false},
32
+ // {
33
+ // id: "2",
34
+ // title: "Education 2",
35
+ // is_category: true,
36
+ // initiallyVisible: true,
37
+ // visible: true,
38
+ // isDisabled: false,
39
+ // checked: false,
40
+ // isChildrenVisible: true,
41
+ // },
42
+ // {
43
+ // id: "3",
44
+ // title: "Education 3",
45
+ // is_category: true,
46
+ // initiallyVisible: true,
47
+ // visible: true,
48
+ // isDisabled: false,
49
+ // checked: false,
50
+ // isChildrenVisible: true,
51
+ // },
52
+ // {
53
+ // id: "4",
54
+ // title: "Education 4",
55
+ // is_category: true,
56
+ // initiallyVisible: true,
57
+ // visible: true,
58
+ // isDisabled: false,
59
+ // checked: false,
60
+ // isChildrenVisible: true,
61
+ // },
61
62
  ];
62
63
 
63
64
  export default {
64
65
  data() {
65
66
  return {
66
67
  options: testData,
67
- test: testData[1].id
68
+ test: testData[0].id
68
69
  };
69
70
  },
70
71
  watch: {
@@ -83,11 +84,11 @@ export default {
83
84
 
84
85
  changeValue() {
85
86
  console.log('test')
86
- this.test = testData[2].id
87
+ this.test = ''
87
88
  },
88
89
  changeValueInProps() {
89
90
  console.log('test')
90
- this.test = testData[3].id
91
+ this.test = testData[0].id
91
92
  },
92
93
  },
93
94
  };
@@ -374,6 +374,8 @@ export default {
374
374
  },
375
375
  modelValue(value) {
376
376
  this.val = value;
377
+ console.log('test hello from ')
378
+ debugger;
377
379
  this.setPreparedValues();
378
380
  },
379
381
  val(value) {