@homebound/beam 2.412.0 → 2.413.0-alpha.1

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
@@ -8466,7 +8466,7 @@ function TextFieldBase(props) {
8466
8466
  const fieldStyles = {
8467
8467
  container: Css.df.fdc.w100.maxw(fieldMaxWidth).relative.if(labelStyle === "left").maxw100.fdr.gap2.jcsb.aic.$,
8468
8468
  inputWrapper: {
8469
- ...Css[typeScale].df.aic.br4.pxPx(textFieldBasePadding).w100.bgColor(bgColor).gray900.if(contrast && !inputStylePalette).white.if(labelStyle === "left").w(labelLeftFieldWidth).$,
8469
+ ...Css[typeScale].df.aic.br8.pxPx(textFieldBasePadding).w100.bgColor(bgColor).gray900.if(contrast && !inputStylePalette).white.if(labelStyle === "left").w(labelLeftFieldWidth).$,
8470
8470
  // When borderless then perceived vertical alignments are misaligned. As there is no longer a border, then the field looks oddly indented.
8471
8471
  // This typically happens in tables when a column has a mix of static text (i.e. "roll up" rows and table headers) and input fields.
8472
8472
  // To remedy this perceived misalignment then we increase the width by the horizontal padding applied (16px), and set a negative margin left margin to re-center the field.
@@ -16208,7 +16208,6 @@ var DateFilter = class extends BaseFilter {
16208
16208
  /* @__PURE__ */ jsx128(
16209
16209
  SelectField,
16210
16210
  {
16211
- compact: true,
16212
16211
  sizeToContent: true,
16213
16212
  options: [
16214
16213
  // Always show the 'Any' option
@@ -16231,7 +16230,6 @@ var DateFilter = class extends BaseFilter {
16231
16230
  /* @__PURE__ */ jsx128(
16232
16231
  DateField,
16233
16232
  {
16234
- compact: true,
16235
16233
  labelStyle: "inline",
16236
16234
  value: value?.value ? new Date(value.value) : /* @__PURE__ */ new Date(),
16237
16235
  label: "Date",
@@ -16258,7 +16256,6 @@ var DateRangeFilter = class extends BaseFilter {
16258
16256
  /* @__PURE__ */ jsx129(
16259
16257
  DateRangeField,
16260
16258
  {
16261
- compact: true,
16262
16259
  labelStyle: "inline",
16263
16260
  isRangeFilterField: true,
16264
16261
  placeholder: placeholderText,
@@ -16312,7 +16309,6 @@ var MultiFilter = class extends BaseFilter {
16312
16309
  MultiSelectField,
16313
16310
  {
16314
16311
  ...props,
16315
- compact: !vertical,
16316
16312
  label: this.label,
16317
16313
  values: value || [],
16318
16314
  labelStyle: inModal ? "hidden" : !inModal && !vertical ? "inline" : "above",
@@ -16377,7 +16373,6 @@ var NumberRangeFilter = class extends BaseFilter {
16377
16373
  /* @__PURE__ */ jsx131(
16378
16374
  NumberField,
16379
16375
  {
16380
- compact: true,
16381
16376
  sizeToContent: !inModal,
16382
16377
  labelStyle: "inline",
16383
16378
  clearable: true,
@@ -16395,7 +16390,6 @@ var NumberRangeFilter = class extends BaseFilter {
16395
16390
  /* @__PURE__ */ jsx131(
16396
16391
  NumberField,
16397
16392
  {
16398
- compact: true,
16399
16393
  sizeToContent: !inModal,
16400
16394
  labelStyle: "inline",
16401
16395
  clearable: true,
@@ -16440,7 +16434,6 @@ var SingleFilter = class extends BaseFilter {
16440
16434
  options,
16441
16435
  getOptionValue: (o) => o === allOption ? void 0 : getOptionValue(o),
16442
16436
  getOptionLabel: (o) => o === allOption ? nothingSelectedText ?? "All" : getOptionLabel(o),
16443
- compact: !vertical,
16444
16437
  value,
16445
16438
  label: this.label,
16446
16439
  labelStyle: inModal ? "hidden" : !inModal && !vertical ? "inline" : "above",
@@ -16467,7 +16460,6 @@ var TreeFilter = class extends BaseFilter {
16467
16460
  ...props,
16468
16461
  label: this.label,
16469
16462
  values: value,
16470
- compact: !vertical,
16471
16463
  labelStyle: inModal ? "hidden" : !inModal && !vertical ? "inline" : "above",
16472
16464
  sizeToContent: !inModal && !vertical,
16473
16465
  onSelect: (options) => {
@@ -16493,7 +16485,6 @@ var BooleanFilter = class extends BaseFilter {
16493
16485
  SelectField,
16494
16486
  {
16495
16487
  ...props,
16496
- compact: !vertical,
16497
16488
  label: this.label,
16498
16489
  value: String(value),
16499
16490
  labelStyle: inModal ? "hidden" : !inModal && !vertical ? "inline" : "above",
@@ -16643,7 +16634,6 @@ function Filters(props) {
16643
16634
  SelectField,
16644
16635
  {
16645
16636
  label: "Group by",
16646
- compact: !vertical,
16647
16637
  labelStyle: !vertical ? "inline" : "above",
16648
16638
  sizeToContent: !vertical,
16649
16639
  options: groupBy.options,
@@ -16773,7 +16763,6 @@ function FilterDropdownMenu(props) {
16773
16763
  SelectField,
16774
16764
  {
16775
16765
  label: "Group by",
16776
- compact: true,
16777
16766
  labelStyle: "inline",
16778
16767
  sizeToContent: true,
16779
16768
  options: groupBy.options,