classcard-ui 0.2.807 → 0.2.809
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/dist/classcard-ui.common.js +54 -55
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.css +1 -1
- package/dist/classcard-ui.umd.js +54 -55
- package/dist/classcard-ui.umd.js.map +1 -1
- package/dist/classcard-ui.umd.min.js +1 -1
- package/dist/classcard-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CMultiselect/CMultiselect.vue +1 -2
- package/src/stories/CMultiselect.stories.js +6 -1
package/package.json
CHANGED
|
@@ -185,7 +185,6 @@ export default {
|
|
|
185
185
|
subLabel: String,
|
|
186
186
|
placeholder: {
|
|
187
187
|
type: String,
|
|
188
|
-
default: "Type and hit enter to save...",
|
|
189
188
|
},
|
|
190
189
|
// whether multiple fields are allowed or not
|
|
191
190
|
isMultiple: {
|
|
@@ -350,7 +349,7 @@ export default {
|
|
|
350
349
|
@apply mt-2 max-h-60 overflow-auto rounded-md bg-white py-0 text-base shadow-lg ring-1 ring-opacity-5 focus:outline-none sm:text-sm;
|
|
351
350
|
}
|
|
352
351
|
.vs__dropdown-option {
|
|
353
|
-
@apply py-2;
|
|
352
|
+
@apply whitespace-normal py-2;
|
|
354
353
|
}
|
|
355
354
|
.vs__dropdown-toggle.vs__dropdown-option--highlight {
|
|
356
355
|
@apply bg-indigo-700 text-white;
|
|
@@ -95,9 +95,14 @@ Default.args = {
|
|
|
95
95
|
children: [{ id: "15820_Package", text: "Mathematics" }],
|
|
96
96
|
details: "something@gmail.com",
|
|
97
97
|
},
|
|
98
|
+
{
|
|
99
|
+
text: "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. ",
|
|
100
|
+
children: [{ id: "15820_Package", text: "Mathematics" }],
|
|
101
|
+
details: "something@gmail.com",
|
|
102
|
+
},
|
|
98
103
|
],
|
|
99
104
|
optionLabel: "text",
|
|
100
105
|
label: "Active",
|
|
101
|
-
showOptionImage:
|
|
106
|
+
showOptionImage: false,
|
|
102
107
|
filterable: false,
|
|
103
108
|
};
|