@ballistix.digital/react-components 0.4.45 → 0.4.46

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/index.js CHANGED
@@ -446,7 +446,7 @@ var styles$g = {
446
446
  };
447
447
 
448
448
  var Container$3 = function (props) {
449
- var children = props.children, label = props.label, _a = props.type, type = _a === void 0 ? 'button' : _a, _b = props.direction, direction = _b === void 0 ? 'left' : _b, stylesOverrides = props.styles;
449
+ var children = props.children, label = props.label, _a = props.type, type = _a === void 0 ? 'button' : _a, _b = props.direction, direction = _b === void 0 ? 'bottom-left' : _b, stylesOverrides = props.styles;
450
450
  var handleGenerateStyle = function () {
451
451
  var result = deepCopyObject(styles$f.base);
452
452
  var keys = calculateNestedKeys(styles$f.base);
@@ -472,18 +472,26 @@ var base$e = {
472
472
  };
473
473
  var button = {};
474
474
  var compact = {};
475
- var left$1 = {
475
+ var bottomLeft = {
476
476
  items: 'origin-top-right right-0',
477
477
  };
478
- var right$1 = {
478
+ var bottomRight = {
479
479
  items: 'origin-top-left left-0',
480
480
  };
481
+ var topLeft = {
482
+ items: 'origin-bottom-right right-0 bottom-0',
483
+ };
484
+ var topRight = {
485
+ items: 'origin-bottom-left left-0 bottom-0',
486
+ };
481
487
  var styles$f = {
482
488
  base: base$e,
483
489
  button: button,
484
490
  compact: compact,
485
- left: left$1,
486
- right: right$1,
491
+ 'bottom-left': bottomLeft,
492
+ 'bottom-right': bottomRight,
493
+ 'top-left': topLeft,
494
+ 'top-right': topRight,
487
495
  };
488
496
 
489
497
  var IconElement = function (props) {