aloha-vue 1.0.15 → 1.0.18

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.
Files changed (107) hide show
  1. package/docs/package.json +2 -1
  2. package/docs/src/components/TheMenu/TheMenu.js +15 -0
  3. package/docs/src/router/index.js +15 -0
  4. package/docs/src/views/PageDropdown/PageDropdown.js +13 -0
  5. package/docs/src/views/PageDropdown/PageDropdown.pug +29 -0
  6. package/docs/src/views/PageDropdown/PageDropdown.vue +2 -0
  7. package/docs/src/views/PageForm/PageForm.js +200 -0
  8. package/docs/src/views/PageForm/PageForm.pug +31 -0
  9. package/docs/src/views/PageForm/PageForm.vue +2 -0
  10. package/docs/src/views/PageInput/PageInput.js +2 -1
  11. package/docs/src/views/PageInput/PageInput.pug +11 -0
  12. package/docs/src/views/PageSelect/PageSelect.js +59 -0
  13. package/docs/src/views/PageSelect/PageSelect.pug +53 -0
  14. package/docs/src/views/PageSelect/PageSelect.vue +2 -0
  15. package/docs/src/views/PageSpinner/PageSpinner.pug +6 -8
  16. package/docs/styles/styles.scss +0 -6
  17. package/package.json +2 -2
  18. package/src/ADropdown/ADropdown.js +126 -46
  19. package/src/AModal/AModal.js +70 -10
  20. package/src/ASlot/ASlot.js +3 -0
  21. package/src/ASpinner/ASpinner.js +10 -41
  22. package/src/ATable/ATableActionItem/ATableActionItem.js +3 -0
  23. package/src/ATable/ATableHeaderThAction/ATableHeaderThAction.js +5 -1
  24. package/src/ATable/ATableHeaderThAction/ATableHeaderThActionItem.js +5 -3
  25. package/src/ATable/ATableTdAction/ATableTdAction.js +6 -1
  26. package/src/ATable/ATableTdActionItem/ATableTdActionItem.js +11 -0
  27. package/src/compositionAPI/AEventOutsideAPI.js +46 -0
  28. package/src/const/AFocusableElements.js +13 -0
  29. package/src/const/AKeysCode.js +8 -0
  30. package/src/styles/components/ADropdown.scss +24 -19
  31. package/src/styles/components/ATable.scss +17 -7
  32. package/src/styles/components/ui/AErrors.scss +5 -0
  33. package/src/styles/components/ui/AFieldset.scss +27 -0
  34. package/src/styles/components/ui/AForm.scss +4 -0
  35. package/src/styles/components/ui/ASelect.scss +143 -0
  36. package/src/styles/components/ui/ASwitch.scss +39 -19
  37. package/src/styles/components/ui/ui.scss +27 -5
  38. package/src/ui/ACheckbox/ACheckbox.js +69 -49
  39. package/src/ui/ACheckbox/ACheckboxItem.js +6 -12
  40. package/src/ui/AErrors/AErrors.js +155 -0
  41. package/src/ui/AErrors/AErrorsElement.js +206 -0
  42. package/src/ui/AErrorsText/AErrorsText.js +47 -0
  43. package/src/ui/AFieldset/AFieldset.js +116 -0
  44. package/src/ui/AForm/AForm.js +131 -0
  45. package/src/ui/AInput/AInput.js +86 -79
  46. package/src/ui/ALabel/ALabel.js +31 -26
  47. package/src/ui/AOneCheckbox/AOneCheckbox.js +61 -37
  48. package/src/ui/ARadio/ARadio.js +74 -49
  49. package/src/ui/ARadio/ARadioItem.js +6 -12
  50. package/src/ui/ARequired/ARequired.js +20 -0
  51. package/src/ui/ASelect/ASelect.js +604 -0
  52. package/src/ui/ASelect/ASelectElement.js +151 -0
  53. package/src/ui/ASelect/ASelectGroup.js +120 -0
  54. package/src/ui/ASelect/ASelectLabelElement.js +37 -0
  55. package/src/ui/ASelect/ASelectValueCloseable.js +66 -0
  56. package/src/ui/ASelect/UiSelect/ReadOnlyMixin.js +120 -0
  57. package/src/ui/ASelect/UiSelect/UiMultiselectReadOnly/UiMultiselectReadOnly.js +62 -0
  58. package/src/ui/ASelect/UiSelect/UiMultiselectReadOnly/UiMultiselectReadOnly.pug +61 -0
  59. package/src/ui/ASelect/UiSelect/UiMultiselectReadOnly/UiMultiselectReadOnly.vue +2 -0
  60. package/src/ui/ASelect/UiSelect/UiMultiselectReadOnly/UiMultiselectReadOnlyElement/UiMultiselectReadOnlyElement.js +39 -0
  61. package/src/ui/ASelect/UiSelect/UiMultiselectReadOnly/UiMultiselectReadOnlyElement/UiMultiselectReadOnlyElement.pug +6 -0
  62. package/src/ui/ASelect/UiSelect/UiMultiselectReadOnly/UiMultiselectReadOnlyElement/UiMultiselectReadOnlyElement.vue +2 -0
  63. package/src/ui/ASelect/UiSelect/UiSelect.js +1119 -0
  64. package/src/ui/ASelect/UiSelect/UiSelect.pug +371 -0
  65. package/src/ui/ASelect/UiSelect/UiSelect.vue +2 -0
  66. package/src/ui/ASelect/UiSelect/UiSelectElement/UiSelectElement.js +174 -0
  67. package/src/ui/ASelect/UiSelect/UiSelectElement/UiSelectElement.vue +1 -0
  68. package/src/ui/ASelect/UiSelect/UiSelectOrdered/UiSelectOrdered.js +133 -0
  69. package/src/ui/ASelect/UiSelect/UiSelectOrdered/UiSelectOrdered.pug +47 -0
  70. package/src/ui/ASelect/UiSelect/UiSelectOrdered/UiSelectOrdered.vue +2 -0
  71. package/src/ui/ASelect/UiSelect/UiSelectOrdered/UiSelectOrderedElement/UiSelectOrderedElement.js +99 -0
  72. package/src/ui/ASelect/UiSelect/UiSelectOrdered/UiSelectOrderedElement/UiSelectOrderedElement.pug +38 -0
  73. package/src/ui/ASelect/UiSelect/UiSelectOrdered/UiSelectOrderedElement/UiSelectOrderedElement.vue +2 -0
  74. package/src/ui/ASelect/UiSelect/UiSelectReadOnly/UiSelectReadOnly.js +31 -0
  75. package/src/ui/ASelect/UiSelect/UiSelectReadOnly/UiSelectReadOnly.pug +21 -0
  76. package/src/ui/ASelect/UiSelect/UiSelectReadOnly/UiSelectReadOnly.vue +2 -0
  77. package/src/ui/ASelect/compositionAPI/ASelectDataAPI.js +66 -0
  78. package/src/ui/ASelect/compositionAPI/ASelectModelChangeAPI.js +98 -0
  79. package/src/ui/ASelect/compositionAPI/ASelectSearchAPI.js +80 -0
  80. package/src/ui/ASelect/compositionAPI/ASelectToggleAPI.js +221 -0
  81. package/src/ui/ASwitch/ASwitch.js +78 -91
  82. package/src/ui/ATemplate/ATemplate.js +47 -0
  83. package/src/ui/ATextarea/ATextarea.js +219 -0
  84. package/src/ui/AUiComponents.js +25 -0
  85. package/src/ui/compositionApi/UiAPI.js +53 -64
  86. package/src/ui/compositionApi/UiCheckboxRadioItem.js +4 -7
  87. package/src/ui/compositionApi/UiClearButtonAPI.js +1 -20
  88. package/src/ui/compositionApi/UiDataWithKeyIdAndLabelAPI.js +68 -0
  89. package/src/ui/compositionApi/UiDependenciesAPI.js +47 -0
  90. package/src/ui/compositionApi/UiErrorsAPI.js +37 -0
  91. package/src/ui/const/AKeyId.js +1 -0
  92. package/src/ui/const/AKeyLabel.js +1 -0
  93. package/src/ui/mixins/UiMixinProps.js +41 -6
  94. package/src/ADropdown/PuxDropdown/PuxDropdown.js +0 -239
  95. package/src/ADropdown/PuxDropdown/PuxDropdown.pug +0 -49
  96. package/src/ADropdown/PuxDropdown/PuxDropdown.vue +0 -2
  97. package/src/ADropdown/PuxPopover/PuxPopover.js +0 -197
  98. package/src/ADropdown/PuxPopover/PuxPopover.pug +0 -13
  99. package/src/ADropdown/PuxPopover/PuxPopover.vue +0 -2
  100. package/src/ADropdown/TooltipContent/TooltipContent.js +0 -109
  101. package/src/ADropdown/TooltipContent/TooltipContent.pug +0 -17
  102. package/src/ADropdown/TooltipContent/TooltipContent.vue +0 -2
  103. package/src/ATextarea/ATextarea.js +0 -256
  104. package/src/styles/components/ASpinner.scss +0 -24
  105. package/src/ui/compositionApi/UiCheckboxRadioAPI.js +0 -35
  106. package/src/ui/compositionApi/UiCheckboxRadioIsWidthAutoAPI.js +0 -18
  107. package/src/ui/compositionApi/UiLabelFloatAPI.js +0 -18
package/docs/package.json CHANGED
@@ -11,7 +11,8 @@
11
11
  "build-css": "node-sass --include-path scss styles/styles.scss public/styles.css"
12
12
  },
13
13
  "dependencies": {
14
- "aloha-css": "1.0.14",
14
+ "@popperjs/core": "2.11.6",
15
+ "aloha-css": "1.0.25",
15
16
  "lodash-es": "^4.17.21",
16
17
  "vue": "3.2.31",
17
18
  "vue-router": "4.0.14",
@@ -73,6 +73,21 @@ export default {
73
73
  name: "PageRadio",
74
74
  label: "Radio",
75
75
  },
76
+ {
77
+ id: "select",
78
+ name: "PageSelect",
79
+ label: "Select",
80
+ },
81
+ {
82
+ id: "form",
83
+ name: "PageForm",
84
+ label: "Form",
85
+ },
86
+ {
87
+ id: "dropdown",
88
+ name: "PageDropdown",
89
+ label: "Dropdown",
90
+ },
76
91
  ],
77
92
  };
78
93
  },
@@ -84,6 +84,21 @@ const ROUTES = [
84
84
  name: "PageRadio",
85
85
  component: () => import(/* webpackChunkName: "PageRadio" */ "../views/PageRadio/PageRadio.vue"),
86
86
  },
87
+ {
88
+ path: "/select",
89
+ name: "PageSelect",
90
+ component: () => import(/* webpackChunkName: "PageSelect" */ "../views/PageSelect/PageSelect.vue"),
91
+ },
92
+ {
93
+ path: "/form",
94
+ name: "PageForm",
95
+ component: () => import(/* webpackChunkName: "PageForm" */ "../views/PageForm/PageForm.vue"),
96
+ },
97
+ {
98
+ path: "/dropdown",
99
+ name: "PageDropdown",
100
+ component: () => import(/* webpackChunkName: "PageDropdown" */ "../views/PageDropdown/PageDropdown.vue"),
101
+ },
87
102
  {
88
103
  // If the routing configuration '*' reports an error, replace it with '/: catchAll(. *)'
89
104
  // caught Error: Catch all routes ("*") must now be defined using a param with a custom regexp
@@ -0,0 +1,13 @@
1
+ import ADropdown from "../../../../src/ADropdown/ADropdown";
2
+
3
+ export default {
4
+ name: "PageDropdown",
5
+ components: {
6
+ ADropdown,
7
+ },
8
+ setup() {
9
+ return {
10
+
11
+ };
12
+ },
13
+ };
@@ -0,0 +1,29 @@
1
+ div
2
+ h1 ADropdown
3
+
4
+ a-dropdown(
5
+ button-class: "a_btn a_btn_link",
6
+ )
7
+ template(
8
+ v-slot:button
9
+ )
10
+ span Click me
11
+
12
+ template(
13
+ v-slot:dropdown
14
+ )
15
+ li
16
+ button.a_dropdown__item(
17
+ type="button"
18
+ ) Item 1
19
+ li.a_dropdown__divider
20
+ li
21
+ button.a_dropdown__item(
22
+ type="button"
23
+ ) Item 2
24
+ li
25
+ a.a_dropdown__item(
26
+ href="#"
27
+ ) Item 3
28
+
29
+ button.a_btn.a_btn_primary.a_ml_2 Test
@@ -0,0 +1,2 @@
1
+ <template lang="pug" src="./PageDropdown.pug"></template>
2
+ <script src="./PageDropdown.js"></script>
@@ -0,0 +1,200 @@
1
+ import AForm from "../../../../src/ui/AForm/AForm";
2
+
3
+ export default {
4
+ name: "PageForm",
5
+ components: {
6
+ AForm,
7
+ },
8
+ data() {
9
+ return {
10
+ model: undefined,
11
+ selectData: [
12
+ {
13
+ label: "Aloha 1",
14
+ id: "aloha_1",
15
+ group: "group 1",
16
+ },
17
+ {
18
+ label: "Aloha 2",
19
+ id: "aloha_2",
20
+ },
21
+ {
22
+ label: "Aloha 3",
23
+ id: "aloha_3",
24
+ group: "group 1",
25
+ },
26
+ {
27
+ label: "Aloha 4",
28
+ id: "aloha_4",
29
+ },
30
+ {
31
+ label: "Aloha 5",
32
+ id: "aloha_5",
33
+ group: "group 2",
34
+ },
35
+ {
36
+ label: "AlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAloha 6",
37
+ id: "aloha_6",
38
+ group: "group 2",
39
+ },
40
+ {
41
+ label: "AlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAloha 7",
42
+ id: "aloha_7",
43
+ group: "group 2",
44
+ },
45
+ {
46
+ label: "AlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAloha 8",
47
+ id: "aloha_8",
48
+ },
49
+ ],
50
+
51
+ errors: undefined,
52
+ };
53
+ },
54
+ computed: {
55
+ data() {
56
+ return [
57
+ {
58
+ type: "text",
59
+ label: "Aloha 1",
60
+ id: "aloha1",
61
+ classColumn: "a_column_8",
62
+ required: true,
63
+ },
64
+ {
65
+ type: "text",
66
+ label: "Aloha 2",
67
+ id: "aloha2",
68
+ classColumn: "a_column_4",
69
+ helpText: "ALOHA help!!!",
70
+ },
71
+ {
72
+ type: "select",
73
+ label: "Aloha 3",
74
+ id: "aloha3",
75
+ classColumn: "a_column_5",
76
+ keyId: "id",
77
+ keyLabel: "label",
78
+ search: true,
79
+ keyGroup: "group",
80
+ data: this.selectData,
81
+ helpText: "ALOHA help!!!",
82
+ },
83
+ {
84
+ type: "text",
85
+ label: "Aloha 4",
86
+ id: "aloha4",
87
+ classColumn: "a_column_4",
88
+ dependencies: [
89
+ {
90
+ id: "aloha3",
91
+ value: "aloha_1",
92
+ },
93
+ ],
94
+ },
95
+ {
96
+ type: "text",
97
+ label: "Aloha 5",
98
+ id: "aloha5",
99
+ classColumn: "a_column_4",
100
+ dependencies: {
101
+ id: "aloha3",
102
+ value: "aloha_2",
103
+ },
104
+ },
105
+ {
106
+ type: "textarea",
107
+ label: "Aloha 6",
108
+ id: "aloha6",
109
+ classColumn: "a_column_12",
110
+ helpText: "ALOHA help!!!",
111
+ },
112
+ {
113
+ type: "switch",
114
+ label: "Aloha 7",
115
+ id: "aloha7",
116
+ classColumn: "a_column_5",
117
+ helpText: "ALOHA help!!!",
118
+ },
119
+ {
120
+ type: "oneCheckbox",
121
+ label: "Aloha 8",
122
+ id: "aloha8",
123
+ classColumn: "a_column_5",
124
+ helpText: "ALOHA help!!!",
125
+ },
126
+ {
127
+ type: "checkbox",
128
+ label: "Aloha 9",
129
+ id: "aloha9",
130
+ classColumn: "a_column_6",
131
+ keyId: "id",
132
+ keyLabel: "label",
133
+ data: this.selectData,
134
+ helpText: "ALOHA help!!!",
135
+ },
136
+ {
137
+ type: "radio",
138
+ label: "Aloha 10",
139
+ id: "aloha10",
140
+ classColumn: "a_column_6",
141
+ keyId: "id",
142
+ keyLabel: "label",
143
+ data: this.selectData,
144
+ helpText: "ALOHA help!!!",
145
+ },
146
+ {
147
+ type: "fieldset",
148
+ label: "Aloha 11",
149
+ id: "aloha11",
150
+ classColumn: "a_column_8",
151
+ helpText: "ALOHA help!!!",
152
+ children: [
153
+ {
154
+ type: "text",
155
+ label: "Aloha 12",
156
+ id: "aloha12",
157
+ classColumn: "a_column_4",
158
+ },
159
+ {
160
+ type: "text",
161
+ label: "Aloha 13",
162
+ id: "aloha13",
163
+ classColumn: "a_column_8",
164
+ },
165
+ ],
166
+ },
167
+ {
168
+ type: "template",
169
+ id: "aloha14",
170
+ classColumn: "a_column_8",
171
+ html: "<strong>TEMPLATE</strong>",
172
+ },
173
+ ];
174
+ },
175
+ },
176
+ methods: {
177
+ validate() {
178
+ const TEXT_INVALID = "Example invalid text";
179
+ this.errors = {
180
+ aloha1: [TEXT_INVALID, TEXT_INVALID],
181
+ aloha2: [TEXT_INVALID],
182
+ aloha3: [TEXT_INVALID],
183
+ aloha4: [TEXT_INVALID],
184
+ aloha5: [TEXT_INVALID],
185
+ aloha6: [TEXT_INVALID],
186
+ aloha7: [TEXT_INVALID],
187
+ aloha8: [TEXT_INVALID],
188
+ aloha9: [TEXT_INVALID],
189
+ aloha10: [TEXT_INVALID],
190
+ aloha11: [TEXT_INVALID],
191
+ aloha12: [TEXT_INVALID],
192
+ aloha13: [TEXT_INVALID],
193
+ };
194
+ },
195
+
196
+ reset() {
197
+ this.errors = undefined;
198
+ },
199
+ },
200
+ };
@@ -0,0 +1,31 @@
1
+ div
2
+ h1 AForm
3
+
4
+ button.a_btn.a_btn_primary(
5
+ type="button"
6
+ @click="validate"
7
+ ) Validation
8
+ button.a_btn.a_btn_secondary.a_ml_2(
9
+ type="button"
10
+ @click="reset"
11
+ ) Reset
12
+ a-form(
13
+ v-model="model"
14
+ :data="data"
15
+ :errors="errors"
16
+ id-prefix="test_"
17
+ )
18
+ template(
19
+ v-slot:formPrepend
20
+ )
21
+ div
22
+ strong SLOT "formPrepend"
23
+
24
+ template(
25
+ v-slot:formAppend
26
+ )
27
+ div
28
+ strong SLOT "formAppend"
29
+
30
+ br
31
+ pre {{ model }}
@@ -0,0 +1,2 @@
1
+ <template lang="pug" src="./PageForm.pug"></template>
2
+ <script src="./PageForm.js"></script>
@@ -1,5 +1,5 @@
1
1
  import AInput from "../../../../src/ui/AInput/AInput";
2
- import ATextarea from "../../../../src/ATextarea/ATextarea";
2
+ import ATextarea from "../../../../src/ui/ATextarea/ATextarea";
3
3
 
4
4
 
5
5
  export default {
@@ -12,6 +12,7 @@ export default {
12
12
  return {
13
13
  model1: "aloha",
14
14
  model2: "hola",
15
+ model3: "",
15
16
  };
16
17
  },
17
18
  methods: {
@@ -22,4 +22,15 @@ div
22
22
  div model2:
23
23
  pre {{ model2 }}
24
24
 
25
+ h2 Textarea 2
26
+ a-textarea(
27
+ id="textarea3"
28
+ v-model="model3"
29
+ type="text"
30
+ label="Textarea 2"
31
+ :required="true"
32
+ )
33
+ div model3:
34
+ pre {{ model3 }}
35
+
25
36
 
@@ -0,0 +1,59 @@
1
+ import ASelect from "../../../../src/ui/ASelect/ASelect";
2
+
3
+ export default {
4
+ name: "PageSelect",
5
+ components: {
6
+ ASelect,
7
+ },
8
+ data() {
9
+ return {
10
+ model: undefined,
11
+ modelArr: undefined,
12
+ modelArr2: undefined,
13
+ data: [
14
+ {
15
+ label: "Aloha 1",
16
+ id: "aloha_1",
17
+ group: "group 1",
18
+ },
19
+ {
20
+ label: "Aloha 2",
21
+ id: "aloha_2",
22
+ },
23
+ {
24
+ label: "Aloha 3",
25
+ id: "aloha_3",
26
+ group: "group 1",
27
+ },
28
+ {
29
+ label: "Aloha 4",
30
+ id: "aloha_4",
31
+ },
32
+ {
33
+ label: "Aloha 5",
34
+ id: "aloha_5",
35
+ group: "group 2",
36
+ },
37
+ {
38
+ label: "AlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAloha 6",
39
+ id: "aloha_6",
40
+ group: "group 2",
41
+ },
42
+ {
43
+ label: "AlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAloha 7",
44
+ id: "aloha_7",
45
+ group: "group 2",
46
+ },
47
+ {
48
+ label: "AlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAlohaAloha 8",
49
+ id: "aloha_8",
50
+ },
51
+ ],
52
+ };
53
+ },
54
+ methods: {
55
+ getLabel({ item }) {
56
+ return `callback: ${ item.label }`;
57
+ },
58
+ },
59
+ };
@@ -0,0 +1,53 @@
1
+ div
2
+ h1 ASelect
3
+ a-select(
4
+ v-model="model"
5
+ :data="data"
6
+ key-id="id"
7
+ key-label="label"
8
+ label="Test label"
9
+ type="select"
10
+ :search="true"
11
+ key-group="group"
12
+ sort-order-group="desc"
13
+ )
14
+ div model: {{ model }}
15
+ a-select(
16
+ v-model="model"
17
+ :data="data"
18
+ key-id="id"
19
+ :key-label-callback="getLabel"
20
+ label="Test label callback"
21
+ type="select"
22
+ :search="true"
23
+ sort-order="desc"
24
+ )
25
+
26
+ br
27
+ a-select(
28
+ v-model="modelArr"
29
+ :data="data"
30
+ key-id="id"
31
+ key-label="label"
32
+ label="Test label multiselect"
33
+ type="multiselect"
34
+ :search="true"
35
+ :is-select-all="true"
36
+ :is-deselect-all="true"
37
+ )
38
+ div modelArr: {{ modelArr }}
39
+
40
+ br
41
+ a-select(
42
+ v-model="modelArr2"
43
+ :data="data"
44
+ key-id="id"
45
+ key-label="label"
46
+ label="Test label multiselect2"
47
+ type="multiselect"
48
+ :search="true"
49
+ :is-select-all="true"
50
+ :is-deselect-all="true"
51
+ :is-selection-closeable="false"
52
+ )
53
+ div modelArr2: {{ modelArr2 }}
@@ -0,0 +1,2 @@
1
+ <template lang="pug" src="./PageSelect.pug"></template>
2
+ <script src="./PageSelect.js"></script>
@@ -1,12 +1,10 @@
1
1
  div
2
2
  h1 PageSpinner
3
3
  a-spinner
4
+ div
5
+ button.a_btn.a_btn_primary
6
+ a-spinner.a_spinner_small
7
+ span Click me
4
8
 
5
- a-spinner(
6
- type-color="primary"
7
- )
8
-
9
- a-spinner(
10
- type-color="warning"
11
- type="grow"
12
- )
9
+ div
10
+ a-spinner.a_spinner_large
@@ -6,12 +6,6 @@ html {
6
6
  box-sizing: inherit;
7
7
  }
8
8
 
9
- a, button {
10
- &:focus {
11
- box-shadow: inset green 0 0 1px 4px;
12
- }
13
- }
14
-
15
9
  body {
16
10
  margin: 0;
17
11
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "aloha-vue",
3
3
  "description": "Project aloha",
4
- "version": "1.0.15",
4
+ "version": "1.0.18",
5
5
  "author": "Ilia Brykin",
6
6
  "dependencies": {
7
7
  "@popperjs/core": "2.11.5",
8
- "aloha-css": "1.0.10",
8
+ "aloha-css": "1.0.25",
9
9
  "lodash-es": "^4.17.21",
10
10
  "vue": "3.2.37"
11
11
  }