toggle-components-library 1.39.12-beta.0 → 1.39.12

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": "toggle-components-library",
3
- "version": "1.39.12-beta.0",
3
+ "version": "1.39.12",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -18,7 +18,7 @@
18
18
  :disabled="disabled"
19
19
  :style="`${fontFamily ? 'font-family: ' + fontFamily : ''}`"
20
20
  >
21
- <option value="">{{placeholder || (size == 'streamline' ? label : 'Select an option') }}</option>
21
+ <option value="">{{size == 'streamline' ? label : 'Select an option' }}</option>
22
22
  <option :value="option.value" v-for="(option, key) in options" v-bind:key="key">{{option.label}}</option>
23
23
  </select>
24
24
  </div>
@@ -83,10 +83,6 @@ export default {
83
83
  type: Boolean,
84
84
  required: false,
85
85
  default: false
86
- },
87
- placeholder: {
88
- type: String,
89
- required: false
90
86
  }
91
87
  },
92
88
 
@@ -89,6 +89,7 @@
89
89
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.1);
90
90
  display: flex;
91
91
  flex-direction: column;
92
+ align-items: center;
92
93
  justify-content: center;
93
94
  }
94
95