gd-bs 6.8.3 → 6.8.4
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/indexv2.html
CHANGED
|
@@ -479,25 +479,25 @@
|
|
|
479
479
|
<bs-tooltip placement="GD.Components.TooltipPlacements.Right" type="GD.Components.TooltipTypes.Dark"
|
|
480
480
|
options='{ "trigger": "click" }'>
|
|
481
481
|
<btn-props type="GD.Components.ButtonTypes.OutlineDanger">Test Tooltip</btn-props>
|
|
482
|
-
This is a tooltip.
|
|
482
|
+
This is a tooltip. It was easy to make.
|
|
483
483
|
</bs-tooltip>
|
|
484
484
|
|
|
485
|
-
<bs-tooltip placement="GD.Components.TooltipPlacements.
|
|
485
|
+
<bs-tooltip placement="GD.Components.TooltipPlacements.BottomRight" type="GD.Components.TooltipTypes.LightBorder"
|
|
486
486
|
options='{ "trigger": "click" }'>
|
|
487
487
|
<btn-props type="GD.Components.ButtonTypes.OutlineDanger">Test Tooltip</btn-props>
|
|
488
|
-
This is a tooltip.
|
|
488
|
+
This is a tooltip. It was easy to make.
|
|
489
489
|
</bs-tooltip>
|
|
490
490
|
|
|
491
|
-
<bs-tooltip placement="GD.Components.TooltipPlacements.
|
|
491
|
+
<bs-tooltip placement="GD.Components.TooltipPlacements.BottomLeft" type="GD.Components.TooltipTypes.Dark"
|
|
492
492
|
options='{ "trigger": "click" }'>
|
|
493
493
|
<btn-props type="GD.Components.ButtonTypes.OutlineDanger">Test Tooltip</btn-props>
|
|
494
|
-
This is a tooltip.
|
|
494
|
+
This is a tooltip. It was easy to make.
|
|
495
495
|
</bs-tooltip>
|
|
496
496
|
|
|
497
497
|
<bs-tooltip placement="GD.Components.TooltipPlacements.Bottom" type="GD.Components.TooltipTypes.Dark"
|
|
498
498
|
options='{ "trigger": "click" }'>
|
|
499
499
|
<btn-props type="GD.Components.ButtonTypes.OutlineDanger">Test Tooltip</btn-props>
|
|
500
|
-
This is a tooltip.
|
|
500
|
+
This is a tooltip. It was easy to make.
|
|
501
501
|
</bs-tooltip>
|
|
502
502
|
</div>
|
|
503
503
|
</div>
|
package/package.json
CHANGED
|
@@ -712,6 +712,11 @@ export class FormControl implements IFormControl {
|
|
|
712
712
|
// Set the flag
|
|
713
713
|
validation.isValid = value;
|
|
714
714
|
}
|
|
715
|
+
// Else, see if this is a dropdown and ensure it has a value
|
|
716
|
+
else if (this._ddl && value) {
|
|
717
|
+
// Set the flag to ensure a text/value exists
|
|
718
|
+
validation.isValid = value.text || value.value ? true : false;
|
|
719
|
+
}
|
|
715
720
|
}
|
|
716
721
|
|
|
717
722
|
// See if an event exists
|