inertia-bootstrap-forms 1.0.28 → 1.0.30

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": "inertia-bootstrap-forms",
3
- "version": "1.0.28",
3
+ "version": "1.0.30",
4
4
  "description": "Create bootstrap forms with inertia and twitter bootstrap",
5
5
  "main": "dist/inertia-bootstrap-forms.cjs.js",
6
6
  "module": "dist/inertia-bootstrap-forms.es.js",
@@ -45,8 +45,8 @@
45
45
  "vue3-bootstrap-components": "1.0.42"
46
46
  },
47
47
  "peerDependencies": {
48
- "@inertiajs/vue3": "^2.0.3",
49
- "vue": "^3.0.0"
48
+ "@inertiajs/vue3": ">2.0",
49
+ "vue": "^3.0"
50
50
  },
51
51
  "devDependencies": {
52
52
  "sass-embedded": "^1.89.2",
@@ -112,7 +112,7 @@ export default {
112
112
  </div>
113
113
  </template>
114
114
 
115
- <style scoped>
115
+ <style>
116
116
  .star-rating,
117
117
  .star-rating-container {
118
118
  display: flex;
@@ -20,7 +20,7 @@
20
20
  }
21
21
 
22
22
  .choices.is-disabled .choices__inner, .choices.is-disabled .choices__input {
23
- background-color: #eaeaea;
23
+ background-color: var(--bs-body-bg, #ffffff);
24
24
  cursor: not-allowed;
25
25
  -webkit-user-select: none;
26
26
  user-select: none
@@ -195,9 +195,9 @@
195
195
  font-weight: 500;
196
196
  margin-right: 3.75px;
197
197
  margin-bottom: 3.75px;
198
- background-color: #999999;
199
- border: 1px solid #999999;
200
- color: #fff;
198
+ background-color: var(--bs-body-secondary, #999999);
199
+ border: 1px solid var(--bs-body-secondary, #999999);
200
+ color: var(--bs-body-color, #ffffff);
201
201
  word-break: break-all;
202
202
  box-sizing: border-box
203
203
  }
@@ -212,13 +212,13 @@
212
212
  }
213
213
 
214
214
  .choices__list--multiple .choices__item.is-highlighted {
215
- background-color: #004a5c;
216
- border: 1px solid #003642
215
+ background-color: var(--bs-secondary, #003642);
216
+ border: 1px solid var(--bs-secondary, #003642)
217
217
  }
218
218
 
219
219
  .is-disabled .choices__list--multiple .choices__item {
220
- background-color: #aaa;
221
- border: 1px solid #919191
220
+ background-color: var(--bs-secondary, #003642);
221
+ border: 1px solid var(--bs-secondary, #003642)
222
222
  }
223
223
 
224
224
  .choices__list--dropdown, .choices__list[aria-expanded] {
@@ -226,8 +226,8 @@
226
226
  z-index: 99999;
227
227
  position: absolute;
228
228
  width: 100%;
229
- background-color: #fff;
230
- border: 1px solid #ddd;
229
+ background-color: var(--bs-secondary-bg, #ddd);
230
+ border: 1px solid var(--bs-secondary-bg, #ddd);
231
231
  top: 100%;
232
232
  margin-top: -1px;
233
233
  border-bottom-left-radius: var(--bs-border-radius);
@@ -241,7 +241,7 @@
241
241
  }
242
242
 
243
243
  .is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
244
- border-color: #b7b7b7
244
+ border-color: var(--bs-secondary-bg, #b7b7b7)
245
245
  }
246
246
 
247
247
  .is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {