@economic/taco 2.14.0 → 2.14.2

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/types.json CHANGED
@@ -17168,7 +17168,7 @@
17168
17168
  },
17169
17169
  {
17170
17170
  "id": 3110,
17171
- "name": "error",
17171
+ "name": "invalid",
17172
17172
  "kind": 32,
17173
17173
  "kindString": "Variable",
17174
17174
  "flags": {
@@ -17349,7 +17349,7 @@
17349
17349
  },
17350
17350
  {
17351
17351
  "id": 3117,
17352
- "name": "error",
17352
+ "name": "invalid",
17353
17353
  "kind": 32,
17354
17354
  "kindString": "Variable",
17355
17355
  "flags": {
@@ -17458,7 +17458,7 @@
17458
17458
  ],
17459
17459
  "name": "ForwardRefExoticComponent"
17460
17460
  },
17461
- "defaultValue": "React.forwardRef(function Field(props: FieldProps, ref: React.Ref<HTMLLabelElement>) {\n const { disabled, children, error = false, warning = false, message, ...otherProps } = props;\n const className = cn(\n 'flex flex-col font-bold text-xs leading-loose pb-4 min-h-[theme(spacing.18)]',\n {\n 'text-grey-300': disabled,\n },\n props.className\n );\n const messageClassName = cn('h-4 text-xs text-left leading-normal font-normal truncate -mb-4', {\n 'text-grey-700': !error && !warning,\n 'text-red-500': error,\n 'text-yellow-700': warning && !error,\n 'opacity-50': disabled,\n });\n\n return (\n <label {...otherProps} className={className} data-taco=\"label\" ref={ref}>\n {children}\n {message && (\n <span className={messageClassName} role={error ? 'alert' : undefined}>\n {message}\n </span>\n )}\n </label>\n );\n})"
17461
+ "defaultValue": "React.forwardRef(function Field(props: FieldProps, ref: React.Ref<HTMLLabelElement>) {\n const { disabled, children, invalid = false, warning = false, message, ...otherProps } = props;\n const className = cn(\n 'flex flex-col font-bold text-xs leading-loose pb-4 min-h-[theme(spacing.18)]',\n {\n 'text-grey-300': disabled,\n },\n props.className\n );\n const messageClassName = cn('h-4 text-xs text-left leading-normal font-normal truncate -mb-4', {\n 'text-grey-700': !invalid && !warning,\n 'text-red-500': invalid,\n 'text-yellow-700': warning && !invalid,\n 'opacity-50': disabled,\n });\n\n return (\n <label {...otherProps} className={className} data-taco=\"label\" ref={ref}>\n {children}\n {message && (\n <span className={messageClassName} role={invalid ? 'alert' : undefined}>\n {message}\n </span>\n )}\n </label>\n );\n})"
17462
17462
  }
17463
17463
  ],
17464
17464
  "groups": [
@@ -19022,7 +19022,7 @@
19022
19022
  "types": [
19023
19023
  {
19024
19024
  "type": "reference",
19025
- "id": 4013,
19025
+ "id": 4004,
19026
19026
  "name": "HeaderProps"
19027
19027
  },
19028
19028
  {
@@ -518277,7 +518277,7 @@
518277
518277
  ],
518278
518278
  "name": "ForwardRefExoticComponent"
518279
518279
  },
518280
- "defaultValue": "React.forwardRef<HTMLInputElement, Select2SearchProps>(function ListboxSearch(props, ref) {\n const { ...otherProps } = props;\n const { listboxRef, searchQuery, setSearchQuery, setValidationError, validationError, setOpen } = useSelect2Context();\n\n const handleChange = event => {\n if (validationError) {\n setValidationError(undefined);\n }\n\n setSearchQuery(event.target.value);\n };\n\n const handleKeyDown = event => {\n // space is an aria selection key, so we have to remove it to allow spaces\n if (event.key === ' ') {\n return;\n }\n\n // Select2 should close dropdown and receive focus, when user press Tab while searching (UX requirement to support better keyboard navigation)\n if (event.key === 'Tab') {\n setOpen(false);\n return;\n }\n\n if (isAriaSelectionKey(event) || event.key === 'ArrowDown' || event.key === 'ArrowUp') {\n event.preventDefault();\n // forward navigation events onto the underlying collection - we want arrow keys to work from inside the filter input\n listboxRef?.current?.dispatchEvent(createCustomKeyboardEvent(event as React.KeyboardEvent<HTMLInputElement>));\n return;\n }\n };\n\n return (\n <Field\n className={cn('mx-1.5 mb-1.5 !min-h-fit ', { '!pb-0': !validationError })}\n error={!!validationError}\n message={validationError?.message}>\n <Input\n {...otherProps}\n aria-hidden\n autoFocus\n invalid={!!validationError}\n onChange={handleChange}\n onKeyDown={handleKeyDown}\n ref={ref}\n value={searchQuery}\n />\n </Field>\n );\n})"
518280
+ "defaultValue": "React.forwardRef<HTMLInputElement, Select2SearchProps>(function ListboxSearch(props, ref) {\n const { ...otherProps } = props;\n const { listboxRef, searchQuery, setSearchQuery, setValidationError, validationError, setOpen } = useSelect2Context();\n\n const handleChange = event => {\n if (validationError) {\n setValidationError(undefined);\n }\n\n setSearchQuery(event.target.value);\n };\n\n const handleKeyDown = event => {\n // space is an aria selection key, so we have to remove it to allow spaces\n if (event.key === ' ') {\n return;\n }\n\n // Select2 should close dropdown and receive focus, when user press Tab while searching (UX requirement to support better keyboard navigation)\n if (event.key === 'Tab') {\n setOpen(false);\n return;\n }\n\n if (isAriaSelectionKey(event) || event.key === 'ArrowDown' || event.key === 'ArrowUp') {\n event.preventDefault();\n // forward navigation events onto the underlying collection - we want arrow keys to work from inside the filter input\n listboxRef?.current?.dispatchEvent(createCustomKeyboardEvent(event as React.KeyboardEvent<HTMLInputElement>));\n return;\n }\n };\n\n return (\n <Field\n className={cn('mx-1.5 mb-1.5 !min-h-fit ', { '!pb-0': !validationError })}\n invalid={!!validationError}\n message={validationError?.message}>\n <Input\n {...otherProps}\n aria-hidden\n autoFocus\n invalid={!!validationError}\n onChange={handleChange}\n onKeyDown={handleKeyDown}\n ref={ref}\n value={searchQuery}\n />\n </Field>\n );\n})"
518281
518281
  }
518282
518282
  ],
518283
518283
  "groups": [
@@ -531586,7 +531586,7 @@
531586
531586
  ]
531587
531587
  },
531588
531588
  {
531589
- "id": 4066,
531589
+ "id": 4057,
531590
531590
  "name": "\"components/Table3/components/columns/cell/DisplayCell\"",
531591
531591
  "kind": 1,
531592
531592
  "kindString": "Module",
@@ -531596,7 +531596,7 @@
531596
531596
  "originalName": "/home/runner/work/taco/taco/packages/taco/src/components/Table3/components/columns/cell/DisplayCell.tsx",
531597
531597
  "children": [
531598
531598
  {
531599
- "id": 4067,
531599
+ "id": 4058,
531600
531600
  "name": "DisplayCellProps",
531601
531601
  "kind": 4194304,
531602
531602
  "kindString": "Type alias",
@@ -531605,7 +531605,7 @@
531605
531605
  },
531606
531606
  "typeParameter": [
531607
531607
  {
531608
- "id": 4068,
531608
+ "id": 4059,
531609
531609
  "name": "TType",
531610
531610
  "kind": 131072,
531611
531611
  "kindString": "Type parameter",
@@ -531635,7 +531635,7 @@
531635
531635
  {
531636
531636
  "type": "reflection",
531637
531637
  "declaration": {
531638
- "id": 4069,
531638
+ "id": 4060,
531639
531639
  "name": "__type",
531640
531640
  "kind": 65536,
531641
531641
  "kindString": "Type literal",
@@ -531644,7 +531644,7 @@
531644
531644
  },
531645
531645
  "children": [
531646
531646
  {
531647
- "id": 4070,
531647
+ "id": 4061,
531648
531648
  "name": "children",
531649
531649
  "kind": 32,
531650
531650
  "kindString": "Variable",
@@ -531667,7 +531667,7 @@
531667
531667
  }
531668
531668
  },
531669
531669
  {
531670
- "id": 4071,
531670
+ "id": 4062,
531671
531671
  "name": "className",
531672
531672
  "kind": 32,
531673
531673
  "kindString": "Variable",
@@ -531695,8 +531695,8 @@
531695
531695
  "title": "Variables",
531696
531696
  "kind": 32,
531697
531697
  "children": [
531698
- 4070,
531699
- 4071
531698
+ 4061,
531699
+ 4062
531700
531700
  ]
531701
531701
  }
531702
531702
  ]
@@ -531706,7 +531706,7 @@
531706
531706
  }
531707
531707
  },
531708
531708
  {
531709
- "id": 4076,
531709
+ "id": 4067,
531710
531710
  "name": "MemoedDisplayCellProps",
531711
531711
  "kind": 4194304,
531712
531712
  "kindString": "Type alias",
@@ -531715,7 +531715,7 @@
531715
531715
  },
531716
531716
  "typeParameter": [
531717
531717
  {
531718
- "id": 4077,
531718
+ "id": 4068,
531719
531719
  "name": "TType",
531720
531720
  "kind": 131072,
531721
531721
  "kindString": "Type parameter",
@@ -531727,7 +531727,7 @@
531727
531727
  "type": {
531728
531728
  "type": "reflection",
531729
531729
  "declaration": {
531730
- "id": 4078,
531730
+ "id": 4069,
531731
531731
  "name": "__type",
531732
531732
  "kind": 65536,
531733
531733
  "kindString": "Type literal",
@@ -531736,7 +531736,7 @@
531736
531736
  },
531737
531737
  "children": [
531738
531738
  {
531739
- "id": 4079,
531739
+ "id": 4070,
531740
531740
  "name": "align",
531741
531741
  "kind": 32,
531742
531742
  "kindString": "Variable",
@@ -531751,7 +531751,7 @@
531751
531751
  }
531752
531752
  },
531753
531753
  {
531754
- "id": 4080,
531754
+ "id": 4071,
531755
531755
  "name": "children",
531756
531756
  "kind": 32,
531757
531757
  "kindString": "Variable",
@@ -531777,7 +531777,7 @@
531777
531777
  }
531778
531778
  },
531779
531779
  {
531780
- "id": 4081,
531780
+ "id": 4072,
531781
531781
  "name": "className",
531782
531782
  "kind": 32,
531783
531783
  "kindString": "Variable",
@@ -531800,7 +531800,7 @@
531800
531800
  }
531801
531801
  },
531802
531802
  {
531803
- "id": 4082,
531803
+ "id": 4073,
531804
531804
  "name": "data",
531805
531805
  "kind": 32,
531806
531806
  "kindString": "Variable",
@@ -531813,7 +531813,7 @@
531813
531813
  }
531814
531814
  },
531815
531815
  {
531816
- "id": 4083,
531816
+ "id": 4074,
531817
531817
  "name": "debug",
531818
531818
  "kind": 32,
531819
531819
  "kindString": "Variable",
@@ -531840,7 +531840,7 @@
531840
531840
  }
531841
531841
  },
531842
531842
  {
531843
- "id": 4084,
531843
+ "id": 4075,
531844
531844
  "name": "enableTruncate",
531845
531845
  "kind": 32,
531846
531846
  "kindString": "Variable",
@@ -531867,7 +531867,7 @@
531867
531867
  }
531868
531868
  },
531869
531869
  {
531870
- "id": 4085,
531870
+ "id": 4076,
531871
531871
  "name": "frozenColumnIndex",
531872
531872
  "kind": 32,
531873
531873
  "kindString": "Variable",
@@ -531890,7 +531890,7 @@
531890
531890
  }
531891
531891
  },
531892
531892
  {
531893
- "id": 4086,
531893
+ "id": 4077,
531894
531894
  "name": "highlighted",
531895
531895
  "kind": 32,
531896
531896
  "kindString": "Variable",
@@ -531903,7 +531903,7 @@
531903
531903
  }
531904
531904
  },
531905
531905
  {
531906
- "id": 4087,
531906
+ "id": 4078,
531907
531907
  "name": "highlightedAsCurrent",
531908
531908
  "kind": 32,
531909
531909
  "kindString": "Variable",
@@ -531916,7 +531916,7 @@
531916
531916
  }
531917
531917
  },
531918
531918
  {
531919
- "id": 4088,
531919
+ "id": 4079,
531920
531920
  "name": "id",
531921
531921
  "kind": 32,
531922
531922
  "kindString": "Variable",
@@ -531929,7 +531929,7 @@
531929
531929
  }
531930
531930
  },
531931
531931
  {
531932
- "id": 4089,
531932
+ "id": 4080,
531933
531933
  "name": "index",
531934
531934
  "kind": 32,
531935
531935
  "kindString": "Variable",
@@ -531942,7 +531942,7 @@
531942
531942
  }
531943
531943
  },
531944
531944
  {
531945
- "id": 4090,
531945
+ "id": 4081,
531946
531946
  "name": "tableRef",
531947
531947
  "kind": 32,
531948
531948
  "kindString": "Variable",
@@ -531966,18 +531966,18 @@
531966
531966
  "title": "Variables",
531967
531967
  "kind": 32,
531968
531968
  "children": [
531969
+ 4070,
531970
+ 4071,
531971
+ 4072,
531972
+ 4073,
531973
+ 4074,
531974
+ 4075,
531975
+ 4076,
531976
+ 4077,
531977
+ 4078,
531969
531978
  4079,
531970
531979
  4080,
531971
- 4081,
531972
- 4082,
531973
- 4083,
531974
- 4084,
531975
- 4085,
531976
- 4086,
531977
- 4087,
531978
- 4088,
531979
- 4089,
531980
- 4090
531980
+ 4081
531981
531981
  ]
531982
531982
  }
531983
531983
  ]
@@ -531985,7 +531985,7 @@
531985
531985
  }
531986
531986
  },
531987
531987
  {
531988
- "id": 4072,
531988
+ "id": 4063,
531989
531989
  "name": "DisplayCell",
531990
531990
  "kind": 64,
531991
531991
  "kindString": "Function",
@@ -531994,7 +531994,7 @@
531994
531994
  },
531995
531995
  "signatures": [
531996
531996
  {
531997
- "id": 4073,
531997
+ "id": 4064,
531998
531998
  "name": "DisplayCell",
531999
531999
  "kind": 4096,
532000
532000
  "kindString": "Call signature",
@@ -532003,7 +532003,7 @@
532003
532003
  },
532004
532004
  "typeParameter": [
532005
532005
  {
532006
- "id": 4074,
532006
+ "id": 4065,
532007
532007
  "name": "TType",
532008
532008
  "kind": 131072,
532009
532009
  "kindString": "Type parameter",
@@ -532014,7 +532014,7 @@
532014
532014
  ],
532015
532015
  "parameters": [
532016
532016
  {
532017
- "id": 4075,
532017
+ "id": 4066,
532018
532018
  "name": "props",
532019
532019
  "kind": 32768,
532020
532020
  "kindString": "Parameter",
@@ -532023,7 +532023,7 @@
532023
532023
  },
532024
532024
  "type": {
532025
532025
  "type": "reference",
532026
- "id": 4067,
532026
+ "id": 4058,
532027
532027
  "typeArguments": [
532028
532028
  {
532029
532029
  "type": "typeParameter",
@@ -532047,15 +532047,15 @@
532047
532047
  "title": "Type aliases",
532048
532048
  "kind": 4194304,
532049
532049
  "children": [
532050
- 4067,
532051
- 4076
532050
+ 4058,
532051
+ 4067
532052
532052
  ]
532053
532053
  },
532054
532054
  {
532055
532055
  "title": "Functions",
532056
532056
  "kind": 64,
532057
532057
  "children": [
532058
- 4072
532058
+ 4063
532059
532059
  ]
532060
532060
  }
532061
532061
  ]
@@ -533329,7 +533329,7 @@
533329
533329
  ]
533330
533330
  },
533331
533331
  {
533332
- "id": 4091,
533332
+ "id": 4082,
533333
533333
  "name": "\"components/Table3/components/columns/footer/Footer\"",
533334
533334
  "kind": 1,
533335
533335
  "kindString": "Module",
@@ -533339,7 +533339,7 @@
533339
533339
  "originalName": "/home/runner/work/taco/taco/packages/taco/src/components/Table3/components/columns/footer/Footer.tsx",
533340
533340
  "children": [
533341
533341
  {
533342
- "id": 4092,
533342
+ "id": 4083,
533343
533343
  "name": "FooterProps",
533344
533344
  "kind": 4194304,
533345
533345
  "kindString": "Type alias",
@@ -533348,7 +533348,7 @@
533348
533348
  },
533349
533349
  "typeParameter": [
533350
533350
  {
533351
- "id": 4093,
533351
+ "id": 4084,
533352
533352
  "name": "TType",
533353
533353
  "kind": 131072,
533354
533354
  "kindString": "Type parameter",
@@ -533378,7 +533378,7 @@
533378
533378
  {
533379
533379
  "type": "reflection",
533380
533380
  "declaration": {
533381
- "id": 4094,
533381
+ "id": 4085,
533382
533382
  "name": "__type",
533383
533383
  "kind": 65536,
533384
533384
  "kindString": "Type literal",
@@ -533387,7 +533387,7 @@
533387
533387
  },
533388
533388
  "children": [
533389
533389
  {
533390
- "id": 4095,
533390
+ "id": 4086,
533391
533391
  "name": "renderer",
533392
533392
  "kind": 32,
533393
533393
  "kindString": "Variable",
@@ -533413,7 +533413,7 @@
533413
533413
  "title": "Variables",
533414
533414
  "kind": 32,
533415
533415
  "children": [
533416
- 4095
533416
+ 4086
533417
533417
  ]
533418
533418
  }
533419
533419
  ]
@@ -533423,7 +533423,7 @@
533423
533423
  }
533424
533424
  },
533425
533425
  {
533426
- "id": 4100,
533426
+ "id": 4091,
533427
533427
  "name": "MemoedFooterProps",
533428
533428
  "kind": 4194304,
533429
533429
  "kindString": "Type alias",
@@ -533432,7 +533432,7 @@
533432
533432
  },
533433
533433
  "typeParameter": [
533434
533434
  {
533435
- "id": 4101,
533435
+ "id": 4092,
533436
533436
  "name": "TType",
533437
533437
  "kind": 131072,
533438
533438
  "kindString": "Type parameter",
@@ -533449,7 +533449,7 @@
533449
533449
  "typeArguments": [
533450
533450
  {
533451
533451
  "type": "reference",
533452
- "id": 4092,
533452
+ "id": 4083,
533453
533453
  "typeArguments": [
533454
533454
  {
533455
533455
  "type": "typeParameter",
@@ -533481,7 +533481,7 @@
533481
533481
  {
533482
533482
  "type": "reflection",
533483
533483
  "declaration": {
533484
- "id": 4102,
533484
+ "id": 4093,
533485
533485
  "name": "__type",
533486
533486
  "kind": 65536,
533487
533487
  "kindString": "Type literal",
@@ -533490,7 +533490,7 @@
533490
533490
  },
533491
533491
  "children": [
533492
533492
  {
533493
- "id": 4103,
533493
+ "id": 4094,
533494
533494
  "name": "align",
533495
533495
  "kind": 32,
533496
533496
  "kindString": "Variable",
@@ -533505,7 +533505,7 @@
533505
533505
  }
533506
533506
  },
533507
533507
  {
533508
- "id": 4104,
533508
+ "id": 4095,
533509
533509
  "name": "id",
533510
533510
  "kind": 32,
533511
533511
  "kindString": "Variable",
@@ -533518,7 +533518,7 @@
533518
533518
  }
533519
533519
  },
533520
533520
  {
533521
- "id": 4105,
533521
+ "id": 4096,
533522
533522
  "name": "index",
533523
533523
  "kind": 32,
533524
533524
  "kindString": "Variable",
@@ -533531,7 +533531,7 @@
533531
533531
  }
533532
533532
  },
533533
533533
  {
533534
- "id": 4106,
533534
+ "id": 4097,
533535
533535
  "name": "isFrozen",
533536
533536
  "kind": 32,
533537
533537
  "kindString": "Variable",
@@ -533544,7 +533544,7 @@
533544
533544
  }
533545
533545
  },
533546
533546
  {
533547
- "id": 4107,
533547
+ "id": 4098,
533548
533548
  "name": "meta",
533549
533549
  "kind": 32,
533550
533550
  "kindString": "Variable",
@@ -533573,11 +533573,11 @@
533573
533573
  "title": "Variables",
533574
533574
  "kind": 32,
533575
533575
  "children": [
533576
- 4103,
533577
- 4104,
533578
- 4105,
533579
- 4106,
533580
- 4107
533576
+ 4094,
533577
+ 4095,
533578
+ 4096,
533579
+ 4097,
533580
+ 4098
533581
533581
  ]
533582
533582
  }
533583
533583
  ]
@@ -533587,7 +533587,7 @@
533587
533587
  }
533588
533588
  },
533589
533589
  {
533590
- "id": 4096,
533590
+ "id": 4087,
533591
533591
  "name": "Footer",
533592
533592
  "kind": 64,
533593
533593
  "kindString": "Function",
@@ -533596,7 +533596,7 @@
533596
533596
  },
533597
533597
  "signatures": [
533598
533598
  {
533599
- "id": 4097,
533599
+ "id": 4088,
533600
533600
  "name": "Footer",
533601
533601
  "kind": 4096,
533602
533602
  "kindString": "Call signature",
@@ -533605,7 +533605,7 @@
533605
533605
  },
533606
533606
  "typeParameter": [
533607
533607
  {
533608
- "id": 4098,
533608
+ "id": 4089,
533609
533609
  "name": "TType",
533610
533610
  "kind": 131072,
533611
533611
  "kindString": "Type parameter",
@@ -533616,7 +533616,7 @@
533616
533616
  ],
533617
533617
  "parameters": [
533618
533618
  {
533619
- "id": 4099,
533619
+ "id": 4090,
533620
533620
  "name": "props",
533621
533621
  "kind": 32768,
533622
533622
  "kindString": "Parameter",
@@ -533625,7 +533625,7 @@
533625
533625
  },
533626
533626
  "type": {
533627
533627
  "type": "reference",
533628
- "id": 4092,
533628
+ "id": 4083,
533629
533629
  "typeArguments": [
533630
533630
  {
533631
533631
  "type": "typeParameter",
@@ -533649,15 +533649,15 @@
533649
533649
  "title": "Type aliases",
533650
533650
  "kind": 4194304,
533651
533651
  "children": [
533652
- 4092,
533653
- 4100
533652
+ 4083,
533653
+ 4091
533654
533654
  ]
533655
533655
  },
533656
533656
  {
533657
533657
  "title": "Functions",
533658
533658
  "kind": 64,
533659
533659
  "children": [
533660
- 4096
533660
+ 4087
533661
533661
  ]
533662
533662
  }
533663
533663
  ]
@@ -534041,7 +534041,7 @@
534041
534041
  "typeArguments": [
534042
534042
  {
534043
534043
  "type": "reference",
534044
- "id": 4013,
534044
+ "id": 4004,
534045
534045
  "typeArguments": [
534046
534046
  {
534047
534047
  "type": "typeParameter",
@@ -534273,7 +534273,7 @@
534273
534273
  },
534274
534274
  "type": {
534275
534275
  "type": "reference",
534276
- "id": 4013,
534276
+ "id": 4004,
534277
534277
  "typeArguments": [
534278
534278
  {
534279
534279
  "type": "typeParameter",
@@ -534310,7 +534310,7 @@
534310
534310
  ]
534311
534311
  },
534312
534312
  {
534313
- "id": 4004,
534313
+ "id": 3995,
534314
534314
  "name": "\"components/Table3/components/columns/header/Header\"",
534315
534315
  "kind": 1,
534316
534316
  "kindString": "Module",
@@ -534320,7 +534320,7 @@
534320
534320
  "originalName": "/home/runner/work/taco/taco/packages/taco/src/components/Table3/components/columns/header/Header.tsx",
534321
534321
  "children": [
534322
534322
  {
534323
- "id": 4013,
534323
+ "id": 4004,
534324
534324
  "name": "HeaderProps",
534325
534325
  "kind": 4194304,
534326
534326
  "kindString": "Type alias",
@@ -534329,7 +534329,7 @@
534329
534329
  },
534330
534330
  "typeParameter": [
534331
534331
  {
534332
- "id": 4014,
534332
+ "id": 4005,
534333
534333
  "name": "TType",
534334
534334
  "kind": 131072,
534335
534335
  "kindString": "Type parameter",
@@ -534359,7 +534359,7 @@
534359
534359
  {
534360
534360
  "type": "reflection",
534361
534361
  "declaration": {
534362
- "id": 4015,
534362
+ "id": 4006,
534363
534363
  "name": "__type",
534364
534364
  "kind": 65536,
534365
534365
  "kindString": "Type literal",
@@ -534368,7 +534368,7 @@
534368
534368
  },
534369
534369
  "children": [
534370
534370
  {
534371
- "id": 4016,
534371
+ "id": 4007,
534372
534372
  "name": "children",
534373
534373
  "kind": 32,
534374
534374
  "kindString": "Variable",
@@ -534391,7 +534391,7 @@
534391
534391
  }
534392
534392
  },
534393
534393
  {
534394
- "id": 4017,
534394
+ "id": 4008,
534395
534395
  "name": "hasSeparator",
534396
534396
  "kind": 32,
534397
534397
  "kindString": "Variable",
@@ -534423,8 +534423,8 @@
534423
534423
  "title": "Variables",
534424
534424
  "kind": 32,
534425
534425
  "children": [
534426
- 4016,
534427
- 4017
534426
+ 4007,
534427
+ 4008
534428
534428
  ]
534429
534429
  }
534430
534430
  ]
@@ -534434,7 +534434,7 @@
534434
534434
  }
534435
534435
  },
534436
534436
  {
534437
- "id": 4008,
534437
+ "id": 3999,
534438
534438
  "name": "HeaderSortDirection",
534439
534439
  "kind": 4194304,
534440
534440
  "kindString": "Type alias",
@@ -534457,7 +534457,7 @@
534457
534457
  }
534458
534458
  },
534459
534459
  {
534460
- "id": 4022,
534460
+ "id": 4013,
534461
534461
  "name": "MemoedHeaderProps",
534462
534462
  "kind": 4194304,
534463
534463
  "kindString": "Type alias",
@@ -534466,7 +534466,7 @@
534466
534466
  },
534467
534467
  "typeParameter": [
534468
534468
  {
534469
- "id": 4023,
534469
+ "id": 4014,
534470
534470
  "name": "TType",
534471
534471
  "kind": 131072,
534472
534472
  "kindString": "Type parameter",
@@ -534483,7 +534483,7 @@
534483
534483
  "typeArguments": [
534484
534484
  {
534485
534485
  "type": "reference",
534486
- "id": 4013,
534486
+ "id": 4004,
534487
534487
  "typeArguments": [
534488
534488
  {
534489
534489
  "type": "typeParameter",
@@ -534511,7 +534511,7 @@
534511
534511
  {
534512
534512
  "type": "reflection",
534513
534513
  "declaration": {
534514
- "id": 4024,
534514
+ "id": 4015,
534515
534515
  "name": "__type",
534516
534516
  "kind": 65536,
534517
534517
  "kindString": "Type literal",
@@ -534520,7 +534520,7 @@
534520
534520
  },
534521
534521
  "children": [
534522
534522
  {
534523
- "id": 4025,
534523
+ "id": 4016,
534524
534524
  "name": "align",
534525
534525
  "kind": 32,
534526
534526
  "kindString": "Variable",
@@ -534535,7 +534535,7 @@
534535
534535
  }
534536
534536
  },
534537
534537
  {
534538
- "id": 4026,
534538
+ "id": 4017,
534539
534539
  "name": "canFreeze",
534540
534540
  "kind": 32,
534541
534541
  "kindString": "Variable",
@@ -534548,7 +534548,7 @@
534548
534548
  }
534549
534549
  },
534550
534550
  {
534551
- "id": 4027,
534551
+ "id": 4018,
534552
534552
  "name": "canHide",
534553
534553
  "kind": 32,
534554
534554
  "kindString": "Variable",
@@ -534561,7 +534561,7 @@
534561
534561
  }
534562
534562
  },
534563
534563
  {
534564
- "id": 4028,
534564
+ "id": 4019,
534565
534565
  "name": "canResize",
534566
534566
  "kind": 32,
534567
534567
  "kindString": "Variable",
@@ -534574,7 +534574,7 @@
534574
534574
  }
534575
534575
  },
534576
534576
  {
534577
- "id": 4029,
534577
+ "id": 4020,
534578
534578
  "name": "canSort",
534579
534579
  "kind": 32,
534580
534580
  "kindString": "Variable",
@@ -534587,7 +534587,7 @@
534587
534587
  }
534588
534588
  },
534589
534589
  {
534590
- "id": 4030,
534590
+ "id": 4021,
534591
534591
  "name": "colSpan",
534592
534592
  "kind": 32,
534593
534593
  "kindString": "Variable",
@@ -534600,7 +534600,7 @@
534600
534600
  }
534601
534601
  },
534602
534602
  {
534603
- "id": 4031,
534603
+ "id": 4022,
534604
534604
  "name": "hasMenu",
534605
534605
  "kind": 32,
534606
534606
  "kindString": "Variable",
@@ -534613,7 +534613,7 @@
534613
534613
  }
534614
534614
  },
534615
534615
  {
534616
- "id": 4032,
534616
+ "id": 4023,
534617
534617
  "name": "hasSeparator",
534618
534618
  "kind": 32,
534619
534619
  "kindString": "Variable",
@@ -534640,7 +534640,7 @@
534640
534640
  }
534641
534641
  },
534642
534642
  {
534643
- "id": 4033,
534643
+ "id": 4024,
534644
534644
  "name": "id",
534645
534645
  "kind": 32,
534646
534646
  "kindString": "Variable",
@@ -534653,7 +534653,7 @@
534653
534653
  }
534654
534654
  },
534655
534655
  {
534656
- "id": 4034,
534656
+ "id": 4025,
534657
534657
  "name": "index",
534658
534658
  "kind": 32,
534659
534659
  "kindString": "Variable",
@@ -534666,7 +534666,7 @@
534666
534666
  }
534667
534667
  },
534668
534668
  {
534669
- "id": 4035,
534669
+ "id": 4026,
534670
534670
  "name": "isFrozen",
534671
534671
  "kind": 32,
534672
534672
  "kindString": "Variable",
@@ -534679,7 +534679,7 @@
534679
534679
  }
534680
534680
  },
534681
534681
  {
534682
- "id": 4036,
534682
+ "id": 4027,
534683
534683
  "name": "isPlaceholder",
534684
534684
  "kind": 32,
534685
534685
  "kindString": "Variable",
@@ -534692,7 +534692,7 @@
534692
534692
  }
534693
534693
  },
534694
534694
  {
534695
- "id": 4037,
534695
+ "id": 4028,
534696
534696
  "name": "isPrinting",
534697
534697
  "kind": 32,
534698
534698
  "kindString": "Variable",
@@ -534705,7 +534705,7 @@
534705
534705
  }
534706
534706
  },
534707
534707
  {
534708
- "id": 4038,
534708
+ "id": 4029,
534709
534709
  "name": "isResizing",
534710
534710
  "kind": 32,
534711
534711
  "kindString": "Variable",
@@ -534718,7 +534718,7 @@
534718
534718
  }
534719
534719
  },
534720
534720
  {
534721
- "id": 4039,
534721
+ "id": 4030,
534722
534722
  "name": "length",
534723
534723
  "kind": 32,
534724
534724
  "kindString": "Variable",
@@ -534731,7 +534731,7 @@
534731
534731
  }
534732
534732
  },
534733
534733
  {
534734
- "id": 4040,
534734
+ "id": 4031,
534735
534735
  "name": "meta",
534736
534736
  "kind": 32,
534737
534737
  "kindString": "Variable",
@@ -534755,7 +534755,7 @@
534755
534755
  }
534756
534756
  },
534757
534757
  {
534758
- "id": 4041,
534758
+ "id": 4032,
534759
534759
  "name": "onGoto",
534760
534760
  "kind": 32,
534761
534761
  "kindString": "Variable",
@@ -534773,7 +534773,7 @@
534773
534773
  {
534774
534774
  "type": "reflection",
534775
534775
  "declaration": {
534776
- "id": 4042,
534776
+ "id": 4033,
534777
534777
  "name": "__type",
534778
534778
  "kind": 65536,
534779
534779
  "kindString": "Type literal",
@@ -534782,7 +534782,7 @@
534782
534782
  },
534783
534783
  "signatures": [
534784
534784
  {
534785
- "id": 4043,
534785
+ "id": 4034,
534786
534786
  "name": "__call",
534787
534787
  "kind": 4096,
534788
534788
  "kindString": "Call signature",
@@ -534791,7 +534791,7 @@
534791
534791
  },
534792
534792
  "parameters": [
534793
534793
  {
534794
- "id": 4044,
534794
+ "id": 4035,
534795
534795
  "name": "query",
534796
534796
  "kind": 32768,
534797
534797
  "kindString": "Parameter",
@@ -534822,7 +534822,7 @@
534822
534822
  }
534823
534823
  },
534824
534824
  {
534825
- "id": 4045,
534825
+ "id": 4036,
534826
534826
  "name": "onHide",
534827
534827
  "kind": 32,
534828
534828
  "kindString": "Variable",
@@ -534832,7 +534832,7 @@
534832
534832
  "type": {
534833
534833
  "type": "reflection",
534834
534834
  "declaration": {
534835
- "id": 4046,
534835
+ "id": 4037,
534836
534836
  "name": "__type",
534837
534837
  "kind": 65536,
534838
534838
  "kindString": "Type literal",
@@ -534841,7 +534841,7 @@
534841
534841
  },
534842
534842
  "signatures": [
534843
534843
  {
534844
- "id": 4047,
534844
+ "id": 4038,
534845
534845
  "name": "__call",
534846
534846
  "kind": 4096,
534847
534847
  "kindString": "Call signature",
@@ -534850,7 +534850,7 @@
534850
534850
  },
534851
534851
  "parameters": [
534852
534852
  {
534853
- "id": 4048,
534853
+ "id": 4039,
534854
534854
  "name": "event",
534855
534855
  "kind": 32768,
534856
534856
  "kindString": "Parameter",
@@ -534873,7 +534873,7 @@
534873
534873
  }
534874
534874
  },
534875
534875
  {
534876
- "id": 4049,
534876
+ "id": 4040,
534877
534877
  "name": "onResize",
534878
534878
  "kind": 32,
534879
534879
  "kindString": "Variable",
@@ -534883,7 +534883,7 @@
534883
534883
  "type": {
534884
534884
  "type": "reflection",
534885
534885
  "declaration": {
534886
- "id": 4050,
534886
+ "id": 4041,
534887
534887
  "name": "__type",
534888
534888
  "kind": 65536,
534889
534889
  "kindString": "Type literal",
@@ -534892,7 +534892,7 @@
534892
534892
  },
534893
534893
  "signatures": [
534894
534894
  {
534895
- "id": 4051,
534895
+ "id": 4042,
534896
534896
  "name": "__call",
534897
534897
  "kind": 4096,
534898
534898
  "kindString": "Call signature",
@@ -534901,7 +534901,7 @@
534901
534901
  },
534902
534902
  "parameters": [
534903
534903
  {
534904
- "id": 4052,
534904
+ "id": 4043,
534905
534905
  "name": "event",
534906
534906
  "kind": 32768,
534907
534907
  "kindString": "Parameter",
@@ -534924,7 +534924,7 @@
534924
534924
  }
534925
534925
  },
534926
534926
  {
534927
- "id": 4053,
534927
+ "id": 4044,
534928
534928
  "name": "onSort",
534929
534929
  "kind": 32,
534930
534930
  "kindString": "Variable",
@@ -534934,7 +534934,7 @@
534934
534934
  "type": {
534935
534935
  "type": "reflection",
534936
534936
  "declaration": {
534937
- "id": 4054,
534937
+ "id": 4045,
534938
534938
  "name": "__type",
534939
534939
  "kind": 65536,
534940
534940
  "kindString": "Type literal",
@@ -534943,7 +534943,7 @@
534943
534943
  },
534944
534944
  "signatures": [
534945
534945
  {
534946
- "id": 4055,
534946
+ "id": 4046,
534947
534947
  "name": "__call",
534948
534948
  "kind": 4096,
534949
534949
  "kindString": "Call signature",
@@ -534952,7 +534952,7 @@
534952
534952
  },
534953
534953
  "parameters": [
534954
534954
  {
534955
- "id": 4056,
534955
+ "id": 4047,
534956
534956
  "name": "event",
534957
534957
  "kind": 32768,
534958
534958
  "kindString": "Parameter",
@@ -534975,7 +534975,7 @@
534975
534975
  }
534976
534976
  },
534977
534977
  {
534978
- "id": 4057,
534978
+ "id": 4048,
534979
534979
  "name": "onSortToggle",
534980
534980
  "kind": 32,
534981
534981
  "kindString": "Variable",
@@ -534984,12 +534984,12 @@
534984
534984
  },
534985
534985
  "type": {
534986
534986
  "type": "reference",
534987
- "id": 4009,
534987
+ "id": 4000,
534988
534988
  "name": "SortToggleHandler"
534989
534989
  }
534990
534990
  },
534991
534991
  {
534992
- "id": 4058,
534992
+ "id": 4049,
534993
534993
  "name": "scrollToIndex",
534994
534994
  "kind": 32,
534995
534995
  "kindString": "Variable",
@@ -535009,7 +535009,7 @@
535009
535009
  }
535010
535010
  },
535011
535011
  {
535012
- "id": 4059,
535012
+ "id": 4050,
535013
535013
  "name": "sortDirection",
535014
535014
  "kind": 32,
535015
535015
  "kindString": "Variable",
@@ -535018,7 +535018,7 @@
535018
535018
  },
535019
535019
  "type": {
535020
535020
  "type": "reference",
535021
- "id": 4008,
535021
+ "id": 3999,
535022
535022
  "name": "HeaderSortDirection"
535023
535023
  }
535024
535024
  }
@@ -535028,6 +535028,15 @@
535028
535028
  "title": "Variables",
535029
535029
  "kind": 32,
535030
535030
  "children": [
535031
+ 4016,
535032
+ 4017,
535033
+ 4018,
535034
+ 4019,
535035
+ 4020,
535036
+ 4021,
535037
+ 4022,
535038
+ 4023,
535039
+ 4024,
535031
535040
  4025,
535032
535041
  4026,
535033
535042
  4027,
@@ -535036,21 +535045,12 @@
535036
535045
  4030,
535037
535046
  4031,
535038
535047
  4032,
535039
- 4033,
535040
- 4034,
535041
- 4035,
535042
535048
  4036,
535043
- 4037,
535044
- 4038,
535045
- 4039,
535046
535049
  4040,
535047
- 4041,
535048
- 4045,
535050
+ 4044,
535051
+ 4048,
535049
535052
  4049,
535050
- 4053,
535051
- 4057,
535052
- 4058,
535053
- 4059
535053
+ 4050
535054
535054
  ]
535055
535055
  }
535056
535056
  ]
@@ -535060,7 +535060,7 @@
535060
535060
  }
535061
535061
  },
535062
535062
  {
535063
- "id": 4009,
535063
+ "id": 4000,
535064
535064
  "name": "SortToggleHandler",
535065
535065
  "kind": 4194304,
535066
535066
  "kindString": "Type alias",
@@ -535070,7 +535070,7 @@
535070
535070
  "type": {
535071
535071
  "type": "reflection",
535072
535072
  "declaration": {
535073
- "id": 4010,
535073
+ "id": 4001,
535074
535074
  "name": "__type",
535075
535075
  "kind": 65536,
535076
535076
  "kindString": "Type literal",
@@ -535079,7 +535079,7 @@
535079
535079
  },
535080
535080
  "signatures": [
535081
535081
  {
535082
- "id": 4011,
535082
+ "id": 4002,
535083
535083
  "name": "__call",
535084
535084
  "kind": 4096,
535085
535085
  "kindString": "Call signature",
@@ -535088,7 +535088,7 @@
535088
535088
  },
535089
535089
  "parameters": [
535090
535090
  {
535091
- "id": 4012,
535091
+ "id": 4003,
535092
535092
  "name": "sortDirection",
535093
535093
  "kind": 32768,
535094
535094
  "kindString": "Parameter",
@@ -535097,7 +535097,7 @@
535097
535097
  },
535098
535098
  "type": {
535099
535099
  "type": "reference",
535100
- "id": 4008,
535100
+ "id": 3999,
535101
535101
  "name": "HeaderSortDirection"
535102
535102
  }
535103
535103
  }
@@ -535112,7 +535112,7 @@
535112
535112
  }
535113
535113
  },
535114
535114
  {
535115
- "id": 4018,
535115
+ "id": 4009,
535116
535116
  "name": "Header",
535117
535117
  "kind": 64,
535118
535118
  "kindString": "Function",
@@ -535121,7 +535121,7 @@
535121
535121
  },
535122
535122
  "signatures": [
535123
535123
  {
535124
- "id": 4019,
535124
+ "id": 4010,
535125
535125
  "name": "Header",
535126
535126
  "kind": 4096,
535127
535127
  "kindString": "Call signature",
@@ -535130,7 +535130,7 @@
535130
535130
  },
535131
535131
  "typeParameter": [
535132
535132
  {
535133
- "id": 4020,
535133
+ "id": 4011,
535134
535134
  "name": "TType",
535135
535135
  "kind": 131072,
535136
535136
  "kindString": "Type parameter",
@@ -535141,7 +535141,7 @@
535141
535141
  ],
535142
535142
  "parameters": [
535143
535143
  {
535144
- "id": 4021,
535144
+ "id": 4012,
535145
535145
  "name": "props",
535146
535146
  "kind": 32768,
535147
535147
  "kindString": "Parameter",
@@ -535150,7 +535150,7 @@
535150
535150
  },
535151
535151
  "type": {
535152
535152
  "type": "reference",
535153
- "id": 4013,
535153
+ "id": 4004,
535154
535154
  "typeArguments": [
535155
535155
  {
535156
535156
  "type": "typeParameter",
@@ -535169,7 +535169,7 @@
535169
535169
  ]
535170
535170
  },
535171
535171
  {
535172
- "id": 4060,
535172
+ "id": 4051,
535173
535173
  "name": "HeaderSeparator",
535174
535174
  "kind": 64,
535175
535175
  "kindString": "Function",
@@ -535178,7 +535178,7 @@
535178
535178
  },
535179
535179
  "signatures": [
535180
535180
  {
535181
- "id": 4061,
535181
+ "id": 4052,
535182
535182
  "name": "HeaderSeparator",
535183
535183
  "kind": 4096,
535184
535184
  "kindString": "Call signature",
@@ -535193,7 +535193,7 @@
535193
535193
  ]
535194
535194
  },
535195
535195
  {
535196
- "id": 4005,
535196
+ "id": 3996,
535197
535197
  "name": "SORT_DIRECTION",
535198
535198
  "kind": 2097152,
535199
535199
  "kindString": "Object literal",
@@ -535203,7 +535203,7 @@
535203
535203
  },
535204
535204
  "children": [
535205
535205
  {
535206
- "id": 4006,
535206
+ "id": 3997,
535207
535207
  "name": "ASC",
535208
535208
  "kind": 32,
535209
535209
  "kindString": "Variable",
@@ -535217,7 +535217,7 @@
535217
535217
  "defaultValue": "\"asc\""
535218
535218
  },
535219
535219
  {
535220
- "id": 4007,
535220
+ "id": 3998,
535221
535221
  "name": "DESC",
535222
535222
  "kind": 32,
535223
535223
  "kindString": "Variable",
@@ -535236,8 +535236,8 @@
535236
535236
  "title": "Variables",
535237
535237
  "kind": 32,
535238
535238
  "children": [
535239
- 4006,
535240
- 4007
535239
+ 3997,
535240
+ 3998
535241
535241
  ]
535242
535242
  }
535243
535243
  ],
@@ -535252,31 +535252,31 @@
535252
535252
  "title": "Type aliases",
535253
535253
  "kind": 4194304,
535254
535254
  "children": [
535255
+ 4004,
535256
+ 3999,
535255
535257
  4013,
535256
- 4008,
535257
- 4022,
535258
- 4009
535258
+ 4000
535259
535259
  ]
535260
535260
  },
535261
535261
  {
535262
535262
  "title": "Functions",
535263
535263
  "kind": 64,
535264
535264
  "children": [
535265
- 4018,
535266
- 4060
535265
+ 4009,
535266
+ 4051
535267
535267
  ]
535268
535268
  },
535269
535269
  {
535270
535270
  "title": "Object literals",
535271
535271
  "kind": 2097152,
535272
535272
  "children": [
535273
- 4005
535273
+ 3996
535274
535274
  ]
535275
535275
  }
535276
535276
  ]
535277
535277
  },
535278
535278
  {
535279
- "id": 3948,
535279
+ "id": 3939,
535280
535280
  "name": "\"components/Table3/components/columns/header/Menu\"",
535281
535281
  "kind": 1,
535282
535282
  "kindString": "Module",
@@ -535286,7 +535286,7 @@
535286
535286
  "originalName": "/home/runner/work/taco/taco/packages/taco/src/components/Table3/components/columns/header/Menu.tsx",
535287
535287
  "children": [
535288
535288
  {
535289
- "id": 3959,
535289
+ "id": 3950,
535290
535290
  "name": "MenuProps",
535291
535291
  "kind": 4194304,
535292
535292
  "kindString": "Type alias",
@@ -535295,7 +535295,7 @@
535295
535295
  },
535296
535296
  "typeParameter": [
535297
535297
  {
535298
- "id": 3960,
535298
+ "id": 3951,
535299
535299
  "name": "TType",
535300
535300
  "kind": 131072,
535301
535301
  "kindString": "Type parameter",
@@ -535320,7 +535320,7 @@
535320
535320
  {
535321
535321
  "type": "reflection",
535322
535322
  "declaration": {
535323
- "id": 3961,
535323
+ "id": 3952,
535324
535324
  "name": "__type",
535325
535325
  "kind": 65536,
535326
535326
  "kindString": "Type literal",
@@ -535329,7 +535329,7 @@
535329
535329
  },
535330
535330
  "children": [
535331
535331
  {
535332
- "id": 3962,
535332
+ "id": 3953,
535333
535333
  "name": "canFreeze",
535334
535334
  "kind": 32,
535335
535335
  "kindString": "Variable",
@@ -535342,7 +535342,7 @@
535342
535342
  }
535343
535343
  },
535344
535344
  {
535345
- "id": 3963,
535345
+ "id": 3954,
535346
535346
  "name": "canHide",
535347
535347
  "kind": 32,
535348
535348
  "kindString": "Variable",
@@ -535355,7 +535355,7 @@
535355
535355
  }
535356
535356
  },
535357
535357
  {
535358
- "id": 3964,
535358
+ "id": 3955,
535359
535359
  "name": "canSort",
535360
535360
  "kind": 32,
535361
535361
  "kindString": "Variable",
@@ -535368,7 +535368,7 @@
535368
535368
  }
535369
535369
  },
535370
535370
  {
535371
- "id": 3965,
535371
+ "id": 3956,
535372
535372
  "name": "index",
535373
535373
  "kind": 32,
535374
535374
  "kindString": "Variable",
@@ -535381,7 +535381,7 @@
535381
535381
  }
535382
535382
  },
535383
535383
  {
535384
- "id": 3966,
535384
+ "id": 3957,
535385
535385
  "name": "menu",
535386
535386
  "kind": 32,
535387
535387
  "kindString": "Variable",
@@ -535396,7 +535396,7 @@
535396
535396
  }
535397
535397
  },
535398
535398
  {
535399
- "id": 3967,
535399
+ "id": 3958,
535400
535400
  "name": "onGoto",
535401
535401
  "kind": 32,
535402
535402
  "kindString": "Variable",
@@ -535414,7 +535414,7 @@
535414
535414
  {
535415
535415
  "type": "reflection",
535416
535416
  "declaration": {
535417
- "id": 3968,
535417
+ "id": 3959,
535418
535418
  "name": "__type",
535419
535419
  "kind": 65536,
535420
535420
  "kindString": "Type literal",
@@ -535423,7 +535423,7 @@
535423
535423
  },
535424
535424
  "signatures": [
535425
535425
  {
535426
- "id": 3969,
535426
+ "id": 3960,
535427
535427
  "name": "__call",
535428
535428
  "kind": 4096,
535429
535429
  "kindString": "Call signature",
@@ -535432,7 +535432,7 @@
535432
535432
  },
535433
535433
  "parameters": [
535434
535434
  {
535435
- "id": 3970,
535435
+ "id": 3961,
535436
535436
  "name": "query",
535437
535437
  "kind": 32768,
535438
535438
  "kindString": "Parameter",
@@ -535463,7 +535463,7 @@
535463
535463
  }
535464
535464
  },
535465
535465
  {
535466
- "id": 3971,
535466
+ "id": 3962,
535467
535467
  "name": "onHide",
535468
535468
  "kind": 32,
535469
535469
  "kindString": "Variable",
@@ -535473,7 +535473,7 @@
535473
535473
  "type": {
535474
535474
  "type": "reflection",
535475
535475
  "declaration": {
535476
- "id": 3972,
535476
+ "id": 3963,
535477
535477
  "name": "__type",
535478
535478
  "kind": 65536,
535479
535479
  "kindString": "Type literal",
@@ -535482,7 +535482,7 @@
535482
535482
  },
535483
535483
  "signatures": [
535484
535484
  {
535485
- "id": 3973,
535485
+ "id": 3964,
535486
535486
  "name": "__call",
535487
535487
  "kind": 4096,
535488
535488
  "kindString": "Call signature",
@@ -535491,7 +535491,7 @@
535491
535491
  },
535492
535492
  "parameters": [
535493
535493
  {
535494
- "id": 3974,
535494
+ "id": 3965,
535495
535495
  "name": "event",
535496
535496
  "kind": 32768,
535497
535497
  "kindString": "Parameter",
@@ -535514,7 +535514,7 @@
535514
535514
  }
535515
535515
  },
535516
535516
  {
535517
- "id": 3975,
535517
+ "id": 3966,
535518
535518
  "name": "onSortToggle",
535519
535519
  "kind": 32,
535520
535520
  "kindString": "Variable",
@@ -535523,12 +535523,12 @@
535523
535523
  },
535524
535524
  "type": {
535525
535525
  "type": "reference",
535526
- "id": 4009,
535526
+ "id": 4000,
535527
535527
  "name": "SortToggleHandler"
535528
535528
  }
535529
535529
  },
535530
535530
  {
535531
- "id": 3976,
535531
+ "id": 3967,
535532
535532
  "name": "scrollToIndex",
535533
535533
  "kind": 32,
535534
535534
  "kindString": "Variable",
@@ -535548,7 +535548,7 @@
535548
535548
  }
535549
535549
  },
535550
535550
  {
535551
- "id": 3977,
535551
+ "id": 3968,
535552
535552
  "name": "sortDirection",
535553
535553
  "kind": 32,
535554
535554
  "kindString": "Variable",
@@ -535557,12 +535557,12 @@
535557
535557
  },
535558
535558
  "type": {
535559
535559
  "type": "reference",
535560
- "id": 4008,
535560
+ "id": 3999,
535561
535561
  "name": "HeaderSortDirection"
535562
535562
  }
535563
535563
  },
535564
535564
  {
535565
- "id": 3978,
535565
+ "id": 3969,
535566
535566
  "name": "table",
535567
535567
  "kind": 32,
535568
535568
  "kindString": "Variable",
@@ -535586,17 +535586,17 @@
535586
535586
  "title": "Variables",
535587
535587
  "kind": 32,
535588
535588
  "children": [
535589
+ 3953,
535590
+ 3954,
535591
+ 3955,
535592
+ 3956,
535593
+ 3957,
535594
+ 3958,
535589
535595
  3962,
535590
- 3963,
535591
- 3964,
535592
- 3965,
535593
535596
  3966,
535594
535597
  3967,
535595
- 3971,
535596
- 3975,
535597
- 3976,
535598
- 3977,
535599
- 3978
535598
+ 3968,
535599
+ 3969
535600
535600
  ]
535601
535601
  }
535602
535602
  ]
@@ -535606,7 +535606,7 @@
535606
535606
  }
535607
535607
  },
535608
535608
  {
535609
- "id": 3979,
535609
+ "id": 3970,
535610
535610
  "name": "Menu",
535611
535611
  "kind": 64,
535612
535612
  "kindString": "Function",
@@ -535615,7 +535615,7 @@
535615
535615
  },
535616
535616
  "signatures": [
535617
535617
  {
535618
- "id": 3980,
535618
+ "id": 3971,
535619
535619
  "name": "Menu",
535620
535620
  "kind": 4096,
535621
535621
  "kindString": "Call signature",
@@ -535624,7 +535624,7 @@
535624
535624
  },
535625
535625
  "typeParameter": [
535626
535626
  {
535627
- "id": 3981,
535627
+ "id": 3972,
535628
535628
  "name": "TType",
535629
535629
  "kind": 131072,
535630
535630
  "kindString": "Type parameter",
@@ -535635,7 +535635,7 @@
535635
535635
  ],
535636
535636
  "parameters": [
535637
535637
  {
535638
- "id": 3982,
535638
+ "id": 3973,
535639
535639
  "name": "props",
535640
535640
  "kind": 32768,
535641
535641
  "kindString": "Parameter",
@@ -535644,7 +535644,7 @@
535644
535644
  },
535645
535645
  "type": {
535646
535646
  "type": "reference",
535647
- "id": 3959,
535647
+ "id": 3950,
535648
535648
  "typeArguments": [
535649
535649
  {
535650
535650
  "type": "typeParameter",
@@ -535663,7 +535663,7 @@
535663
535663
  ]
535664
535664
  },
535665
535665
  {
535666
- "id": 3949,
535666
+ "id": 3940,
535667
535667
  "name": "isGotoAvailable",
535668
535668
  "kind": 64,
535669
535669
  "kindString": "Function",
@@ -535672,7 +535672,7 @@
535672
535672
  },
535673
535673
  "signatures": [
535674
535674
  {
535675
- "id": 3950,
535675
+ "id": 3941,
535676
535676
  "name": "isGotoAvailable",
535677
535677
  "kind": 4096,
535678
535678
  "kindString": "Call signature",
@@ -535681,7 +535681,7 @@
535681
535681
  },
535682
535682
  "typeParameter": [
535683
535683
  {
535684
- "id": 3951,
535684
+ "id": 3942,
535685
535685
  "name": "TType",
535686
535686
  "kind": 131072,
535687
535687
  "kindString": "Type parameter",
@@ -535692,7 +535692,7 @@
535692
535692
  ],
535693
535693
  "parameters": [
535694
535694
  {
535695
- "id": 3952,
535695
+ "id": 3943,
535696
535696
  "name": "table",
535697
535697
  "kind": 32768,
535698
535698
  "kindString": "Parameter",
@@ -535711,7 +535711,7 @@
535711
535711
  }
535712
535712
  },
535713
535713
  {
535714
- "id": 3953,
535714
+ "id": 3944,
535715
535715
  "name": "header",
535716
535716
  "kind": 32768,
535717
535717
  "kindString": "Parameter",
@@ -535742,7 +535742,7 @@
535742
535742
  ]
535743
535743
  },
535744
535744
  {
535745
- "id": 3954,
535745
+ "id": 3945,
535746
535746
  "name": "isMenuAvailable",
535747
535747
  "kind": 64,
535748
535748
  "kindString": "Function",
@@ -535751,7 +535751,7 @@
535751
535751
  },
535752
535752
  "signatures": [
535753
535753
  {
535754
- "id": 3955,
535754
+ "id": 3946,
535755
535755
  "name": "isMenuAvailable",
535756
535756
  "kind": 4096,
535757
535757
  "kindString": "Call signature",
@@ -535760,7 +535760,7 @@
535760
535760
  },
535761
535761
  "typeParameter": [
535762
535762
  {
535763
- "id": 3956,
535763
+ "id": 3947,
535764
535764
  "name": "TType",
535765
535765
  "kind": 131072,
535766
535766
  "kindString": "Type parameter",
@@ -535771,7 +535771,7 @@
535771
535771
  ],
535772
535772
  "parameters": [
535773
535773
  {
535774
- "id": 3957,
535774
+ "id": 3948,
535775
535775
  "name": "table",
535776
535776
  "kind": 32768,
535777
535777
  "kindString": "Parameter",
@@ -535790,7 +535790,7 @@
535790
535790
  }
535791
535791
  },
535792
535792
  {
535793
- "id": 3958,
535793
+ "id": 3949,
535794
535794
  "name": "header",
535795
535795
  "kind": 32768,
535796
535796
  "kindString": "Parameter",
@@ -535826,22 +535826,22 @@
535826
535826
  "title": "Type aliases",
535827
535827
  "kind": 4194304,
535828
535828
  "children": [
535829
- 3959
535829
+ 3950
535830
535830
  ]
535831
535831
  },
535832
535832
  {
535833
535833
  "title": "Functions",
535834
535834
  "kind": 64,
535835
535835
  "children": [
535836
- 3979,
535837
- 3949,
535838
- 3954
535836
+ 3970,
535837
+ 3940,
535838
+ 3945
535839
535839
  ]
535840
535840
  }
535841
535841
  ]
535842
535842
  },
535843
535843
  {
535844
- "id": 3983,
535844
+ "id": 3974,
535845
535845
  "name": "\"components/Table3/components/columns/header/Resizer\"",
535846
535846
  "kind": 1,
535847
535847
  "kindString": "Module",
@@ -535851,7 +535851,7 @@
535851
535851
  "originalName": "/home/runner/work/taco/taco/packages/taco/src/components/Table3/components/columns/header/Resizer.tsx",
535852
535852
  "children": [
535853
535853
  {
535854
- "id": 3984,
535854
+ "id": 3975,
535855
535855
  "name": "Resizer",
535856
535856
  "kind": 64,
535857
535857
  "kindString": "Function",
@@ -535860,7 +535860,7 @@
535860
535860
  },
535861
535861
  "signatures": [
535862
535862
  {
535863
- "id": 3985,
535863
+ "id": 3976,
535864
535864
  "name": "Resizer",
535865
535865
  "kind": 4096,
535866
535866
  "kindString": "Call signature",
@@ -535869,7 +535869,7 @@
535869
535869
  },
535870
535870
  "parameters": [
535871
535871
  {
535872
- "id": 3986,
535872
+ "id": 3977,
535873
535873
  "name": "props",
535874
535874
  "kind": 32768,
535875
535875
  "kindString": "Parameter",
@@ -535895,13 +535895,13 @@
535895
535895
  "title": "Functions",
535896
535896
  "kind": 64,
535897
535897
  "children": [
535898
- 3984
535898
+ 3975
535899
535899
  ]
535900
535900
  }
535901
535901
  ]
535902
535902
  },
535903
535903
  {
535904
- "id": 3987,
535904
+ "id": 3978,
535905
535905
  "name": "\"components/Table3/components/columns/header/SortIndicator\"",
535906
535906
  "kind": 1,
535907
535907
  "kindString": "Module",
@@ -535911,7 +535911,7 @@
535911
535911
  "originalName": "/home/runner/work/taco/taco/packages/taco/src/components/Table3/components/columns/header/SortIndicator.tsx",
535912
535912
  "children": [
535913
535913
  {
535914
- "id": 3988,
535914
+ "id": 3979,
535915
535915
  "name": "SortIndicator",
535916
535916
  "kind": 64,
535917
535917
  "kindString": "Function",
@@ -535920,7 +535920,7 @@
535920
535920
  },
535921
535921
  "signatures": [
535922
535922
  {
535923
- "id": 3989,
535923
+ "id": 3980,
535924
535924
  "name": "SortIndicator",
535925
535925
  "kind": 4096,
535926
535926
  "kindString": "Call signature",
@@ -535929,7 +535929,7 @@
535929
535929
  },
535930
535930
  "parameters": [
535931
535931
  {
535932
- "id": 3990,
535932
+ "id": 3981,
535933
535933
  "name": "props",
535934
535934
  "kind": 32768,
535935
535935
  "kindString": "Parameter",
@@ -535950,7 +535950,7 @@
535950
535950
  ]
535951
535951
  },
535952
535952
  {
535953
- "id": 3991,
535953
+ "id": 3982,
535954
535954
  "name": "getAriaSort",
535955
535955
  "kind": 64,
535956
535956
  "kindString": "Function",
@@ -535960,7 +535960,7 @@
535960
535960
  },
535961
535961
  "signatures": [
535962
535962
  {
535963
- "id": 3992,
535963
+ "id": 3983,
535964
535964
  "name": "getAriaSort",
535965
535965
  "kind": 4096,
535966
535966
  "kindString": "Call signature",
@@ -535969,7 +535969,7 @@
535969
535969
  },
535970
535970
  "parameters": [
535971
535971
  {
535972
- "id": 3993,
535972
+ "id": 3984,
535973
535973
  "name": "direction",
535974
535974
  "kind": 32768,
535975
535975
  "kindString": "Parameter",
@@ -535990,7 +535990,7 @@
535990
535990
  ]
535991
535991
  },
535992
535992
  {
535993
- "id": 3994,
535993
+ "id": 3985,
535994
535994
  "name": "getSortAttributes",
535995
535995
  "kind": 64,
535996
535996
  "kindString": "Function",
@@ -535999,7 +535999,7 @@
535999
535999
  },
536000
536000
  "signatures": [
536001
536001
  {
536002
- "id": 3995,
536002
+ "id": 3986,
536003
536003
  "name": "getSortAttributes",
536004
536004
  "kind": 4096,
536005
536005
  "kindString": "Call signature",
@@ -536008,7 +536008,7 @@
536008
536008
  },
536009
536009
  "parameters": [
536010
536010
  {
536011
- "id": 3996,
536011
+ "id": 3987,
536012
536012
  "name": "toggleSorting",
536013
536013
  "kind": 32768,
536014
536014
  "kindString": "Parameter",
@@ -536018,7 +536018,7 @@
536018
536018
  "type": {
536019
536019
  "type": "reflection",
536020
536020
  "declaration": {
536021
- "id": 3997,
536021
+ "id": 3988,
536022
536022
  "name": "__type",
536023
536023
  "kind": 65536,
536024
536024
  "kindString": "Type literal",
@@ -536027,7 +536027,7 @@
536027
536027
  },
536028
536028
  "signatures": [
536029
536029
  {
536030
- "id": 3998,
536030
+ "id": 3989,
536031
536031
  "name": "__call",
536032
536032
  "kind": 4096,
536033
536033
  "kindString": "Call signature",
@@ -536036,7 +536036,7 @@
536036
536036
  },
536037
536037
  "parameters": [
536038
536038
  {
536039
- "id": 3999,
536039
+ "id": 3990,
536040
536040
  "name": "event",
536041
536041
  "kind": 32768,
536042
536042
  "kindString": "Parameter",
@@ -536059,7 +536059,7 @@
536059
536059
  }
536060
536060
  },
536061
536061
  {
536062
- "id": 4000,
536062
+ "id": 3991,
536063
536063
  "name": "sortDirection",
536064
536064
  "kind": 32768,
536065
536065
  "kindString": "Parameter",
@@ -536085,7 +536085,7 @@
536085
536085
  "type": {
536086
536086
  "type": "reflection",
536087
536087
  "declaration": {
536088
- "id": 4001,
536088
+ "id": 3992,
536089
536089
  "name": "__type",
536090
536090
  "kind": 65536,
536091
536091
  "kindString": "Type literal",
@@ -536094,7 +536094,7 @@
536094
536094
  },
536095
536095
  "children": [
536096
536096
  {
536097
- "id": 4002,
536097
+ "id": 3993,
536098
536098
  "name": "aria-sort",
536099
536099
  "kind": 32,
536100
536100
  "kindString": "Variable",
@@ -536108,7 +536108,7 @@
536108
536108
  "defaultValue": "ariaSort[sortDirection as any] ?? 'none'"
536109
536109
  },
536110
536110
  {
536111
- "id": 4003,
536111
+ "id": 3994,
536112
536112
  "name": "onClick",
536113
536113
  "kind": 32,
536114
536114
  "kindString": "Variable",
@@ -536128,8 +536128,8 @@
536128
536128
  "title": "Variables",
536129
536129
  "kind": 32,
536130
536130
  "children": [
536131
- 4002,
536132
- 4003
536131
+ 3993,
536132
+ 3994
536133
536133
  ]
536134
536134
  }
536135
536135
  ]
@@ -536144,9 +536144,9 @@
536144
536144
  "title": "Functions",
536145
536145
  "kind": 64,
536146
536146
  "children": [
536147
- 3988,
536148
- 3991,
536149
- 3994
536147
+ 3979,
536148
+ 3982,
536149
+ 3985
536150
536150
  ]
536151
536151
  }
536152
536152
  ]
@@ -537390,7 +537390,7 @@
537390
537390
  ]
537391
537391
  },
537392
537392
  {
537393
- "id": 4062,
537393
+ "id": 4053,
537394
537394
  "name": "\"components/Table3/components/rows/RowContext\"",
537395
537395
  "kind": 1,
537396
537396
  "kindString": "Module",
@@ -537400,7 +537400,7 @@
537400
537400
  "originalName": "/home/runner/work/taco/taco/packages/taco/src/components/Table3/components/rows/RowContext.tsx",
537401
537401
  "children": [
537402
537402
  {
537403
- "id": 4063,
537403
+ "id": 4054,
537404
537404
  "name": "RowContext",
537405
537405
  "kind": 32,
537406
537406
  "kindString": "Variable",
@@ -537421,7 +537421,7 @@
537421
537421
  "defaultValue": "React.createContext<RowContextValue>({\n isHovered: false,\n setIsHovered: () => {\n /* empty */\n },\n rowIndex: 0,\n})"
537422
537422
  },
537423
537423
  {
537424
- "id": 4064,
537424
+ "id": 4055,
537425
537425
  "name": "useRowContext",
537426
537426
  "kind": 64,
537427
537427
  "kindString": "Function",
@@ -537431,7 +537431,7 @@
537431
537431
  },
537432
537432
  "signatures": [
537433
537433
  {
537434
- "id": 4065,
537434
+ "id": 4056,
537435
537435
  "name": "useRowContext",
537436
537436
  "kind": 4096,
537437
537437
  "kindString": "Call signature",
@@ -537451,14 +537451,14 @@
537451
537451
  "title": "Variables",
537452
537452
  "kind": 32,
537453
537453
  "children": [
537454
- 4063
537454
+ 4054
537455
537455
  ]
537456
537456
  },
537457
537457
  {
537458
537458
  "title": "Functions",
537459
537459
  "kind": 64,
537460
537460
  "children": [
537461
- 4064
537461
+ 4055
537462
537462
  ]
537463
537463
  }
537464
537464
  ]
@@ -539406,7 +539406,7 @@
539406
539406
  ]
539407
539407
  },
539408
539408
  {
539409
- "id": 3939,
539409
+ "id": 4099,
539410
539410
  "name": "\"components/Table3/components/toolbar/FontSize\"",
539411
539411
  "kind": 1,
539412
539412
  "kindString": "Module",
@@ -539416,7 +539416,7 @@
539416
539416
  "originalName": "/home/runner/work/taco/taco/packages/taco/src/components/Table3/components/toolbar/FontSize.tsx",
539417
539417
  "children": [
539418
539418
  {
539419
- "id": 3944,
539419
+ "id": 4104,
539420
539420
  "name": "FontSize",
539421
539421
  "kind": 64,
539422
539422
  "kindString": "Function",
@@ -539425,7 +539425,7 @@
539425
539425
  },
539426
539426
  "signatures": [
539427
539427
  {
539428
- "id": 3945,
539428
+ "id": 4105,
539429
539429
  "name": "FontSize",
539430
539430
  "kind": 4096,
539431
539431
  "kindString": "Call signature",
@@ -539434,7 +539434,7 @@
539434
539434
  },
539435
539435
  "typeParameter": [
539436
539436
  {
539437
- "id": 3946,
539437
+ "id": 4106,
539438
539438
  "name": "TType",
539439
539439
  "kind": 131072,
539440
539440
  "kindString": "Type parameter",
@@ -539445,7 +539445,7 @@
539445
539445
  ],
539446
539446
  "parameters": [
539447
539447
  {
539448
- "id": 3947,
539448
+ "id": 4107,
539449
539449
  "name": "props",
539450
539450
  "kind": 32768,
539451
539451
  "kindString": "Parameter",
@@ -539472,7 +539472,7 @@
539472
539472
  ]
539473
539473
  },
539474
539474
  {
539475
- "id": 3940,
539475
+ "id": 4100,
539476
539476
  "name": "FONT_SIZE",
539477
539477
  "kind": 2097152,
539478
539478
  "kindString": "Object literal",
@@ -539482,7 +539482,7 @@
539482
539482
  },
539483
539483
  "children": [
539484
539484
  {
539485
- "id": 3943,
539485
+ "id": 4103,
539486
539486
  "name": "large",
539487
539487
  "kind": 32,
539488
539488
  "kindString": "Variable",
@@ -539496,7 +539496,7 @@
539496
539496
  "defaultValue": "\"large\""
539497
539497
  },
539498
539498
  {
539499
- "id": 3942,
539499
+ "id": 4102,
539500
539500
  "name": "medium",
539501
539501
  "kind": 32,
539502
539502
  "kindString": "Variable",
@@ -539510,7 +539510,7 @@
539510
539510
  "defaultValue": "\"medium\""
539511
539511
  },
539512
539512
  {
539513
- "id": 3941,
539513
+ "id": 4101,
539514
539514
  "name": "small",
539515
539515
  "kind": 32,
539516
539516
  "kindString": "Variable",
@@ -539529,9 +539529,9 @@
539529
539529
  "title": "Variables",
539530
539530
  "kind": 32,
539531
539531
  "children": [
539532
- 3943,
539533
- 3942,
539534
- 3941
539532
+ 4103,
539533
+ 4102,
539534
+ 4101
539535
539535
  ]
539536
539536
  }
539537
539537
  ],
@@ -539546,14 +539546,14 @@
539546
539546
  "title": "Functions",
539547
539547
  "kind": 64,
539548
539548
  "children": [
539549
- 3944
539549
+ 4104
539550
539550
  ]
539551
539551
  },
539552
539552
  {
539553
539553
  "title": "Object literals",
539554
539554
  "kind": 2097152,
539555
539555
  "children": [
539556
- 3940
539556
+ 4100
539557
539557
  ]
539558
539558
  }
539559
539559
  ]
@@ -561951,19 +561951,19 @@
561951
561951
  4962,
561952
561952
  5861,
561953
561953
  4450,
561954
- 4066,
561954
+ 4057,
561955
561955
  4436,
561956
561956
  4407,
561957
561957
  4291,
561958
561958
  4405,
561959
- 4091,
561959
+ 4082,
561960
561960
  4890,
561961
561961
  3929,
561962
561962
  4478,
561963
- 4004,
561964
- 3948,
561965
- 3983,
561966
- 3987,
561963
+ 3995,
561964
+ 3939,
561965
+ 3974,
561966
+ 3978,
561967
561967
  4108,
561968
561968
  4472,
561969
561969
  4350,
@@ -561972,7 +561972,7 @@
561972
561972
  4141,
561973
561973
  4651,
561974
561974
  4638,
561975
- 4062,
561975
+ 4053,
561976
561976
  4668,
561977
561977
  4662,
561978
561978
  4850,
@@ -561983,7 +561983,7 @@
561983
561983
  4702,
561984
561984
  4729,
561985
561985
  4711,
561986
- 3939,
561986
+ 4099,
561987
561987
  4835,
561988
561988
  4784,
561989
561989
  4807,