@genesislcap/grid-tabulator 14.396.3 → 14.396.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.
Files changed (2) hide show
  1. package/dist/custom-elements.json +843 -843
  2. package/package.json +13 -13
@@ -3212,224 +3212,622 @@
3212
3212
  },
3213
3213
  {
3214
3214
  "kind": "javascript-module",
3215
- "path": "src/datasource/client-side.datasource.ts",
3215
+ "path": "src/cell-formatters/action.formatter.ts",
3216
3216
  "declarations": [
3217
3217
  {
3218
- "kind": "variable",
3219
- "name": "criteriaDelimiter",
3220
- "type": {
3221
- "text": "string"
3222
- },
3223
- "default": "';'",
3224
- "description": "Delimiter for criteria in the datasource"
3225
- },
3226
- {
3227
- "kind": "variable",
3228
- "name": "criteriaJoin",
3229
- "type": {
3230
- "text": "string"
3218
+ "kind": "function",
3219
+ "name": "actionFormatter",
3220
+ "return": {
3221
+ "type": {
3222
+ "text": ""
3223
+ }
3231
3224
  },
3232
- "default": "' && '",
3233
- "description": "Join operator for criteria in the datasource"
3234
- },
3235
- {
3236
- "kind": "class",
3237
- "description": "The Genesis Datasource element, for client-side data fetching and used exclusively by the GridTabulator element.",
3238
- "name": "GridTabulatorClientSideDatasource",
3239
- "members": [
3240
- {
3241
- "kind": "field",
3242
- "name": "auth",
3243
- "type": {
3244
- "text": "Auth"
3245
- }
3246
- },
3247
- {
3248
- "kind": "field",
3249
- "name": "connect",
3250
- "type": {
3251
- "text": "Connect"
3252
- }
3253
- },
3254
- {
3255
- "kind": "field",
3256
- "name": "datasource",
3257
- "type": {
3258
- "text": "Datasource"
3259
- }
3260
- },
3261
- {
3262
- "kind": "field",
3263
- "name": "deferredGridOptions",
3264
- "type": {
3265
- "text": "Options"
3266
- }
3267
- },
3225
+ "parameters": [
3268
3226
  {
3269
- "kind": "field",
3270
- "name": "deferredColumnStates",
3227
+ "name": "cell",
3271
3228
  "type": {
3272
- "text": "any[]"
3229
+ "text": "any"
3273
3230
  },
3274
- "default": "[]",
3275
- "description": "Allows storing column layouts between datasource initializations"
3276
- },
3277
- {
3278
- "kind": "field",
3279
- "name": "criteria",
3280
- "type": {
3281
- "text": "string"
3282
- }
3283
- },
3284
- {
3285
- "kind": "method",
3286
- "name": "criteriaChanged",
3287
- "parameters": [
3288
- {
3289
- "name": "oldCriteria",
3290
- "type": {
3291
- "text": "string"
3292
- }
3293
- },
3294
- {
3295
- "name": "newCriteria",
3296
- "type": {
3297
- "text": "string"
3298
- }
3299
- }
3300
- ]
3301
- },
3302
- {
3303
- "kind": "field",
3304
- "name": "fields",
3305
- "type": {
3306
- "text": "string"
3307
- }
3231
+ "description": "The cell component provided by Tabulator"
3308
3232
  },
3309
3233
  {
3310
- "kind": "field",
3311
- "name": "isSnapshot",
3234
+ "name": "formatterParams",
3235
+ "default": "{}",
3312
3236
  "type": {
3313
- "text": "boolean"
3237
+ "text": "ActionFormatterParams<T>"
3314
3238
  },
3315
- "default": "false"
3316
- },
3317
- {
3318
- "kind": "field",
3319
- "name": "maxRows",
3320
- "type": {
3321
- "text": "number"
3322
- }
3323
- },
3239
+ "description": "Action formatter parameters"
3240
+ }
3241
+ ],
3242
+ "description": "Formatter that displays an action button in the cell.\nStyled to match grid-pro action renderer.",
3243
+ "privacy": "public"
3244
+ }
3245
+ ],
3246
+ "exports": [
3247
+ {
3248
+ "kind": "js",
3249
+ "name": "actionFormatter",
3250
+ "declaration": {
3251
+ "name": "actionFormatter",
3252
+ "module": "src/cell-formatters/action.formatter.ts"
3253
+ }
3254
+ }
3255
+ ]
3256
+ },
3257
+ {
3258
+ "kind": "javascript-module",
3259
+ "path": "src/cell-formatters/actions-menu.formatter.ts",
3260
+ "declarations": [
3261
+ {
3262
+ "kind": "function",
3263
+ "name": "actionsMenuFormatter",
3264
+ "return": {
3265
+ "type": {
3266
+ "text": ""
3267
+ }
3268
+ },
3269
+ "parameters": [
3324
3270
  {
3325
- "kind": "field",
3326
- "name": "maxView",
3271
+ "name": "cell",
3327
3272
  "type": {
3328
- "text": "number"
3329
- }
3273
+ "text": "any"
3274
+ },
3275
+ "description": "The cell component provided by Tabulator"
3330
3276
  },
3331
3277
  {
3332
- "kind": "field",
3333
- "name": "pollingInterval",
3278
+ "name": "formatterParams",
3279
+ "default": "{}",
3334
3280
  "type": {
3335
- "text": "number"
3336
- }
3337
- },
3281
+ "text": "ActionsMenuFormatterParams<T>"
3282
+ },
3283
+ "description": "Actions menu formatter parameters"
3284
+ }
3285
+ ],
3286
+ "description": "Formatter that displays a dropdown menu of actions in the cell.\nStyled to match grid-pro actions-menu renderer.",
3287
+ "privacy": "public"
3288
+ }
3289
+ ],
3290
+ "exports": [
3291
+ {
3292
+ "kind": "js",
3293
+ "name": "actionsMenuFormatter",
3294
+ "declaration": {
3295
+ "name": "actionsMenuFormatter",
3296
+ "module": "src/cell-formatters/actions-menu.formatter.ts"
3297
+ }
3298
+ }
3299
+ ]
3300
+ },
3301
+ {
3302
+ "kind": "javascript-module",
3303
+ "path": "src/cell-formatters/boolean.formatter.ts",
3304
+ "declarations": [
3305
+ {
3306
+ "kind": "function",
3307
+ "name": "booleanFormatter",
3308
+ "return": {
3309
+ "type": {
3310
+ "text": ""
3311
+ }
3312
+ },
3313
+ "parameters": [
3338
3314
  {
3339
- "kind": "field",
3340
- "name": "movingView",
3315
+ "name": "cell",
3341
3316
  "type": {
3342
- "text": "boolean"
3317
+ "text": "any"
3343
3318
  },
3344
- "default": "false"
3319
+ "description": "The cell component provided by Tabulator"
3345
3320
  },
3346
3321
  {
3347
- "kind": "field",
3348
- "name": "orderBy",
3322
+ "name": "formatterParams",
3323
+ "default": "{}",
3349
3324
  "type": {
3350
- "text": "string"
3351
- }
3352
- },
3325
+ "text": "BooleanFormatterParams<T>"
3326
+ },
3327
+ "description": "Boolean formatter parameters"
3328
+ }
3329
+ ],
3330
+ "description": "Formatter that displays boolean values using a checkbox component.\nStyled to match grid-pro boolean renderer.",
3331
+ "privacy": "public"
3332
+ }
3333
+ ],
3334
+ "exports": [
3335
+ {
3336
+ "kind": "js",
3337
+ "name": "booleanFormatter",
3338
+ "declaration": {
3339
+ "name": "booleanFormatter",
3340
+ "module": "src/cell-formatters/boolean.formatter.ts"
3341
+ }
3342
+ }
3343
+ ]
3344
+ },
3345
+ {
3346
+ "kind": "javascript-module",
3347
+ "path": "src/cell-formatters/constants.ts",
3348
+ "declarations": [],
3349
+ "exports": []
3350
+ },
3351
+ {
3352
+ "kind": "javascript-module",
3353
+ "path": "src/cell-formatters/editable.formatter.ts",
3354
+ "declarations": [
3355
+ {
3356
+ "kind": "function",
3357
+ "name": "editableFormatter",
3358
+ "return": {
3359
+ "type": {
3360
+ "text": ""
3361
+ }
3362
+ },
3363
+ "parameters": [
3353
3364
  {
3354
- "kind": "field",
3355
- "name": "request",
3365
+ "name": "cell",
3356
3366
  "type": {
3357
3367
  "text": "any"
3358
- }
3368
+ },
3369
+ "description": "The cell component provided by Tabulator"
3359
3370
  },
3360
3371
  {
3361
- "kind": "field",
3362
- "name": "resourceName",
3372
+ "name": "formatterParams",
3373
+ "default": "{}",
3363
3374
  "type": {
3364
- "text": "string"
3365
- }
3366
- },
3367
- {
3368
- "kind": "method",
3369
- "name": "resourceNameChanged",
3370
- "parameters": [
3371
- {
3372
- "name": "oldValue",
3373
- "type": {
3374
- "text": "string"
3375
- }
3376
- },
3377
- {
3378
- "name": "newValue",
3379
- "type": {
3380
- "text": "string"
3381
- }
3382
- }
3383
- ]
3384
- },
3385
- {
3386
- "kind": "field",
3387
- "name": "reverse",
3388
- "type": {
3389
- "text": "boolean"
3375
+ "text": "EditableFormatterParams<T>"
3390
3376
  },
3391
- "default": "false"
3392
- },
3393
- {
3394
- "kind": "field",
3395
- "name": "rowIdAttr",
3396
- "description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type."
3397
- },
3377
+ "description": "Editable formatter parameters"
3378
+ }
3379
+ ],
3380
+ "description": "Formatter that displays an editable cell with validation state",
3381
+ "privacy": "public"
3382
+ }
3383
+ ],
3384
+ "exports": [
3385
+ {
3386
+ "kind": "js",
3387
+ "name": "editableFormatter",
3388
+ "declaration": {
3389
+ "name": "editableFormatter",
3390
+ "module": "src/cell-formatters/editable.formatter.ts"
3391
+ }
3392
+ }
3393
+ ]
3394
+ },
3395
+ {
3396
+ "kind": "javascript-module",
3397
+ "path": "src/cell-formatters/index.ts",
3398
+ "declarations": [
3399
+ {
3400
+ "kind": "variable",
3401
+ "name": "formatters",
3402
+ "type": {
3403
+ "text": "object"
3404
+ },
3405
+ "default": "{\n action: actionFormatter,\n actionsMenu: actionsMenuFormatter,\n boolean: booleanFormatter,\n editable: editableFormatter,\n select: selectFormatter,\n text: textFormatter,\n}",
3406
+ "description": "Zero formatters for Tabulator grid"
3407
+ }
3408
+ ],
3409
+ "exports": [
3410
+ {
3411
+ "kind": "js",
3412
+ "name": "*",
3413
+ "declaration": {
3414
+ "name": "*",
3415
+ "package": "./constants"
3416
+ }
3417
+ },
3418
+ {
3419
+ "kind": "js",
3420
+ "name": "ActionFormatterParams",
3421
+ "declaration": {
3422
+ "name": "ActionFormatterParams",
3423
+ "module": "src/cell-formatters/index.ts"
3424
+ }
3425
+ },
3426
+ {
3427
+ "kind": "js",
3428
+ "name": "actionFormatter",
3429
+ "declaration": {
3430
+ "name": "actionFormatter",
3431
+ "module": "src/cell-formatters/index.ts"
3432
+ }
3433
+ },
3434
+ {
3435
+ "kind": "js",
3436
+ "name": "ActionsMenuFormatterParams",
3437
+ "declaration": {
3438
+ "name": "ActionsMenuFormatterParams",
3439
+ "module": "src/cell-formatters/index.ts"
3440
+ }
3441
+ },
3442
+ {
3443
+ "kind": "js",
3444
+ "name": "actionsMenuFormatter",
3445
+ "declaration": {
3446
+ "name": "actionsMenuFormatter",
3447
+ "module": "src/cell-formatters/index.ts"
3448
+ }
3449
+ },
3450
+ {
3451
+ "kind": "js",
3452
+ "name": "BooleanFormatterParams",
3453
+ "declaration": {
3454
+ "name": "BooleanFormatterParams",
3455
+ "module": "src/cell-formatters/index.ts"
3456
+ }
3457
+ },
3458
+ {
3459
+ "kind": "js",
3460
+ "name": "booleanFormatter",
3461
+ "declaration": {
3462
+ "name": "booleanFormatter",
3463
+ "module": "src/cell-formatters/index.ts"
3464
+ }
3465
+ },
3466
+ {
3467
+ "kind": "js",
3468
+ "name": "EditableFormatterParams",
3469
+ "declaration": {
3470
+ "name": "EditableFormatterParams",
3471
+ "module": "src/cell-formatters/index.ts"
3472
+ }
3473
+ },
3474
+ {
3475
+ "kind": "js",
3476
+ "name": "editableFormatter",
3477
+ "declaration": {
3478
+ "name": "editableFormatter",
3479
+ "module": "src/cell-formatters/index.ts"
3480
+ }
3481
+ },
3482
+ {
3483
+ "kind": "js",
3484
+ "name": "SelectFormatterParams",
3485
+ "declaration": {
3486
+ "name": "SelectFormatterParams",
3487
+ "module": "src/cell-formatters/index.ts"
3488
+ }
3489
+ },
3490
+ {
3491
+ "kind": "js",
3492
+ "name": "selectFormatter",
3493
+ "declaration": {
3494
+ "name": "selectFormatter",
3495
+ "module": "src/cell-formatters/index.ts"
3496
+ }
3497
+ },
3498
+ {
3499
+ "kind": "js",
3500
+ "name": "TextFormatterParams",
3501
+ "declaration": {
3502
+ "name": "TextFormatterParams",
3503
+ "module": "src/cell-formatters/index.ts"
3504
+ }
3505
+ },
3506
+ {
3507
+ "kind": "js",
3508
+ "name": "textFormatter",
3509
+ "declaration": {
3510
+ "name": "textFormatter",
3511
+ "module": "src/cell-formatters/index.ts"
3512
+ }
3513
+ },
3514
+ {
3515
+ "kind": "js",
3516
+ "name": "formatters",
3517
+ "declaration": {
3518
+ "name": "formatters",
3519
+ "module": "src/cell-formatters/index.ts"
3520
+ }
3521
+ }
3522
+ ]
3523
+ },
3524
+ {
3525
+ "kind": "javascript-module",
3526
+ "path": "src/cell-formatters/select.formatter.ts",
3527
+ "declarations": [
3528
+ {
3529
+ "kind": "function",
3530
+ "name": "selectFormatter",
3531
+ "return": {
3532
+ "type": {
3533
+ "text": ""
3534
+ }
3535
+ },
3536
+ "parameters": [
3398
3537
  {
3399
- "kind": "field",
3400
- "name": "restartOnReconnection",
3538
+ "name": "cell",
3401
3539
  "type": {
3402
- "text": "boolean"
3540
+ "text": "any"
3403
3541
  },
3404
- "default": "true"
3542
+ "description": "The cell component provided by Tabulator"
3405
3543
  },
3406
3544
  {
3407
- "kind": "field",
3408
- "name": "keepColDefsOnClearRowData",
3545
+ "name": "formatterParams",
3409
3546
  "type": {
3410
- "text": "boolean"
3547
+ "text": "SelectFormatterParams<T>"
3411
3548
  },
3412
- "default": "false",
3413
- "description": "Whether to keep column definitions when clearing row data"
3414
- },
3549
+ "description": "Select formatter parameters"
3550
+ }
3551
+ ],
3552
+ "description": "Formatter that displays a select component with options.\nReturns a wrapped div containing the select, similar to boolean.formatter.",
3553
+ "privacy": "public"
3554
+ }
3555
+ ],
3556
+ "exports": [
3557
+ {
3558
+ "kind": "js",
3559
+ "name": "selectFormatter",
3560
+ "declaration": {
3561
+ "name": "selectFormatter",
3562
+ "module": "src/cell-formatters/select.formatter.ts"
3563
+ }
3564
+ }
3565
+ ]
3566
+ },
3567
+ {
3568
+ "kind": "javascript-module",
3569
+ "path": "src/cell-formatters/text.formatter.ts",
3570
+ "declarations": [
3571
+ {
3572
+ "kind": "function",
3573
+ "name": "textFormatter",
3574
+ "return": {
3575
+ "type": {
3576
+ "text": ""
3577
+ }
3578
+ },
3579
+ "parameters": [
3415
3580
  {
3416
- "kind": "field",
3417
- "name": "rowDataMapper",
3581
+ "name": "cell",
3418
3582
  "type": {
3419
- "text": "Function"
3583
+ "text": "any"
3420
3584
  },
3421
- "description": "Allows grid data updates to be processed via and external function before applying in grid"
3585
+ "description": "The cell component provided by Tabulator"
3422
3586
  },
3423
3587
  {
3424
- "kind": "field",
3425
- "name": "dataSub",
3588
+ "name": "formatterParams",
3589
+ "default": "{}",
3426
3590
  "type": {
3427
- "text": "Subscription"
3591
+ "text": "TextFormatterParams<T>"
3428
3592
  },
3429
- "privacy": "private"
3430
- },
3431
- {
3432
- "kind": "field",
3593
+ "description": "Text formatter parameters"
3594
+ }
3595
+ ],
3596
+ "description": "Text formatter for customized display of values.\nStyled to match grid-pro text renderer.",
3597
+ "privacy": "public"
3598
+ }
3599
+ ],
3600
+ "exports": [
3601
+ {
3602
+ "kind": "js",
3603
+ "name": "textFormatter",
3604
+ "declaration": {
3605
+ "name": "textFormatter",
3606
+ "module": "src/cell-formatters/text.formatter.ts"
3607
+ }
3608
+ }
3609
+ ]
3610
+ },
3611
+ {
3612
+ "kind": "javascript-module",
3613
+ "path": "src/datasource/client-side.datasource.ts",
3614
+ "declarations": [
3615
+ {
3616
+ "kind": "variable",
3617
+ "name": "criteriaDelimiter",
3618
+ "type": {
3619
+ "text": "string"
3620
+ },
3621
+ "default": "';'",
3622
+ "description": "Delimiter for criteria in the datasource"
3623
+ },
3624
+ {
3625
+ "kind": "variable",
3626
+ "name": "criteriaJoin",
3627
+ "type": {
3628
+ "text": "string"
3629
+ },
3630
+ "default": "' && '",
3631
+ "description": "Join operator for criteria in the datasource"
3632
+ },
3633
+ {
3634
+ "kind": "class",
3635
+ "description": "The Genesis Datasource element, for client-side data fetching and used exclusively by the GridTabulator element.",
3636
+ "name": "GridTabulatorClientSideDatasource",
3637
+ "members": [
3638
+ {
3639
+ "kind": "field",
3640
+ "name": "auth",
3641
+ "type": {
3642
+ "text": "Auth"
3643
+ }
3644
+ },
3645
+ {
3646
+ "kind": "field",
3647
+ "name": "connect",
3648
+ "type": {
3649
+ "text": "Connect"
3650
+ }
3651
+ },
3652
+ {
3653
+ "kind": "field",
3654
+ "name": "datasource",
3655
+ "type": {
3656
+ "text": "Datasource"
3657
+ }
3658
+ },
3659
+ {
3660
+ "kind": "field",
3661
+ "name": "deferredGridOptions",
3662
+ "type": {
3663
+ "text": "Options"
3664
+ }
3665
+ },
3666
+ {
3667
+ "kind": "field",
3668
+ "name": "deferredColumnStates",
3669
+ "type": {
3670
+ "text": "any[]"
3671
+ },
3672
+ "default": "[]",
3673
+ "description": "Allows storing column layouts between datasource initializations"
3674
+ },
3675
+ {
3676
+ "kind": "field",
3677
+ "name": "criteria",
3678
+ "type": {
3679
+ "text": "string"
3680
+ }
3681
+ },
3682
+ {
3683
+ "kind": "method",
3684
+ "name": "criteriaChanged",
3685
+ "parameters": [
3686
+ {
3687
+ "name": "oldCriteria",
3688
+ "type": {
3689
+ "text": "string"
3690
+ }
3691
+ },
3692
+ {
3693
+ "name": "newCriteria",
3694
+ "type": {
3695
+ "text": "string"
3696
+ }
3697
+ }
3698
+ ]
3699
+ },
3700
+ {
3701
+ "kind": "field",
3702
+ "name": "fields",
3703
+ "type": {
3704
+ "text": "string"
3705
+ }
3706
+ },
3707
+ {
3708
+ "kind": "field",
3709
+ "name": "isSnapshot",
3710
+ "type": {
3711
+ "text": "boolean"
3712
+ },
3713
+ "default": "false"
3714
+ },
3715
+ {
3716
+ "kind": "field",
3717
+ "name": "maxRows",
3718
+ "type": {
3719
+ "text": "number"
3720
+ }
3721
+ },
3722
+ {
3723
+ "kind": "field",
3724
+ "name": "maxView",
3725
+ "type": {
3726
+ "text": "number"
3727
+ }
3728
+ },
3729
+ {
3730
+ "kind": "field",
3731
+ "name": "pollingInterval",
3732
+ "type": {
3733
+ "text": "number"
3734
+ }
3735
+ },
3736
+ {
3737
+ "kind": "field",
3738
+ "name": "movingView",
3739
+ "type": {
3740
+ "text": "boolean"
3741
+ },
3742
+ "default": "false"
3743
+ },
3744
+ {
3745
+ "kind": "field",
3746
+ "name": "orderBy",
3747
+ "type": {
3748
+ "text": "string"
3749
+ }
3750
+ },
3751
+ {
3752
+ "kind": "field",
3753
+ "name": "request",
3754
+ "type": {
3755
+ "text": "any"
3756
+ }
3757
+ },
3758
+ {
3759
+ "kind": "field",
3760
+ "name": "resourceName",
3761
+ "type": {
3762
+ "text": "string"
3763
+ }
3764
+ },
3765
+ {
3766
+ "kind": "method",
3767
+ "name": "resourceNameChanged",
3768
+ "parameters": [
3769
+ {
3770
+ "name": "oldValue",
3771
+ "type": {
3772
+ "text": "string"
3773
+ }
3774
+ },
3775
+ {
3776
+ "name": "newValue",
3777
+ "type": {
3778
+ "text": "string"
3779
+ }
3780
+ }
3781
+ ]
3782
+ },
3783
+ {
3784
+ "kind": "field",
3785
+ "name": "reverse",
3786
+ "type": {
3787
+ "text": "boolean"
3788
+ },
3789
+ "default": "false"
3790
+ },
3791
+ {
3792
+ "kind": "field",
3793
+ "name": "rowIdAttr",
3794
+ "description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type."
3795
+ },
3796
+ {
3797
+ "kind": "field",
3798
+ "name": "restartOnReconnection",
3799
+ "type": {
3800
+ "text": "boolean"
3801
+ },
3802
+ "default": "true"
3803
+ },
3804
+ {
3805
+ "kind": "field",
3806
+ "name": "keepColDefsOnClearRowData",
3807
+ "type": {
3808
+ "text": "boolean"
3809
+ },
3810
+ "default": "false",
3811
+ "description": "Whether to keep column definitions when clearing row data"
3812
+ },
3813
+ {
3814
+ "kind": "field",
3815
+ "name": "rowDataMapper",
3816
+ "type": {
3817
+ "text": "Function"
3818
+ },
3819
+ "description": "Allows grid data updates to be processed via and external function before applying in grid"
3820
+ },
3821
+ {
3822
+ "kind": "field",
3823
+ "name": "dataSub",
3824
+ "type": {
3825
+ "text": "Subscription"
3826
+ },
3827
+ "privacy": "private"
3828
+ },
3829
+ {
3830
+ "kind": "field",
3433
3831
  "name": "updateSub",
3434
3832
  "type": {
3435
3833
  "text": "Subscription"
@@ -3993,777 +4391,355 @@
3993
4391
  "name": "max-rows",
3994
4392
  "type": {
3995
4393
  "text": "number"
3996
- },
3997
- "fieldName": "maxRows"
3998
- },
3999
- {
4000
- "name": "max-view",
4001
- "type": {
4002
- "text": "number"
4003
- },
4004
- "fieldName": "maxView"
4005
- },
4006
- {
4007
- "name": "polling-interval",
4008
- "type": {
4009
- "text": "number"
4010
- },
4011
- "fieldName": "pollingInterval"
4012
- },
4013
- {
4014
- "name": "moving-view",
4015
- "type": {
4016
- "text": "boolean"
4017
- },
4018
- "default": "false",
4019
- "fieldName": "movingView"
4020
- },
4021
- {
4022
- "name": "order-by",
4023
- "type": {
4024
- "text": "string"
4025
- },
4026
- "fieldName": "orderBy"
4027
- },
4028
- {
4029
- "name": "resource-name",
4030
- "type": {
4031
- "text": "string"
4032
- },
4033
- "fieldName": "resourceName"
4034
- },
4035
- {
4036
- "type": {
4037
- "text": "boolean"
4038
- },
4039
- "default": "false",
4040
- "fieldName": "reverse"
4041
- },
4042
- {
4043
- "name": "row-id",
4044
- "description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
4045
- "fieldName": "rowIdAttr"
4046
- },
4047
- {
4048
- "name": "restart-on-reconnection",
4049
- "type": {
4050
- "text": "boolean"
4051
- },
4052
- "default": "true",
4053
- "fieldName": "restartOnReconnection"
4054
- },
4055
- {
4056
- "name": "keep-col-defs-on-clear-row-data",
4057
- "type": {
4058
- "text": "boolean"
4059
- },
4060
- "default": "false",
4061
- "description": "Whether to keep column definitions when clearing row data",
4062
- "fieldName": "keepColDefsOnClearRowData"
4063
- }
4064
- ],
4065
- "mixins": [
4066
- {
4067
- "name": "LifecycleMixin",
4068
- "package": "@genesislcap/foundation-utils"
4069
- },
4070
- {
4071
- "name": "DatasourceEventHandler",
4072
- "package": "@genesislcap/foundation-comms"
4073
- }
4074
- ],
4075
- "superclass": {
4076
- "name": "FoundationElement",
4077
- "package": "@microsoft/fast-foundation"
4078
- },
4079
- "tagName": "grid-tabulator-client-side-datasource",
4080
- "customElement": true
4081
- }
4082
- ],
4083
- "exports": [
4084
- {
4085
- "kind": "js",
4086
- "name": "criteriaDelimiter",
4087
- "declaration": {
4088
- "name": "criteriaDelimiter",
4089
- "module": "src/datasource/client-side.datasource.ts"
4090
- }
4091
- },
4092
- {
4093
- "kind": "js",
4094
- "name": "criteriaJoin",
4095
- "declaration": {
4096
- "name": "criteriaJoin",
4097
- "module": "src/datasource/client-side.datasource.ts"
4098
- }
4099
- },
4100
- {
4101
- "kind": "js",
4102
- "name": "GridTabulatorClientSideDatasource",
4103
- "declaration": {
4104
- "name": "GridTabulatorClientSideDatasource",
4105
- "module": "src/datasource/client-side.datasource.ts"
4106
- }
4107
- },
4108
- {
4109
- "kind": "custom-element-definition",
4110
- "name": "grid-tabulator-client-side-datasource",
4111
- "declaration": {
4112
- "name": "GridTabulatorClientSideDatasource",
4113
- "module": "src/datasource/client-side.datasource.ts"
4114
- }
4115
- }
4116
- ]
4117
- },
4118
- {
4119
- "kind": "javascript-module",
4120
- "path": "src/datasource/index.ts",
4121
- "declarations": [],
4122
- "exports": [
4123
- {
4124
- "kind": "js",
4125
- "name": "*",
4126
- "declaration": {
4127
- "name": "*",
4128
- "package": "./client-side.datasource"
4129
- }
4130
- }
4131
- ]
4132
- },
4133
- {
4134
- "kind": "javascript-module",
4135
- "path": "src/external/fonts.ts",
4136
- "declarations": [
4137
- {
4138
- "kind": "variable",
4139
- "name": "tabulatorDefaultFontFace",
4140
- "default": "`\n @font-face {\n font-family: \"defaultFontFace\";\n }\n`"
4141
- },
4142
- {
4143
- "kind": "variable",
4144
- "name": "tabulatorRapidFontFace",
4145
- "default": "`\n @font-face {\n font-family: \"rapidFontFace\";\n }\n`"
4146
- },
4147
- {
4148
- "kind": "variable",
4149
- "name": "gridThemeFontFaceMap",
4150
- "type": {
4151
- "text": "GridThemeFontFaceMap"
4152
- },
4153
- "default": "{\n [GridTabulatorTheme.default]: tabulatorDefaultFontFace,\n [GridTabulatorTheme.rapid]: tabulatorRapidFontFace,\n}"
4154
- },
4155
- {
4156
- "kind": "variable",
4157
- "name": "defaultGridTabulatorFontFace",
4158
- "default": "tabulatorDefaultFontFace"
4159
- }
4160
- ],
4161
- "exports": [
4162
- {
4163
- "kind": "js",
4164
- "name": "tabulatorDefaultFontFace",
4165
- "declaration": {
4166
- "name": "tabulatorDefaultFontFace",
4167
- "module": "src/external/fonts.ts"
4168
- }
4169
- },
4170
- {
4171
- "kind": "js",
4172
- "name": "tabulatorRapidFontFace",
4173
- "declaration": {
4174
- "name": "tabulatorRapidFontFace",
4175
- "module": "src/external/fonts.ts"
4176
- }
4177
- },
4178
- {
4179
- "kind": "js",
4180
- "name": "gridThemeFontFaceMap",
4181
- "declaration": {
4182
- "name": "gridThemeFontFaceMap",
4183
- "module": "src/external/fonts.ts"
4184
- }
4185
- },
4186
- {
4187
- "kind": "js",
4188
- "name": "defaultGridTabulatorFontFace",
4189
- "declaration": {
4190
- "name": "defaultGridTabulatorFontFace",
4191
- "module": "src/external/fonts.ts"
4192
- }
4193
- }
4194
- ]
4195
- },
4196
- {
4197
- "kind": "javascript-module",
4198
- "path": "src/external/index.ts",
4199
- "declarations": [
4200
- {
4201
- "kind": "variable",
4202
- "name": "tabulatorExternalStockStyles",
4203
- "default": "css`\n ${tabulatorThemeSimpleCSS}\n`",
4204
- "description": "External styles for the Tabulator grid.",
4205
- "privacy": "public"
4206
- }
4207
- ],
4208
- "exports": [
4209
- {
4210
- "kind": "js",
4211
- "name": "tabulatorExternalStockStyles",
4212
- "declaration": {
4213
- "name": "tabulatorExternalStockStyles",
4214
- "module": "src/external/index.ts"
4215
- }
4216
- },
4217
- {
4218
- "kind": "js",
4219
- "name": "tabulatorThemeSimpleCSS",
4220
- "declaration": {
4221
- "name": "tabulatorThemeSimpleCSS",
4222
- "module": "src/external/index.ts"
4223
- }
4224
- }
4225
- ]
4226
- },
4227
- {
4228
- "kind": "javascript-module",
4229
- "path": "src/external/tabulator-theme-simple-css.ts",
4230
- "declarations": [
4231
- {
4232
- "kind": "variable",
4233
- "name": "tabulatorThemeSimpleCSS",
4234
- "default": "css`\n .tabulator {\n position: relative;\n border: 1px solid #999;\n background-color: #fff;\n font-size: 14px;\n text-align: left;\n overflow: hidden;\n -webkit-transform: translateZ(0);\n -moz-transform: translateZ(0);\n -ms-transform: translateZ(0);\n -o-transform: translateZ(0);\n transform: translateZ(0);\n }\n\n .tabulator[tabulator-layout='fitDataFill'] .tabulator-tableholder .tabulator-table {\n min-width: 100%;\n }\n\n .tabulator[tabulator-layout='fitDataTable'] {\n display: inline-block;\n }\n\n .tabulator.tabulator-block-select {\n user-select: none;\n }\n\n .tabulator .tabulator-header {\n position: relative;\n box-sizing: border-box;\n width: 100%;\n border-bottom: 1px solid #999;\n background-color: #fff;\n color: #555;\n font-weight: bold;\n white-space: nowrap;\n overflow: hidden;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n }\n\n .tabulator .tabulator-header.tabulator-header-hidden {\n display: none;\n }\n\n .tabulator .tabulator-header .tabulator-header-contents {\n position: relative;\n overflow: hidden;\n }\n\n .tabulator .tabulator-header .tabulator-header-contents .tabulator-headers {\n display: inline-block;\n }\n\n .tabulator .tabulator-header .tabulator-col {\n display: inline-flex;\n position: relative;\n box-sizing: border-box;\n flex-direction: column;\n justify-content: flex-start;\n border-right: 1px solid #ddd;\n background: #fff;\n text-align: left;\n vertical-align: bottom;\n overflow: hidden;\n }\n\n .tabulator .tabulator-header .tabulator-col.tabulator-moving {\n position: absolute;\n border: 1px solid #999;\n background: #e6e6e6;\n pointer-events: none;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content {\n box-sizing: border-box;\n position: relative;\n padding: 4px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-header-popup-button {\n padding: 0 8px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-header-popup-button:hover {\n cursor: pointer;\n opacity: 0.6;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title-holder {\n position: relative;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {\n box-sizing: border-box;\n width: 100%;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n vertical-align: bottom;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-title.tabulator-col-title-wrap {\n white-space: normal;\n text-overflow: initial;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-title\n .tabulator-title-editor {\n box-sizing: border-box;\n width: 100%;\n border: 1px solid #999;\n padding: 1px;\n background: #fff;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-title\n .tabulator-header-popup-button\n + .tabulator-title-editor {\n width: calc(100% - 22px);\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter {\n display: flex;\n align-items: center;\n position: absolute;\n top: 0;\n bottom: 0;\n right: 4px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n width: 0;\n height: 0;\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-bottom: 6px solid #bbb;\n }\n\n .tabulator .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {\n position: relative;\n display: flex;\n border-top: 1px solid #ddd;\n overflow: hidden;\n margin-right: -1px;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter {\n position: relative;\n box-sizing: border-box;\n margin-top: 2px;\n width: 100%;\n text-align: center;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter textarea {\n height: auto !important;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter svg {\n margin-top: 3px;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter input::-ms-clear {\n width: 0;\n height: 0;\n }\n\n .tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {\n padding-right: 25px;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable.tabulator-col-sorter-element:hover {\n cursor: pointer;\n background-color: #e6e6e6;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='none']\n .tabulator-col-content\n .tabulator-col-sorter {\n color: #bbb;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='none']\n .tabulator-col-content\n .tabulator-col-sorter.tabulator-col-sorter-element\n .tabulator-arrow:hover {\n cursor: pointer;\n border-bottom: 6px solid #555;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='none']\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n border-top: none;\n border-bottom: 6px solid #bbb;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='ascending']\n .tabulator-col-content\n .tabulator-col-sorter {\n color: #666;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='ascending']\n .tabulator-col-content\n .tabulator-col-sorter.tabulator-col-sorter-element\n .tabulator-arrow:hover {\n cursor: pointer;\n border-bottom: 6px solid #555;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='ascending']\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n border-top: none;\n border-bottom: 6px solid #666;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='descending']\n .tabulator-col-content\n .tabulator-col-sorter {\n color: #666;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='descending']\n .tabulator-col-content\n .tabulator-col-sorter.tabulator-col-sorter-element\n .tabulator-arrow:hover {\n cursor: pointer;\n border-top: 6px solid #555;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='descending']\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n border-bottom: none;\n border-top: 6px solid #666;\n color: #666;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical\n .tabulator-col-content\n .tabulator-col-title {\n writing-mode: vertical-rl;\n text-orientation: mixed;\n display: flex;\n align-items: center;\n justify-content: center;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-col-vertical-flip\n .tabulator-col-title {\n transform: rotate(180deg);\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-sortable\n .tabulator-col-title {\n padding-right: 0;\n padding-top: 20px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-sortable.tabulator-col-vertical-flip\n .tabulator-col-title {\n padding-right: 0;\n padding-bottom: 20px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-sortable\n .tabulator-col-sorter {\n justify-content: center;\n left: 0;\n right: 0;\n top: 4px;\n bottom: auto;\n }\n\n .tabulator .tabulator-header .tabulator-frozen {\n position: sticky;\n left: 0;\n z-index: 11;\n }\n\n .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-left {\n border-right: 2px solid #ddd;\n }\n\n .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-right {\n border-left: 2px solid #ddd;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder {\n box-sizing: border-box;\n background: white !important;\n border-top: 1px solid #ddd;\n border-bottom: 1px solid #ddd;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {\n background: white !important;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {\n display: none;\n }\n\n .tabulator .tabulator-header .tabulator-frozen-rows-holder:empty {\n display: none;\n }\n\n .tabulator .tabulator-tableholder {\n position: relative;\n width: 100%;\n white-space: nowrap;\n overflow: auto;\n -webkit-overflow-scrolling: touch;\n }\n\n .tabulator .tabulator-tableholder:focus {\n outline: none;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder {\n box-sizing: border-box;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 100%;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder[tabulator-render-mode='virtual'] {\n min-height: 100%;\n min-width: 100%;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder .tabulator-placeholder-contents {\n display: inline-block;\n text-align: center;\n padding: 10px;\n color: #ccc;\n font-weight: bold;\n font-size: 20px;\n white-space: normal;\n }\n\n .tabulator .tabulator-tableholder .tabulator-table {\n position: relative;\n display: inline-block;\n white-space: nowrap;\n overflow: visible;\n color: #333;\n }\n\n .tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs {\n font-weight: bold;\n background: #f2f2f2;\n }\n\n .tabulator\n .tabulator-tableholder\n .tabulator-table\n .tabulator-row.tabulator-calcs.tabulator-calcs-top {\n border-bottom: 2px solid #ddd;\n }\n\n .tabulator\n .tabulator-tableholder\n .tabulator-table\n .tabulator-row.tabulator-calcs.tabulator-calcs-bottom {\n border-top: 2px solid #ddd;\n }\n\n .tabulator .tabulator-footer {\n border-top: 1px solid #999;\n background-color: #fff;\n color: #555;\n font-weight: bold;\n white-space: nowrap;\n user-select: none;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n }\n\n .tabulator .tabulator-footer .tabulator-footer-contents {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n padding: 5px 10px;\n }\n\n .tabulator .tabulator-footer .tabulator-footer-contents:empty {\n display: none;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder {\n box-sizing: border-box;\n width: 100%;\n text-align: left;\n background: white !important;\n border-bottom: 1px solid #ddd;\n border-top: 1px solid #ddd;\n overflow: hidden;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {\n display: inline-block;\n background: white !important;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {\n display: none;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder:only-child {\n margin-bottom: -5px;\n border-bottom: none;\n }\n\n .tabulator .tabulator-footer > * + .tabulator-page-counter {\n margin-left: 10px;\n }\n\n .tabulator .tabulator-footer .tabulator-page-counter {\n font-weight: normal;\n }\n\n .tabulator .tabulator-footer .tabulator-paginator {\n flex: 1;\n text-align: right;\n color: #555;\n font-family: inherit;\n font-weight: inherit;\n font-size: inherit;\n }\n\n .tabulator .tabulator-footer .tabulator-page-size {\n display: inline-block;\n margin: 0 5px;\n padding: 2px 5px;\n border: 1px solid #aaa;\n border-radius: 3px;\n }\n\n .tabulator .tabulator-footer .tabulator-pages {\n margin: 0 7px;\n }\n\n .tabulator .tabulator-footer .tabulator-page {\n display: inline-block;\n margin: 0 2px;\n padding: 2px 5px;\n border: 1px solid #aaa;\n border-radius: 3px;\n background: rgba(255, 255, 255, 0.2);\n }\n\n .tabulator .tabulator-footer .tabulator-page.active {\n color: #d00;\n }\n\n .tabulator .tabulator-footer .tabulator-page:disabled {\n opacity: 0.5;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator .tabulator-footer .tabulator-page:not(.disabled):hover {\n cursor: pointer;\n background: rgba(0, 0, 0, 0.2);\n color: #fff;\n }\n }\n\n .tabulator .tabulator-col-resize-handle {\n position: relative;\n display: inline-block;\n width: 6px;\n margin-left: -3px;\n margin-right: -3px;\n z-index: 10;\n vertical-align: middle;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator .tabulator-col-resize-handle:hover {\n cursor: ew-resize;\n }\n }\n\n .tabulator .tabulator-col-resize-handle:last-of-type {\n width: 3px;\n margin-right: 0;\n }\n\n .tabulator .tabulator-alert {\n position: absolute;\n display: flex;\n align-items: center;\n top: 0;\n left: 0;\n z-index: 100;\n height: 100%;\n width: 100%;\n background: rgba(0, 0, 0, 0.4);\n text-align: center;\n }\n\n .tabulator .tabulator-alert .tabulator-alert-msg {\n display: inline-block;\n margin: 0 auto;\n padding: 10px 20px;\n border-radius: 10px;\n background: #fff;\n font-weight: bold;\n font-size: 16px;\n }\n\n .tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-msg {\n border: 4px solid #333;\n color: #000;\n }\n\n .tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-error {\n border: 4px solid #d00;\n color: #590000;\n }\n\n .tabulator-row {\n position: relative;\n box-sizing: border-box;\n min-height: 22px;\n background-color: #fff;\n }\n\n .tabulator-row.tabulator-row-even {\n background-color: #fff;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row.tabulator-selectable:hover {\n background-color: #bbb;\n cursor: pointer;\n }\n }\n\n .tabulator-row.tabulator-selected {\n background-color: #9abcea;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row.tabulator-selected:hover {\n background-color: #769bcc;\n cursor: pointer;\n }\n }\n\n .tabulator-row.tabulator-row-moving {\n border: 1px solid #000;\n background: #fff;\n }\n\n .tabulator-row.tabulator-moving {\n position: absolute;\n border-top: 1px solid #ddd;\n border-bottom: 1px solid #ddd;\n pointer-events: none;\n z-index: 15;\n }\n\n .tabulator-row .tabulator-row-resize-handle {\n position: absolute;\n right: 0;\n bottom: 0;\n left: 0;\n height: 5px;\n }\n\n .tabulator-row .tabulator-row-resize-handle.prev {\n top: 0;\n bottom: auto;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row .tabulator-row-resize-handle:hover {\n cursor: ns-resize;\n }\n }\n\n .tabulator-row .tabulator-responsive-collapse {\n box-sizing: border-box;\n padding: 5px;\n border-top: 1px solid #ddd;\n border-bottom: 1px solid #ddd;\n }\n\n .tabulator-row .tabulator-responsive-collapse:empty {\n display: none;\n }\n\n .tabulator-row .tabulator-responsive-collapse table {\n font-size: 14px;\n }\n\n .tabulator-row .tabulator-responsive-collapse table tr td {\n position: relative;\n }\n\n .tabulator-row .tabulator-responsive-collapse table tr td:first-of-type {\n padding-right: 10px;\n }\n\n .tabulator-row .tabulator-cell {\n display: inline-flex;\n position: unset;\n box-sizing: border-box;\n padding: 4px 8px;\n border-right: 1px solid #ddd;\n vertical-align: middle;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n\n .tabulator-row .tabulator-cell.tabulator-frozen {\n display: inline-flex;\n position: sticky;\n left: 0;\n background-color: inherit;\n z-index: 11;\n }\n\n .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {\n border-right: 2px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {\n border-left: 2px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell.tabulator-editing {\n border: 1px solid #1d68cd;\n outline: none;\n padding: 0;\n }\n\n .tabulator-row .tabulator-cell.tabulator-editing input,\n .tabulator-row .tabulator-cell.tabulator-editing select {\n border: 1px;\n background: transparent;\n outline: none;\n }\n\n .tabulator-row .tabulator-cell.tabulator-validation-fail {\n border: 1px solid #dd0000;\n }\n\n .tabulator-row .tabulator-cell.tabulator-validation-fail input,\n .tabulator-row .tabulator-cell.tabulator-validation-fail select {\n border: 1px;\n background: transparent;\n color: #dd0000;\n }\n\n .tabulator-row .tabulator-cell.tabulator-row-handle {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n }\n\n .tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box {\n width: 80%;\n }\n\n .tabulator-row\n .tabulator-cell.tabulator-row-handle\n .tabulator-row-handle-box\n .tabulator-row-handle-bar {\n width: 100%;\n height: 3px;\n margin-top: 2px;\n background: #666;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-branch-empty {\n display: inline-block;\n width: 7px;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-branch {\n display: inline-block;\n vertical-align: middle;\n height: 9px;\n width: 7px;\n margin-top: -9px;\n margin-right: 5px;\n border-bottom-left-radius: 1px;\n border-left: 2px solid #ddd;\n border-bottom: 2px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-control {\n display: inline-flex;\n justify-content: center;\n align-items: center;\n vertical-align: middle;\n height: 11px;\n width: 11px;\n margin-right: 5px;\n border: 1px solid #333;\n border-radius: 2px;\n background: rgba(0, 0, 0, 0.1);\n overflow: hidden;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row .tabulator-cell .tabulator-data-tree-control:hover {\n cursor: pointer;\n background: rgba(0, 0, 0, 0.2);\n }\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-data-tree-control\n .tabulator-data-tree-control-collapse {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: transparent;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-data-tree-control\n .tabulator-data-tree-control-collapse:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: #333;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-data-tree-control\n .tabulator-data-tree-control-expand:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n height: 15px;\n width: 15px;\n border-radius: 20px;\n background: #666;\n color: #fff;\n font-weight: bold;\n font-size: 1.1em;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle:hover {\n opacity: 0.7;\n cursor: pointer;\n }\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-responsive-collapse-toggle.open\n .tabulator-responsive-collapse-toggle-close {\n display: initial;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-responsive-collapse-toggle.open\n .tabulator-responsive-collapse-toggle-open {\n display: none;\n }\n\n .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle svg {\n stroke: #fff;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-responsive-collapse-toggle\n .tabulator-responsive-collapse-toggle-close {\n display: none;\n }\n\n .tabulator-row .tabulator-cell .tabulator-traffic-light {\n display: inline-block;\n height: 14px;\n width: 14px;\n border-radius: 14px;\n }\n\n .tabulator-row.tabulator-group {\n box-sizing: border-box;\n border-bottom: 1px solid #999;\n border-right: 1px solid #ddd;\n border-top: 1px solid #999;\n padding: 5px;\n padding-left: 10px;\n background: #ccc;\n font-weight: bold;\n min-width: 100%;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row.tabulator-group:hover {\n cursor: pointer;\n background-color: rgba(0, 0, 0, 0.1);\n }\n }\n\n .tabulator-row.tabulator-group.tabulator-group-visible .tabulator-arrow {\n margin-right: 10px;\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-top: 6px solid #666;\n border-bottom: 0;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-1 {\n padding-left: 30px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-2 {\n padding-left: 50px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-3 {\n padding-left: 70px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-4 {\n padding-left: 90px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-5 {\n padding-left: 110px;\n }\n\n .tabulator-row.tabulator-group .tabulator-group-toggle {\n display: inline-block;\n }\n\n .tabulator-row.tabulator-group .tabulator-arrow {\n display: inline-block;\n width: 0;\n height: 0;\n margin-right: 16px;\n border-top: 6px solid transparent;\n border-bottom: 6px solid transparent;\n border-right: 0;\n border-left: 6px solid #666;\n vertical-align: middle;\n }\n\n .tabulator-row.tabulator-group span {\n margin-left: 10px;\n color: #d00;\n }\n\n .tabulator-popup-container {\n position: absolute;\n display: inline-block;\n box-sizing: border-box;\n background: #fff;\n border: 1px solid #ddd;\n box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);\n font-size: 14px;\n overflow-y: auto;\n -webkit-overflow-scrolling: touch;\n z-index: 10000;\n }\n\n .tabulator-popup {\n padding: 5px;\n border-radius: 3px;\n }\n\n .tabulator-tooltip {\n max-width: Min(500px, 100%);\n padding: 3px 5px;\n border-radius: 2px;\n box-shadow: none;\n font-size: 12px;\n pointer-events: none;\n }\n\n .tabulator-menu .tabulator-menu-item {\n position: relative;\n box-sizing: border-box;\n padding: 5px 10px;\n user-select: none;\n }\n\n .tabulator-menu .tabulator-menu-item.tabulator-menu-item-disabled {\n opacity: 0.5;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-menu .tabulator-menu-item:not(.tabulator-menu-item-disabled):hover {\n cursor: pointer;\n background: #fff;\n }\n }\n\n .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu {\n padding-right: 25px;\n }\n\n .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu::after {\n display: inline-block;\n position: absolute;\n top: calc(5px + 0.4em);\n right: 10px;\n height: 7px;\n width: 7px;\n content: '';\n border-width: 1px 1px 0 0;\n border-style: solid;\n border-color: #ddd;\n vertical-align: top;\n transform: rotate(45deg);\n }\n\n .tabulator-menu .tabulator-menu-separator {\n border-top: 1px solid #ddd;\n }\n\n .tabulator-edit-list {\n max-height: 200px;\n font-size: 14px;\n overflow-y: auto;\n -webkit-overflow-scrolling: touch;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item {\n padding: 4px;\n color: #333;\n outline: none;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.active {\n color: #fff;\n background: #1d68cd;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.active.focused {\n outline: 1px solid rgba(255, 255, 255, 0.5);\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.focused {\n outline: 1px solid #1d68cd;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-edit-list .tabulator-edit-list-item:hover {\n cursor: pointer;\n color: #fff;\n background: #1d68cd;\n }\n }\n\n .tabulator-edit-list .tabulator-edit-list-placeholder {\n padding: 4px;\n color: #333;\n text-align: center;\n }\n\n .tabulator-edit-list .tabulator-edit-list-group {\n border-bottom: 1px solid #ddd;\n padding: 4px;\n padding-top: 6px;\n color: #333;\n font-weight: bold;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-2,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-2 {\n padding-left: 12px;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-3,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-3 {\n padding-left: 20px;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-4,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-4 {\n padding-left: 28px;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-5,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-5 {\n padding-left: 36px;\n }\n\n .tabulator.tabulator-ltr {\n direction: ltr;\n }\n\n .tabulator.tabulator-rtl {\n text-align: initial;\n direction: rtl;\n }\n\n .tabulator.tabulator-rtl .tabulator-header .tabulator-col {\n text-align: initial;\n border-left: 1px solid #ddd;\n border-right: initial;\n }\n\n .tabulator.tabulator-rtl\n .tabulator-header\n .tabulator-col.tabulator-col-group\n .tabulator-col-group-cols {\n margin-right: initial;\n margin-left: -1px;\n }\n\n .tabulator.tabulator-rtl\n .tabulator-header\n .tabulator-col.tabulator-sortable\n .tabulator-col-title {\n padding-right: 0;\n padding-left: 25px;\n }\n\n .tabulator.tabulator-rtl\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-sorter {\n left: 8px;\n right: initial;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell {\n border-right: initial;\n border-left: 1px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-branch {\n margin-right: initial;\n margin-left: 5px;\n border-bottom-left-radius: initial;\n border-bottom-right-radius: 1px;\n border-left: initial;\n border-right: 2px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-control {\n margin-right: initial;\n margin-left: 5px;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {\n border-left: 2px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {\n border-right: 2px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-col-resize-handle:last-of-type {\n width: 3px;\n margin-left: 0;\n margin-right: -3px;\n }\n\n .tabulator.tabulator-rtl .tabulator-footer .tabulator-calcs-holder {\n text-align: initial;\n }\n\n .tabulator-print-fullscreen {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 10000;\n }\n\n body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {\n display: none !important;\n }\n\n .tabulator-print-table {\n border-collapse: collapse;\n }\n\n .tabulator-print-table .tabulator-data-tree-branch {\n display: inline-block;\n vertical-align: middle;\n height: 9px;\n width: 7px;\n margin-top: -9px;\n margin-right: 5px;\n border-bottom-left-radius: 1px;\n border-left: 2px solid #ddd;\n border-bottom: 2px solid #ddd;\n }\n\n .tabulator-print-table .tabulator-print-table-group {\n box-sizing: border-box;\n border-bottom: 1px solid #999;\n border-right: 1px solid #ddd;\n border-top: 1px solid #999;\n padding: 5px;\n padding-left: 10px;\n background: #ccc;\n font-weight: bold;\n min-width: 100%;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-print-table .tabulator-print-table-group:hover {\n cursor: pointer;\n background-color: rgba(0, 0, 0, 0.1);\n }\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-visible .tabulator-arrow {\n margin-right: 10px;\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-top: 6px solid #666;\n border-bottom: 0;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-1 td {\n padding-left: 30px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-2 td {\n padding-left: 50px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-3 td {\n padding-left: 70px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-4 td {\n padding-left: 90px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-5 td {\n padding-left: 110px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group .tabulator-group-toggle {\n display: inline-block;\n }\n\n .tabulator-print-table .tabulator-print-table-group .tabulator-arrow {\n display: inline-block;\n width: 0;\n height: 0;\n margin-right: 16px;\n border-top: 6px solid transparent;\n border-bottom: 6px solid transparent;\n border-right: 0;\n border-left: 6px solid #666;\n vertical-align: middle;\n }\n\n .tabulator-print-table .tabulator-print-table-group span {\n margin-left: 10px;\n color: #d00;\n }\n\n .tabulator-print-table .tabulator-data-tree-control {\n display: inline-flex;\n justify-content: center;\n align-items: center;\n vertical-align: middle;\n height: 11px;\n width: 11px;\n margin-right: 5px;\n border: 1px solid #333;\n border-radius: 2px;\n background: rgba(0, 0, 0, 0.1);\n overflow: hidden;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-print-table .tabulator-data-tree-control:hover {\n cursor: pointer;\n background: rgba(0, 0, 0, 0.2);\n }\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: transparent;\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: #333;\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator {\n border: none;\n background-color: #fff;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder {\n background: #f2f2f2 !important;\n border-bottom: 1px solid #999;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {\n background: #f2f2f2 !important;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder span {\n color: #000;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder {\n background: #f2f2f2 !important;\n border-bottom: 1px solid #fff;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {\n background: #f2f2f2 !important;\n }\n\n .tabulator-row {\n border-bottom: 1px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell:last-of-type {\n border-right: none;\n }\n\n .tabulator-row.tabulator-group span {\n color: #666;\n }\n\n .tabulator-print-table .tabulator-print-table-group span {\n margin-left: 10px;\n color: #666;\n }\n\n /*# sourceMappingURL=tabulator_simple.css.map */\n`",
4235
- "description": "External styles for the Tabulator grid.",
4236
- "privacy": "public"
4237
- }
4238
- ],
4239
- "exports": [
4240
- {
4241
- "kind": "js",
4242
- "name": "tabulatorThemeSimpleCSS",
4243
- "declaration": {
4244
- "name": "tabulatorThemeSimpleCSS",
4245
- "module": "src/external/tabulator-theme-simple-css.ts"
4246
- }
4247
- }
4248
- ]
4249
- },
4250
- {
4251
- "kind": "javascript-module",
4252
- "path": "src/style/colors.ts",
4253
- "declarations": [],
4254
- "exports": []
4255
- },
4256
- {
4257
- "kind": "javascript-module",
4258
- "path": "src/style/index.ts",
4259
- "declarations": [],
4260
- "exports": [
4261
- {
4262
- "kind": "js",
4263
- "name": "*",
4264
- "declaration": {
4265
- "name": "*",
4266
- "package": "./colors"
4267
- }
4268
- },
4269
- {
4270
- "kind": "js",
4271
- "name": "*",
4272
- "declaration": {
4273
- "name": "*",
4274
- "package": "./tokens"
4275
- }
4276
- }
4277
- ]
4278
- },
4279
- {
4280
- "kind": "javascript-module",
4281
- "path": "src/style/tokens.ts",
4282
- "declarations": [],
4283
- "exports": []
4284
- },
4285
- {
4286
- "kind": "javascript-module",
4287
- "path": "src/utils/index.ts",
4288
- "declarations": [],
4289
- "exports": [
4290
- {
4291
- "kind": "js",
4292
- "name": "*",
4293
- "declaration": {
4294
- "name": "*",
4295
- "package": "./logger"
4296
- }
4297
- },
4298
- {
4299
- "kind": "js",
4300
- "name": "*",
4301
- "declaration": {
4302
- "name": "*",
4303
- "package": "./string-utils"
4304
- }
4305
- },
4306
- {
4307
- "kind": "js",
4308
- "name": "*",
4309
- "declaration": {
4310
- "name": "*",
4311
- "package": "./test-id-utils"
4312
- }
4313
- }
4314
- ]
4315
- },
4316
- {
4317
- "kind": "javascript-module",
4318
- "path": "src/utils/logger.ts",
4319
- "declarations": [
4320
- {
4321
- "kind": "variable",
4322
- "name": "logger",
4323
- "description": "Logger for the `grid-tabulator` package",
4324
- "privacy": "public"
4325
- }
4326
- ],
4327
- "exports": [
4328
- {
4329
- "kind": "js",
4330
- "name": "logger",
4331
- "declaration": {
4332
- "name": "logger",
4333
- "module": "src/utils/logger.ts"
4334
- }
4335
- }
4336
- ]
4337
- },
4338
- {
4339
- "kind": "javascript-module",
4340
- "path": "src/utils/string-utils.ts",
4341
- "declarations": [
4342
- {
4343
- "kind": "function",
4344
- "name": "convertToKebabCase",
4345
- "return": {
4346
- "type": {
4347
- "text": ""
4348
- }
4349
- },
4350
- "parameters": [
4351
- {
4352
- "name": "str",
4353
- "type": {
4354
- "text": "string"
4355
- },
4356
- "description": "The string to convert"
4357
- }
4358
- ],
4359
- "description": "Convert a string to kebab case\nExample: convertToKebabCase('helloWorld') // 'hello-world'"
4360
- },
4361
- {
4362
- "kind": "function",
4363
- "name": "mergeAndDedupColDefWithColumnState",
4364
- "return": {
4365
- "type": {
4366
- "text": ""
4367
- }
4368
- },
4369
- "parameters": [
4370
- {
4371
- "name": "colDefs",
4372
- "type": {
4373
- "text": "any[]"
4374
- },
4375
- "description": "The column definitions"
4376
- },
4377
- {
4378
- "name": "columnState",
4379
- "type": {
4380
- "text": "any[]"
4381
- },
4382
- "description": "The column state"
4383
- }
4384
- ],
4385
- "description": "Merges and dedupes column definitions with column state"
4386
- }
4387
- ],
4388
- "exports": [
4389
- {
4390
- "kind": "js",
4391
- "name": "convertToKebabCase",
4392
- "declaration": {
4393
- "name": "convertToKebabCase",
4394
- "module": "src/utils/string-utils.ts"
4395
- }
4396
- },
4397
- {
4398
- "kind": "js",
4399
- "name": "mergeAndDedupColDefWithColumnState",
4400
- "declaration": {
4401
- "name": "mergeAndDedupColDefWithColumnState",
4402
- "module": "src/utils/string-utils.ts"
4403
- }
4404
- }
4405
- ]
4406
- },
4407
- {
4408
- "kind": "javascript-module",
4409
- "path": "src/utils/test-id-utils.ts",
4410
- "declarations": [
4411
- {
4412
- "kind": "function",
4413
- "name": "getDataTestId",
4414
- "return": {
4415
- "type": {
4416
- "text": ""
4417
- }
4418
- },
4419
- "parameters": [
4394
+ },
4395
+ "fieldName": "maxRows"
4396
+ },
4420
4397
  {
4421
- "name": "dataTestId",
4398
+ "name": "max-view",
4422
4399
  "type": {
4423
- "text": "((rowData: T) => string) | string | undefined"
4400
+ "text": "number"
4424
4401
  },
4425
- "description": "The dataTestId value (string or function)"
4402
+ "fieldName": "maxView"
4426
4403
  },
4427
4404
  {
4428
- "name": "rowData",
4405
+ "name": "polling-interval",
4429
4406
  "type": {
4430
- "text": "T"
4407
+ "text": "number"
4431
4408
  },
4432
- "description": "The row data to pass to the function if dataTestId is a function"
4433
- }
4434
- ],
4435
- "description": "Resolves a dataTestId value that can be either a string or a function"
4436
- }
4437
- ],
4438
- "exports": [
4439
- {
4440
- "kind": "js",
4441
- "name": "getDataTestId",
4442
- "declaration": {
4443
- "name": "getDataTestId",
4444
- "module": "src/utils/test-id-utils.ts"
4445
- }
4446
- }
4447
- ]
4448
- },
4449
- {
4450
- "kind": "javascript-module",
4451
- "path": "src/cell-formatters/action.formatter.ts",
4452
- "declarations": [
4453
- {
4454
- "kind": "function",
4455
- "name": "actionFormatter",
4456
- "return": {
4457
- "type": {
4458
- "text": ""
4459
- }
4460
- },
4461
- "parameters": [
4409
+ "fieldName": "pollingInterval"
4410
+ },
4462
4411
  {
4463
- "name": "cell",
4412
+ "name": "moving-view",
4464
4413
  "type": {
4465
- "text": "any"
4414
+ "text": "boolean"
4466
4415
  },
4467
- "description": "The cell component provided by Tabulator"
4416
+ "default": "false",
4417
+ "fieldName": "movingView"
4468
4418
  },
4469
4419
  {
4470
- "name": "formatterParams",
4471
- "default": "{}",
4420
+ "name": "order-by",
4472
4421
  "type": {
4473
- "text": "ActionFormatterParams<T>"
4422
+ "text": "string"
4474
4423
  },
4475
- "description": "Action formatter parameters"
4476
- }
4477
- ],
4478
- "description": "Formatter that displays an action button in the cell.\nStyled to match grid-pro action renderer.",
4479
- "privacy": "public"
4480
- }
4481
- ],
4482
- "exports": [
4483
- {
4484
- "kind": "js",
4485
- "name": "actionFormatter",
4486
- "declaration": {
4487
- "name": "actionFormatter",
4488
- "module": "src/cell-formatters/action.formatter.ts"
4489
- }
4490
- }
4491
- ]
4492
- },
4493
- {
4494
- "kind": "javascript-module",
4495
- "path": "src/cell-formatters/actions-menu.formatter.ts",
4496
- "declarations": [
4497
- {
4498
- "kind": "function",
4499
- "name": "actionsMenuFormatter",
4500
- "return": {
4501
- "type": {
4502
- "text": ""
4503
- }
4504
- },
4505
- "parameters": [
4424
+ "fieldName": "orderBy"
4425
+ },
4506
4426
  {
4507
- "name": "cell",
4427
+ "name": "resource-name",
4508
4428
  "type": {
4509
- "text": "any"
4429
+ "text": "string"
4510
4430
  },
4511
- "description": "The cell component provided by Tabulator"
4431
+ "fieldName": "resourceName"
4512
4432
  },
4513
4433
  {
4514
- "name": "formatterParams",
4515
- "default": "{}",
4516
4434
  "type": {
4517
- "text": "ActionsMenuFormatterParams<T>"
4435
+ "text": "boolean"
4518
4436
  },
4519
- "description": "Actions menu formatter parameters"
4520
- }
4521
- ],
4522
- "description": "Formatter that displays a dropdown menu of actions in the cell.\nStyled to match grid-pro actions-menu renderer.",
4523
- "privacy": "public"
4524
- }
4525
- ],
4526
- "exports": [
4527
- {
4528
- "kind": "js",
4529
- "name": "actionsMenuFormatter",
4530
- "declaration": {
4531
- "name": "actionsMenuFormatter",
4532
- "module": "src/cell-formatters/actions-menu.formatter.ts"
4533
- }
4534
- }
4535
- ]
4536
- },
4537
- {
4538
- "kind": "javascript-module",
4539
- "path": "src/cell-formatters/boolean.formatter.ts",
4540
- "declarations": [
4541
- {
4542
- "kind": "function",
4543
- "name": "booleanFormatter",
4544
- "return": {
4545
- "type": {
4546
- "text": ""
4547
- }
4548
- },
4549
- "parameters": [
4437
+ "default": "false",
4438
+ "fieldName": "reverse"
4439
+ },
4550
4440
  {
4551
- "name": "cell",
4441
+ "name": "row-id",
4442
+ "description": "Attribute to set an unique identifier for the row.\n\nDefaults to `ROW_REF` or `RECORD_ID` depending on the resource type.",
4443
+ "fieldName": "rowIdAttr"
4444
+ },
4445
+ {
4446
+ "name": "restart-on-reconnection",
4552
4447
  "type": {
4553
- "text": "any"
4448
+ "text": "boolean"
4554
4449
  },
4555
- "description": "The cell component provided by Tabulator"
4450
+ "default": "true",
4451
+ "fieldName": "restartOnReconnection"
4556
4452
  },
4557
4453
  {
4558
- "name": "formatterParams",
4559
- "default": "{}",
4454
+ "name": "keep-col-defs-on-clear-row-data",
4560
4455
  "type": {
4561
- "text": "BooleanFormatterParams<T>"
4456
+ "text": "boolean"
4562
4457
  },
4563
- "description": "Boolean formatter parameters"
4458
+ "default": "false",
4459
+ "description": "Whether to keep column definitions when clearing row data",
4460
+ "fieldName": "keepColDefsOnClearRowData"
4564
4461
  }
4565
4462
  ],
4566
- "description": "Formatter that displays boolean values using a checkbox component.\nStyled to match grid-pro boolean renderer.",
4567
- "privacy": "public"
4463
+ "mixins": [
4464
+ {
4465
+ "name": "LifecycleMixin",
4466
+ "package": "@genesislcap/foundation-utils"
4467
+ },
4468
+ {
4469
+ "name": "DatasourceEventHandler",
4470
+ "package": "@genesislcap/foundation-comms"
4471
+ }
4472
+ ],
4473
+ "superclass": {
4474
+ "name": "FoundationElement",
4475
+ "package": "@microsoft/fast-foundation"
4476
+ },
4477
+ "tagName": "grid-tabulator-client-side-datasource",
4478
+ "customElement": true
4568
4479
  }
4569
4480
  ],
4570
4481
  "exports": [
4571
4482
  {
4572
4483
  "kind": "js",
4573
- "name": "booleanFormatter",
4484
+ "name": "criteriaDelimiter",
4574
4485
  "declaration": {
4575
- "name": "booleanFormatter",
4576
- "module": "src/cell-formatters/boolean.formatter.ts"
4486
+ "name": "criteriaDelimiter",
4487
+ "module": "src/datasource/client-side.datasource.ts"
4488
+ }
4489
+ },
4490
+ {
4491
+ "kind": "js",
4492
+ "name": "criteriaJoin",
4493
+ "declaration": {
4494
+ "name": "criteriaJoin",
4495
+ "module": "src/datasource/client-side.datasource.ts"
4496
+ }
4497
+ },
4498
+ {
4499
+ "kind": "js",
4500
+ "name": "GridTabulatorClientSideDatasource",
4501
+ "declaration": {
4502
+ "name": "GridTabulatorClientSideDatasource",
4503
+ "module": "src/datasource/client-side.datasource.ts"
4504
+ }
4505
+ },
4506
+ {
4507
+ "kind": "custom-element-definition",
4508
+ "name": "grid-tabulator-client-side-datasource",
4509
+ "declaration": {
4510
+ "name": "GridTabulatorClientSideDatasource",
4511
+ "module": "src/datasource/client-side.datasource.ts"
4577
4512
  }
4578
4513
  }
4579
4514
  ]
4580
4515
  },
4581
4516
  {
4582
4517
  "kind": "javascript-module",
4583
- "path": "src/cell-formatters/constants.ts",
4518
+ "path": "src/datasource/index.ts",
4584
4519
  "declarations": [],
4585
- "exports": []
4586
- },
4587
- {
4588
- "kind": "javascript-module",
4589
- "path": "src/cell-formatters/editable.formatter.ts",
4590
- "declarations": [
4591
- {
4592
- "kind": "function",
4593
- "name": "editableFormatter",
4594
- "return": {
4595
- "type": {
4596
- "text": ""
4597
- }
4598
- },
4599
- "parameters": [
4600
- {
4601
- "name": "cell",
4602
- "type": {
4603
- "text": "any"
4604
- },
4605
- "description": "The cell component provided by Tabulator"
4606
- },
4607
- {
4608
- "name": "formatterParams",
4609
- "default": "{}",
4610
- "type": {
4611
- "text": "EditableFormatterParams<T>"
4612
- },
4613
- "description": "Editable formatter parameters"
4614
- }
4615
- ],
4616
- "description": "Formatter that displays an editable cell with validation state",
4617
- "privacy": "public"
4618
- }
4619
- ],
4620
4520
  "exports": [
4621
4521
  {
4622
4522
  "kind": "js",
4623
- "name": "editableFormatter",
4523
+ "name": "*",
4624
4524
  "declaration": {
4625
- "name": "editableFormatter",
4626
- "module": "src/cell-formatters/editable.formatter.ts"
4525
+ "name": "*",
4526
+ "package": "./client-side.datasource"
4627
4527
  }
4628
4528
  }
4629
4529
  ]
4630
4530
  },
4631
4531
  {
4632
4532
  "kind": "javascript-module",
4633
- "path": "src/cell-formatters/index.ts",
4533
+ "path": "src/external/fonts.ts",
4634
4534
  "declarations": [
4635
4535
  {
4636
4536
  "kind": "variable",
4637
- "name": "formatters",
4537
+ "name": "tabulatorDefaultFontFace",
4538
+ "default": "`\n @font-face {\n font-family: \"defaultFontFace\";\n }\n`"
4539
+ },
4540
+ {
4541
+ "kind": "variable",
4542
+ "name": "tabulatorRapidFontFace",
4543
+ "default": "`\n @font-face {\n font-family: \"rapidFontFace\";\n }\n`"
4544
+ },
4545
+ {
4546
+ "kind": "variable",
4547
+ "name": "gridThemeFontFaceMap",
4638
4548
  "type": {
4639
- "text": "object"
4549
+ "text": "GridThemeFontFaceMap"
4640
4550
  },
4641
- "default": "{\n action: actionFormatter,\n actionsMenu: actionsMenuFormatter,\n boolean: booleanFormatter,\n editable: editableFormatter,\n select: selectFormatter,\n text: textFormatter,\n}",
4642
- "description": "Zero formatters for Tabulator grid"
4551
+ "default": "{\n [GridTabulatorTheme.default]: tabulatorDefaultFontFace,\n [GridTabulatorTheme.rapid]: tabulatorRapidFontFace,\n}"
4552
+ },
4553
+ {
4554
+ "kind": "variable",
4555
+ "name": "defaultGridTabulatorFontFace",
4556
+ "default": "tabulatorDefaultFontFace"
4643
4557
  }
4644
4558
  ],
4645
4559
  "exports": [
4646
4560
  {
4647
4561
  "kind": "js",
4648
- "name": "*",
4562
+ "name": "tabulatorDefaultFontFace",
4649
4563
  "declaration": {
4650
- "name": "*",
4651
- "package": "./constants"
4564
+ "name": "tabulatorDefaultFontFace",
4565
+ "module": "src/external/fonts.ts"
4652
4566
  }
4653
4567
  },
4654
4568
  {
4655
4569
  "kind": "js",
4656
- "name": "ActionFormatterParams",
4570
+ "name": "tabulatorRapidFontFace",
4657
4571
  "declaration": {
4658
- "name": "ActionFormatterParams",
4659
- "module": "src/cell-formatters/index.ts"
4572
+ "name": "tabulatorRapidFontFace",
4573
+ "module": "src/external/fonts.ts"
4660
4574
  }
4661
4575
  },
4662
4576
  {
4663
4577
  "kind": "js",
4664
- "name": "actionFormatter",
4578
+ "name": "gridThemeFontFaceMap",
4665
4579
  "declaration": {
4666
- "name": "actionFormatter",
4667
- "module": "src/cell-formatters/index.ts"
4580
+ "name": "gridThemeFontFaceMap",
4581
+ "module": "src/external/fonts.ts"
4668
4582
  }
4669
4583
  },
4670
4584
  {
4671
4585
  "kind": "js",
4672
- "name": "ActionsMenuFormatterParams",
4586
+ "name": "defaultGridTabulatorFontFace",
4673
4587
  "declaration": {
4674
- "name": "ActionsMenuFormatterParams",
4675
- "module": "src/cell-formatters/index.ts"
4588
+ "name": "defaultGridTabulatorFontFace",
4589
+ "module": "src/external/fonts.ts"
4676
4590
  }
4677
- },
4591
+ }
4592
+ ]
4593
+ },
4594
+ {
4595
+ "kind": "javascript-module",
4596
+ "path": "src/external/index.ts",
4597
+ "declarations": [
4678
4598
  {
4679
- "kind": "js",
4680
- "name": "actionsMenuFormatter",
4681
- "declaration": {
4682
- "name": "actionsMenuFormatter",
4683
- "module": "src/cell-formatters/index.ts"
4684
- }
4685
- },
4599
+ "kind": "variable",
4600
+ "name": "tabulatorExternalStockStyles",
4601
+ "default": "css`\n ${tabulatorThemeSimpleCSS}\n`",
4602
+ "description": "External styles for the Tabulator grid.",
4603
+ "privacy": "public"
4604
+ }
4605
+ ],
4606
+ "exports": [
4686
4607
  {
4687
4608
  "kind": "js",
4688
- "name": "BooleanFormatterParams",
4609
+ "name": "tabulatorExternalStockStyles",
4689
4610
  "declaration": {
4690
- "name": "BooleanFormatterParams",
4691
- "module": "src/cell-formatters/index.ts"
4611
+ "name": "tabulatorExternalStockStyles",
4612
+ "module": "src/external/index.ts"
4692
4613
  }
4693
4614
  },
4694
4615
  {
4695
4616
  "kind": "js",
4696
- "name": "booleanFormatter",
4617
+ "name": "tabulatorThemeSimpleCSS",
4697
4618
  "declaration": {
4698
- "name": "booleanFormatter",
4699
- "module": "src/cell-formatters/index.ts"
4619
+ "name": "tabulatorThemeSimpleCSS",
4620
+ "module": "src/external/index.ts"
4700
4621
  }
4701
- },
4622
+ }
4623
+ ]
4624
+ },
4625
+ {
4626
+ "kind": "javascript-module",
4627
+ "path": "src/external/tabulator-theme-simple-css.ts",
4628
+ "declarations": [
4629
+ {
4630
+ "kind": "variable",
4631
+ "name": "tabulatorThemeSimpleCSS",
4632
+ "default": "css`\n .tabulator {\n position: relative;\n border: 1px solid #999;\n background-color: #fff;\n font-size: 14px;\n text-align: left;\n overflow: hidden;\n -webkit-transform: translateZ(0);\n -moz-transform: translateZ(0);\n -ms-transform: translateZ(0);\n -o-transform: translateZ(0);\n transform: translateZ(0);\n }\n\n .tabulator[tabulator-layout='fitDataFill'] .tabulator-tableholder .tabulator-table {\n min-width: 100%;\n }\n\n .tabulator[tabulator-layout='fitDataTable'] {\n display: inline-block;\n }\n\n .tabulator.tabulator-block-select {\n user-select: none;\n }\n\n .tabulator .tabulator-header {\n position: relative;\n box-sizing: border-box;\n width: 100%;\n border-bottom: 1px solid #999;\n background-color: #fff;\n color: #555;\n font-weight: bold;\n white-space: nowrap;\n overflow: hidden;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n }\n\n .tabulator .tabulator-header.tabulator-header-hidden {\n display: none;\n }\n\n .tabulator .tabulator-header .tabulator-header-contents {\n position: relative;\n overflow: hidden;\n }\n\n .tabulator .tabulator-header .tabulator-header-contents .tabulator-headers {\n display: inline-block;\n }\n\n .tabulator .tabulator-header .tabulator-col {\n display: inline-flex;\n position: relative;\n box-sizing: border-box;\n flex-direction: column;\n justify-content: flex-start;\n border-right: 1px solid #ddd;\n background: #fff;\n text-align: left;\n vertical-align: bottom;\n overflow: hidden;\n }\n\n .tabulator .tabulator-header .tabulator-col.tabulator-moving {\n position: absolute;\n border: 1px solid #999;\n background: #e6e6e6;\n pointer-events: none;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content {\n box-sizing: border-box;\n position: relative;\n padding: 4px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-header-popup-button {\n padding: 0 8px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-header-popup-button:hover {\n cursor: pointer;\n opacity: 0.6;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title-holder {\n position: relative;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title {\n box-sizing: border-box;\n width: 100%;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n vertical-align: bottom;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-title.tabulator-col-title-wrap {\n white-space: normal;\n text-overflow: initial;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-title\n .tabulator-title-editor {\n box-sizing: border-box;\n width: 100%;\n border: 1px solid #999;\n padding: 1px;\n background: #fff;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-title\n .tabulator-header-popup-button\n + .tabulator-title-editor {\n width: calc(100% - 22px);\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter {\n display: flex;\n align-items: center;\n position: absolute;\n top: 0;\n bottom: 0;\n right: 4px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n width: 0;\n height: 0;\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-bottom: 6px solid #bbb;\n }\n\n .tabulator .tabulator-header .tabulator-col.tabulator-col-group .tabulator-col-group-cols {\n position: relative;\n display: flex;\n border-top: 1px solid #ddd;\n overflow: hidden;\n margin-right: -1px;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter {\n position: relative;\n box-sizing: border-box;\n margin-top: 2px;\n width: 100%;\n text-align: center;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter textarea {\n height: auto !important;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter svg {\n margin-top: 3px;\n }\n\n .tabulator .tabulator-header .tabulator-col .tabulator-header-filter input::-ms-clear {\n width: 0;\n height: 0;\n }\n\n .tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {\n padding-right: 25px;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable.tabulator-col-sorter-element:hover {\n cursor: pointer;\n background-color: #e6e6e6;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='none']\n .tabulator-col-content\n .tabulator-col-sorter {\n color: #bbb;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='none']\n .tabulator-col-content\n .tabulator-col-sorter.tabulator-col-sorter-element\n .tabulator-arrow:hover {\n cursor: pointer;\n border-bottom: 6px solid #555;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='none']\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n border-top: none;\n border-bottom: 6px solid #bbb;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='ascending']\n .tabulator-col-content\n .tabulator-col-sorter {\n color: #666;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='ascending']\n .tabulator-col-content\n .tabulator-col-sorter.tabulator-col-sorter-element\n .tabulator-arrow:hover {\n cursor: pointer;\n border-bottom: 6px solid #555;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='ascending']\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n border-top: none;\n border-bottom: 6px solid #666;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='descending']\n .tabulator-col-content\n .tabulator-col-sorter {\n color: #666;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='descending']\n .tabulator-col-content\n .tabulator-col-sorter.tabulator-col-sorter-element\n .tabulator-arrow:hover {\n cursor: pointer;\n border-top: 6px solid #555;\n }\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-sortable[aria-sort='descending']\n .tabulator-col-content\n .tabulator-col-sorter\n .tabulator-arrow {\n border-bottom: none;\n border-top: 6px solid #666;\n color: #666;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical\n .tabulator-col-content\n .tabulator-col-title {\n writing-mode: vertical-rl;\n text-orientation: mixed;\n display: flex;\n align-items: center;\n justify-content: center;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-col-vertical-flip\n .tabulator-col-title {\n transform: rotate(180deg);\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-sortable\n .tabulator-col-title {\n padding-right: 0;\n padding-top: 20px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-sortable.tabulator-col-vertical-flip\n .tabulator-col-title {\n padding-right: 0;\n padding-bottom: 20px;\n }\n\n .tabulator\n .tabulator-header\n .tabulator-col.tabulator-col-vertical.tabulator-sortable\n .tabulator-col-sorter {\n justify-content: center;\n left: 0;\n right: 0;\n top: 4px;\n bottom: auto;\n }\n\n .tabulator .tabulator-header .tabulator-frozen {\n position: sticky;\n left: 0;\n z-index: 11;\n }\n\n .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-left {\n border-right: 2px solid #ddd;\n }\n\n .tabulator .tabulator-header .tabulator-frozen.tabulator-frozen-right {\n border-left: 2px solid #ddd;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder {\n box-sizing: border-box;\n background: white !important;\n border-top: 1px solid #ddd;\n border-bottom: 1px solid #ddd;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {\n background: white !important;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {\n display: none;\n }\n\n .tabulator .tabulator-header .tabulator-frozen-rows-holder:empty {\n display: none;\n }\n\n .tabulator .tabulator-tableholder {\n position: relative;\n width: 100%;\n white-space: nowrap;\n overflow: auto;\n -webkit-overflow-scrolling: touch;\n }\n\n .tabulator .tabulator-tableholder:focus {\n outline: none;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder {\n box-sizing: border-box;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 100%;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder[tabulator-render-mode='virtual'] {\n min-height: 100%;\n min-width: 100%;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder .tabulator-placeholder-contents {\n display: inline-block;\n text-align: center;\n padding: 10px;\n color: #ccc;\n font-weight: bold;\n font-size: 20px;\n white-space: normal;\n }\n\n .tabulator .tabulator-tableholder .tabulator-table {\n position: relative;\n display: inline-block;\n white-space: nowrap;\n overflow: visible;\n color: #333;\n }\n\n .tabulator .tabulator-tableholder .tabulator-table .tabulator-row.tabulator-calcs {\n font-weight: bold;\n background: #f2f2f2;\n }\n\n .tabulator\n .tabulator-tableholder\n .tabulator-table\n .tabulator-row.tabulator-calcs.tabulator-calcs-top {\n border-bottom: 2px solid #ddd;\n }\n\n .tabulator\n .tabulator-tableholder\n .tabulator-table\n .tabulator-row.tabulator-calcs.tabulator-calcs-bottom {\n border-top: 2px solid #ddd;\n }\n\n .tabulator .tabulator-footer {\n border-top: 1px solid #999;\n background-color: #fff;\n color: #555;\n font-weight: bold;\n white-space: nowrap;\n user-select: none;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n }\n\n .tabulator .tabulator-footer .tabulator-footer-contents {\n display: flex;\n flex-direction: row;\n align-items: center;\n justify-content: space-between;\n padding: 5px 10px;\n }\n\n .tabulator .tabulator-footer .tabulator-footer-contents:empty {\n display: none;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder {\n box-sizing: border-box;\n width: 100%;\n text-align: left;\n background: white !important;\n border-bottom: 1px solid #ddd;\n border-top: 1px solid #ddd;\n overflow: hidden;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {\n display: inline-block;\n background: white !important;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row .tabulator-col-resize-handle {\n display: none;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder:only-child {\n margin-bottom: -5px;\n border-bottom: none;\n }\n\n .tabulator .tabulator-footer > * + .tabulator-page-counter {\n margin-left: 10px;\n }\n\n .tabulator .tabulator-footer .tabulator-page-counter {\n font-weight: normal;\n }\n\n .tabulator .tabulator-footer .tabulator-paginator {\n flex: 1;\n text-align: right;\n color: #555;\n font-family: inherit;\n font-weight: inherit;\n font-size: inherit;\n }\n\n .tabulator .tabulator-footer .tabulator-page-size {\n display: inline-block;\n margin: 0 5px;\n padding: 2px 5px;\n border: 1px solid #aaa;\n border-radius: 3px;\n }\n\n .tabulator .tabulator-footer .tabulator-pages {\n margin: 0 7px;\n }\n\n .tabulator .tabulator-footer .tabulator-page {\n display: inline-block;\n margin: 0 2px;\n padding: 2px 5px;\n border: 1px solid #aaa;\n border-radius: 3px;\n background: rgba(255, 255, 255, 0.2);\n }\n\n .tabulator .tabulator-footer .tabulator-page.active {\n color: #d00;\n }\n\n .tabulator .tabulator-footer .tabulator-page:disabled {\n opacity: 0.5;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator .tabulator-footer .tabulator-page:not(.disabled):hover {\n cursor: pointer;\n background: rgba(0, 0, 0, 0.2);\n color: #fff;\n }\n }\n\n .tabulator .tabulator-col-resize-handle {\n position: relative;\n display: inline-block;\n width: 6px;\n margin-left: -3px;\n margin-right: -3px;\n z-index: 10;\n vertical-align: middle;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator .tabulator-col-resize-handle:hover {\n cursor: ew-resize;\n }\n }\n\n .tabulator .tabulator-col-resize-handle:last-of-type {\n width: 3px;\n margin-right: 0;\n }\n\n .tabulator .tabulator-alert {\n position: absolute;\n display: flex;\n align-items: center;\n top: 0;\n left: 0;\n z-index: 100;\n height: 100%;\n width: 100%;\n background: rgba(0, 0, 0, 0.4);\n text-align: center;\n }\n\n .tabulator .tabulator-alert .tabulator-alert-msg {\n display: inline-block;\n margin: 0 auto;\n padding: 10px 20px;\n border-radius: 10px;\n background: #fff;\n font-weight: bold;\n font-size: 16px;\n }\n\n .tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-msg {\n border: 4px solid #333;\n color: #000;\n }\n\n .tabulator .tabulator-alert .tabulator-alert-msg.tabulator-alert-state-error {\n border: 4px solid #d00;\n color: #590000;\n }\n\n .tabulator-row {\n position: relative;\n box-sizing: border-box;\n min-height: 22px;\n background-color: #fff;\n }\n\n .tabulator-row.tabulator-row-even {\n background-color: #fff;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row.tabulator-selectable:hover {\n background-color: #bbb;\n cursor: pointer;\n }\n }\n\n .tabulator-row.tabulator-selected {\n background-color: #9abcea;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row.tabulator-selected:hover {\n background-color: #769bcc;\n cursor: pointer;\n }\n }\n\n .tabulator-row.tabulator-row-moving {\n border: 1px solid #000;\n background: #fff;\n }\n\n .tabulator-row.tabulator-moving {\n position: absolute;\n border-top: 1px solid #ddd;\n border-bottom: 1px solid #ddd;\n pointer-events: none;\n z-index: 15;\n }\n\n .tabulator-row .tabulator-row-resize-handle {\n position: absolute;\n right: 0;\n bottom: 0;\n left: 0;\n height: 5px;\n }\n\n .tabulator-row .tabulator-row-resize-handle.prev {\n top: 0;\n bottom: auto;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row .tabulator-row-resize-handle:hover {\n cursor: ns-resize;\n }\n }\n\n .tabulator-row .tabulator-responsive-collapse {\n box-sizing: border-box;\n padding: 5px;\n border-top: 1px solid #ddd;\n border-bottom: 1px solid #ddd;\n }\n\n .tabulator-row .tabulator-responsive-collapse:empty {\n display: none;\n }\n\n .tabulator-row .tabulator-responsive-collapse table {\n font-size: 14px;\n }\n\n .tabulator-row .tabulator-responsive-collapse table tr td {\n position: relative;\n }\n\n .tabulator-row .tabulator-responsive-collapse table tr td:first-of-type {\n padding-right: 10px;\n }\n\n .tabulator-row .tabulator-cell {\n display: inline-flex;\n position: unset;\n box-sizing: border-box;\n padding: 4px 8px;\n border-right: 1px solid #ddd;\n vertical-align: middle;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n }\n\n .tabulator-row .tabulator-cell.tabulator-frozen {\n display: inline-flex;\n position: sticky;\n left: 0;\n background-color: inherit;\n z-index: 11;\n }\n\n .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {\n border-right: 2px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {\n border-left: 2px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell.tabulator-editing {\n border: 1px solid #1d68cd;\n outline: none;\n padding: 0;\n }\n\n .tabulator-row .tabulator-cell.tabulator-editing input,\n .tabulator-row .tabulator-cell.tabulator-editing select {\n border: 1px;\n background: transparent;\n outline: none;\n }\n\n .tabulator-row .tabulator-cell.tabulator-validation-fail {\n border: 1px solid #dd0000;\n }\n\n .tabulator-row .tabulator-cell.tabulator-validation-fail input,\n .tabulator-row .tabulator-cell.tabulator-validation-fail select {\n border: 1px;\n background: transparent;\n color: #dd0000;\n }\n\n .tabulator-row .tabulator-cell.tabulator-row-handle {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n }\n\n .tabulator-row .tabulator-cell.tabulator-row-handle .tabulator-row-handle-box {\n width: 80%;\n }\n\n .tabulator-row\n .tabulator-cell.tabulator-row-handle\n .tabulator-row-handle-box\n .tabulator-row-handle-bar {\n width: 100%;\n height: 3px;\n margin-top: 2px;\n background: #666;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-branch-empty {\n display: inline-block;\n width: 7px;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-branch {\n display: inline-block;\n vertical-align: middle;\n height: 9px;\n width: 7px;\n margin-top: -9px;\n margin-right: 5px;\n border-bottom-left-radius: 1px;\n border-left: 2px solid #ddd;\n border-bottom: 2px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-control {\n display: inline-flex;\n justify-content: center;\n align-items: center;\n vertical-align: middle;\n height: 11px;\n width: 11px;\n margin-right: 5px;\n border: 1px solid #333;\n border-radius: 2px;\n background: rgba(0, 0, 0, 0.1);\n overflow: hidden;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row .tabulator-cell .tabulator-data-tree-control:hover {\n cursor: pointer;\n background: rgba(0, 0, 0, 0.2);\n }\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-data-tree-control\n .tabulator-data-tree-control-collapse {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: transparent;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-data-tree-control\n .tabulator-data-tree-control-collapse:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator-row .tabulator-cell .tabulator-data-tree-control .tabulator-data-tree-control-expand {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: #333;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-data-tree-control\n .tabulator-data-tree-control-expand:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle {\n display: inline-flex;\n align-items: center;\n justify-content: center;\n -moz-user-select: none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n -o-user-select: none;\n height: 15px;\n width: 15px;\n border-radius: 20px;\n background: #666;\n color: #fff;\n font-weight: bold;\n font-size: 1.1em;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle:hover {\n opacity: 0.7;\n cursor: pointer;\n }\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-responsive-collapse-toggle.open\n .tabulator-responsive-collapse-toggle-close {\n display: initial;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-responsive-collapse-toggle.open\n .tabulator-responsive-collapse-toggle-open {\n display: none;\n }\n\n .tabulator-row .tabulator-cell .tabulator-responsive-collapse-toggle svg {\n stroke: #fff;\n }\n\n .tabulator-row\n .tabulator-cell\n .tabulator-responsive-collapse-toggle\n .tabulator-responsive-collapse-toggle-close {\n display: none;\n }\n\n .tabulator-row .tabulator-cell .tabulator-traffic-light {\n display: inline-block;\n height: 14px;\n width: 14px;\n border-radius: 14px;\n }\n\n .tabulator-row.tabulator-group {\n box-sizing: border-box;\n border-bottom: 1px solid #999;\n border-right: 1px solid #ddd;\n border-top: 1px solid #999;\n padding: 5px;\n padding-left: 10px;\n background: #ccc;\n font-weight: bold;\n min-width: 100%;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-row.tabulator-group:hover {\n cursor: pointer;\n background-color: rgba(0, 0, 0, 0.1);\n }\n }\n\n .tabulator-row.tabulator-group.tabulator-group-visible .tabulator-arrow {\n margin-right: 10px;\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-top: 6px solid #666;\n border-bottom: 0;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-1 {\n padding-left: 30px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-2 {\n padding-left: 50px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-3 {\n padding-left: 70px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-4 {\n padding-left: 90px;\n }\n\n .tabulator-row.tabulator-group.tabulator-group-level-5 {\n padding-left: 110px;\n }\n\n .tabulator-row.tabulator-group .tabulator-group-toggle {\n display: inline-block;\n }\n\n .tabulator-row.tabulator-group .tabulator-arrow {\n display: inline-block;\n width: 0;\n height: 0;\n margin-right: 16px;\n border-top: 6px solid transparent;\n border-bottom: 6px solid transparent;\n border-right: 0;\n border-left: 6px solid #666;\n vertical-align: middle;\n }\n\n .tabulator-row.tabulator-group span {\n margin-left: 10px;\n color: #d00;\n }\n\n .tabulator-popup-container {\n position: absolute;\n display: inline-block;\n box-sizing: border-box;\n background: #fff;\n border: 1px solid #ddd;\n box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);\n font-size: 14px;\n overflow-y: auto;\n -webkit-overflow-scrolling: touch;\n z-index: 10000;\n }\n\n .tabulator-popup {\n padding: 5px;\n border-radius: 3px;\n }\n\n .tabulator-tooltip {\n max-width: Min(500px, 100%);\n padding: 3px 5px;\n border-radius: 2px;\n box-shadow: none;\n font-size: 12px;\n pointer-events: none;\n }\n\n .tabulator-menu .tabulator-menu-item {\n position: relative;\n box-sizing: border-box;\n padding: 5px 10px;\n user-select: none;\n }\n\n .tabulator-menu .tabulator-menu-item.tabulator-menu-item-disabled {\n opacity: 0.5;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-menu .tabulator-menu-item:not(.tabulator-menu-item-disabled):hover {\n cursor: pointer;\n background: #fff;\n }\n }\n\n .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu {\n padding-right: 25px;\n }\n\n .tabulator-menu .tabulator-menu-item.tabulator-menu-item-submenu::after {\n display: inline-block;\n position: absolute;\n top: calc(5px + 0.4em);\n right: 10px;\n height: 7px;\n width: 7px;\n content: '';\n border-width: 1px 1px 0 0;\n border-style: solid;\n border-color: #ddd;\n vertical-align: top;\n transform: rotate(45deg);\n }\n\n .tabulator-menu .tabulator-menu-separator {\n border-top: 1px solid #ddd;\n }\n\n .tabulator-edit-list {\n max-height: 200px;\n font-size: 14px;\n overflow-y: auto;\n -webkit-overflow-scrolling: touch;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item {\n padding: 4px;\n color: #333;\n outline: none;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.active {\n color: #fff;\n background: #1d68cd;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.active.focused {\n outline: 1px solid rgba(255, 255, 255, 0.5);\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.focused {\n outline: 1px solid #1d68cd;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-edit-list .tabulator-edit-list-item:hover {\n cursor: pointer;\n color: #fff;\n background: #1d68cd;\n }\n }\n\n .tabulator-edit-list .tabulator-edit-list-placeholder {\n padding: 4px;\n color: #333;\n text-align: center;\n }\n\n .tabulator-edit-list .tabulator-edit-list-group {\n border-bottom: 1px solid #ddd;\n padding: 4px;\n padding-top: 6px;\n color: #333;\n font-weight: bold;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-2,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-2 {\n padding-left: 12px;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-3,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-3 {\n padding-left: 20px;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-4,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-4 {\n padding-left: 28px;\n }\n\n .tabulator-edit-list .tabulator-edit-list-item.tabulator-edit-list-group-level-5,\n .tabulator-edit-list .tabulator-edit-list-group.tabulator-edit-list-group-level-5 {\n padding-left: 36px;\n }\n\n .tabulator.tabulator-ltr {\n direction: ltr;\n }\n\n .tabulator.tabulator-rtl {\n text-align: initial;\n direction: rtl;\n }\n\n .tabulator.tabulator-rtl .tabulator-header .tabulator-col {\n text-align: initial;\n border-left: 1px solid #ddd;\n border-right: initial;\n }\n\n .tabulator.tabulator-rtl\n .tabulator-header\n .tabulator-col.tabulator-col-group\n .tabulator-col-group-cols {\n margin-right: initial;\n margin-left: -1px;\n }\n\n .tabulator.tabulator-rtl\n .tabulator-header\n .tabulator-col.tabulator-sortable\n .tabulator-col-title {\n padding-right: 0;\n padding-left: 25px;\n }\n\n .tabulator.tabulator-rtl\n .tabulator-header\n .tabulator-col\n .tabulator-col-content\n .tabulator-col-sorter {\n left: 8px;\n right: initial;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell {\n border-right: initial;\n border-left: 1px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-branch {\n margin-right: initial;\n margin-left: 5px;\n border-bottom-left-radius: initial;\n border-bottom-right-radius: 1px;\n border-left: initial;\n border-right: 2px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell .tabulator-data-tree-control {\n margin-right: initial;\n margin-left: 5px;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-left {\n border-left: 2px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-cell.tabulator-frozen.tabulator-frozen-right {\n border-right: 2px solid #ddd;\n }\n\n .tabulator.tabulator-rtl .tabulator-row .tabulator-col-resize-handle:last-of-type {\n width: 3px;\n margin-left: 0;\n margin-right: -3px;\n }\n\n .tabulator.tabulator-rtl .tabulator-footer .tabulator-calcs-holder {\n text-align: initial;\n }\n\n .tabulator-print-fullscreen {\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n z-index: 10000;\n }\n\n body.tabulator-print-fullscreen-hide > *:not(.tabulator-print-fullscreen) {\n display: none !important;\n }\n\n .tabulator-print-table {\n border-collapse: collapse;\n }\n\n .tabulator-print-table .tabulator-data-tree-branch {\n display: inline-block;\n vertical-align: middle;\n height: 9px;\n width: 7px;\n margin-top: -9px;\n margin-right: 5px;\n border-bottom-left-radius: 1px;\n border-left: 2px solid #ddd;\n border-bottom: 2px solid #ddd;\n }\n\n .tabulator-print-table .tabulator-print-table-group {\n box-sizing: border-box;\n border-bottom: 1px solid #999;\n border-right: 1px solid #ddd;\n border-top: 1px solid #999;\n padding: 5px;\n padding-left: 10px;\n background: #ccc;\n font-weight: bold;\n min-width: 100%;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-print-table .tabulator-print-table-group:hover {\n cursor: pointer;\n background-color: rgba(0, 0, 0, 0.1);\n }\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-visible .tabulator-arrow {\n margin-right: 10px;\n border-left: 6px solid transparent;\n border-right: 6px solid transparent;\n border-top: 6px solid #666;\n border-bottom: 0;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-1 td {\n padding-left: 30px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-2 td {\n padding-left: 50px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-3 td {\n padding-left: 70px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-4 td {\n padding-left: 90px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group.tabulator-group-level-5 td {\n padding-left: 110px !important;\n }\n\n .tabulator-print-table .tabulator-print-table-group .tabulator-group-toggle {\n display: inline-block;\n }\n\n .tabulator-print-table .tabulator-print-table-group .tabulator-arrow {\n display: inline-block;\n width: 0;\n height: 0;\n margin-right: 16px;\n border-top: 6px solid transparent;\n border-bottom: 6px solid transparent;\n border-right: 0;\n border-left: 6px solid #666;\n vertical-align: middle;\n }\n\n .tabulator-print-table .tabulator-print-table-group span {\n margin-left: 10px;\n color: #d00;\n }\n\n .tabulator-print-table .tabulator-data-tree-control {\n display: inline-flex;\n justify-content: center;\n align-items: center;\n vertical-align: middle;\n height: 11px;\n width: 11px;\n margin-right: 5px;\n border: 1px solid #333;\n border-radius: 2px;\n background: rgba(0, 0, 0, 0.1);\n overflow: hidden;\n }\n\n @media (hover: hover) and (pointer: fine) {\n .tabulator-print-table .tabulator-data-tree-control:hover {\n cursor: pointer;\n background: rgba(0, 0, 0, 0.2);\n }\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: transparent;\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-collapse:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand {\n display: inline-block;\n position: relative;\n height: 7px;\n width: 1px;\n background: #333;\n }\n\n .tabulator-print-table .tabulator-data-tree-control .tabulator-data-tree-control-expand:after {\n position: absolute;\n content: '';\n left: -3px;\n top: 3px;\n height: 1px;\n width: 7px;\n background: #333;\n }\n\n .tabulator {\n border: none;\n background-color: #fff;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder {\n background: #f2f2f2 !important;\n border-bottom: 1px solid #999;\n }\n\n .tabulator .tabulator-header .tabulator-calcs-holder .tabulator-row {\n background: #f2f2f2 !important;\n }\n\n .tabulator .tabulator-tableholder .tabulator-placeholder span {\n color: #000;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder {\n background: #f2f2f2 !important;\n border-bottom: 1px solid #fff;\n }\n\n .tabulator .tabulator-footer .tabulator-calcs-holder .tabulator-row {\n background: #f2f2f2 !important;\n }\n\n .tabulator-row {\n border-bottom: 1px solid #ddd;\n }\n\n .tabulator-row .tabulator-cell:last-of-type {\n border-right: none;\n }\n\n .tabulator-row.tabulator-group span {\n color: #666;\n }\n\n .tabulator-print-table .tabulator-print-table-group span {\n margin-left: 10px;\n color: #666;\n }\n\n /*# sourceMappingURL=tabulator_simple.css.map */\n`",
4633
+ "description": "External styles for the Tabulator grid.",
4634
+ "privacy": "public"
4635
+ }
4636
+ ],
4637
+ "exports": [
4702
4638
  {
4703
4639
  "kind": "js",
4704
- "name": "EditableFormatterParams",
4640
+ "name": "tabulatorThemeSimpleCSS",
4705
4641
  "declaration": {
4706
- "name": "EditableFormatterParams",
4707
- "module": "src/cell-formatters/index.ts"
4642
+ "name": "tabulatorThemeSimpleCSS",
4643
+ "module": "src/external/tabulator-theme-simple-css.ts"
4708
4644
  }
4709
- },
4645
+ }
4646
+ ]
4647
+ },
4648
+ {
4649
+ "kind": "javascript-module",
4650
+ "path": "src/style/colors.ts",
4651
+ "declarations": [],
4652
+ "exports": []
4653
+ },
4654
+ {
4655
+ "kind": "javascript-module",
4656
+ "path": "src/style/index.ts",
4657
+ "declarations": [],
4658
+ "exports": [
4710
4659
  {
4711
4660
  "kind": "js",
4712
- "name": "editableFormatter",
4661
+ "name": "*",
4713
4662
  "declaration": {
4714
- "name": "editableFormatter",
4715
- "module": "src/cell-formatters/index.ts"
4663
+ "name": "*",
4664
+ "package": "./colors"
4716
4665
  }
4717
4666
  },
4718
4667
  {
4719
4668
  "kind": "js",
4720
- "name": "SelectFormatterParams",
4669
+ "name": "*",
4721
4670
  "declaration": {
4722
- "name": "SelectFormatterParams",
4723
- "module": "src/cell-formatters/index.ts"
4671
+ "name": "*",
4672
+ "package": "./tokens"
4724
4673
  }
4725
- },
4674
+ }
4675
+ ]
4676
+ },
4677
+ {
4678
+ "kind": "javascript-module",
4679
+ "path": "src/style/tokens.ts",
4680
+ "declarations": [],
4681
+ "exports": []
4682
+ },
4683
+ {
4684
+ "kind": "javascript-module",
4685
+ "path": "src/utils/index.ts",
4686
+ "declarations": [],
4687
+ "exports": [
4726
4688
  {
4727
4689
  "kind": "js",
4728
- "name": "selectFormatter",
4690
+ "name": "*",
4729
4691
  "declaration": {
4730
- "name": "selectFormatter",
4731
- "module": "src/cell-formatters/index.ts"
4692
+ "name": "*",
4693
+ "package": "./logger"
4732
4694
  }
4733
4695
  },
4734
4696
  {
4735
4697
  "kind": "js",
4736
- "name": "TextFormatterParams",
4698
+ "name": "*",
4737
4699
  "declaration": {
4738
- "name": "TextFormatterParams",
4739
- "module": "src/cell-formatters/index.ts"
4700
+ "name": "*",
4701
+ "package": "./string-utils"
4740
4702
  }
4741
4703
  },
4742
4704
  {
4743
4705
  "kind": "js",
4744
- "name": "textFormatter",
4706
+ "name": "*",
4745
4707
  "declaration": {
4746
- "name": "textFormatter",
4747
- "module": "src/cell-formatters/index.ts"
4708
+ "name": "*",
4709
+ "package": "./test-id-utils"
4748
4710
  }
4749
- },
4711
+ }
4712
+ ]
4713
+ },
4714
+ {
4715
+ "kind": "javascript-module",
4716
+ "path": "src/utils/logger.ts",
4717
+ "declarations": [
4718
+ {
4719
+ "kind": "variable",
4720
+ "name": "logger",
4721
+ "description": "Logger for the `grid-tabulator` package",
4722
+ "privacy": "public"
4723
+ }
4724
+ ],
4725
+ "exports": [
4750
4726
  {
4751
4727
  "kind": "js",
4752
- "name": "formatters",
4728
+ "name": "logger",
4753
4729
  "declaration": {
4754
- "name": "formatters",
4755
- "module": "src/cell-formatters/index.ts"
4730
+ "name": "logger",
4731
+ "module": "src/utils/logger.ts"
4756
4732
  }
4757
4733
  }
4758
4734
  ]
4759
4735
  },
4760
4736
  {
4761
4737
  "kind": "javascript-module",
4762
- "path": "src/cell-formatters/select.formatter.ts",
4738
+ "path": "src/utils/string-utils.ts",
4763
4739
  "declarations": [
4764
4740
  {
4765
4741
  "kind": "function",
4766
- "name": "selectFormatter",
4742
+ "name": "convertToKebabCase",
4767
4743
  "return": {
4768
4744
  "type": {
4769
4745
  "text": ""
@@ -4771,42 +4747,68 @@
4771
4747
  },
4772
4748
  "parameters": [
4773
4749
  {
4774
- "name": "cell",
4750
+ "name": "str",
4775
4751
  "type": {
4776
- "text": "any"
4752
+ "text": "string"
4777
4753
  },
4778
- "description": "The cell component provided by Tabulator"
4754
+ "description": "The string to convert"
4755
+ }
4756
+ ],
4757
+ "description": "Convert a string to kebab case\nExample: convertToKebabCase('helloWorld') // 'hello-world'"
4758
+ },
4759
+ {
4760
+ "kind": "function",
4761
+ "name": "mergeAndDedupColDefWithColumnState",
4762
+ "return": {
4763
+ "type": {
4764
+ "text": ""
4765
+ }
4766
+ },
4767
+ "parameters": [
4768
+ {
4769
+ "name": "colDefs",
4770
+ "type": {
4771
+ "text": "any[]"
4772
+ },
4773
+ "description": "The column definitions"
4779
4774
  },
4780
4775
  {
4781
- "name": "formatterParams",
4776
+ "name": "columnState",
4782
4777
  "type": {
4783
- "text": "SelectFormatterParams<T>"
4778
+ "text": "any[]"
4784
4779
  },
4785
- "description": "Select formatter parameters"
4780
+ "description": "The column state"
4786
4781
  }
4787
4782
  ],
4788
- "description": "Formatter that displays a select component with options.\nReturns a wrapped div containing the select, similar to boolean.formatter.",
4789
- "privacy": "public"
4783
+ "description": "Merges and dedupes column definitions with column state"
4790
4784
  }
4791
4785
  ],
4792
4786
  "exports": [
4793
4787
  {
4794
4788
  "kind": "js",
4795
- "name": "selectFormatter",
4789
+ "name": "convertToKebabCase",
4796
4790
  "declaration": {
4797
- "name": "selectFormatter",
4798
- "module": "src/cell-formatters/select.formatter.ts"
4791
+ "name": "convertToKebabCase",
4792
+ "module": "src/utils/string-utils.ts"
4793
+ }
4794
+ },
4795
+ {
4796
+ "kind": "js",
4797
+ "name": "mergeAndDedupColDefWithColumnState",
4798
+ "declaration": {
4799
+ "name": "mergeAndDedupColDefWithColumnState",
4800
+ "module": "src/utils/string-utils.ts"
4799
4801
  }
4800
4802
  }
4801
4803
  ]
4802
4804
  },
4803
4805
  {
4804
4806
  "kind": "javascript-module",
4805
- "path": "src/cell-formatters/text.formatter.ts",
4807
+ "path": "src/utils/test-id-utils.ts",
4806
4808
  "declarations": [
4807
4809
  {
4808
4810
  "kind": "function",
4809
- "name": "textFormatter",
4811
+ "name": "getDataTestId",
4810
4812
  "return": {
4811
4813
  "type": {
4812
4814
  "text": ""
@@ -4814,32 +4816,30 @@
4814
4816
  },
4815
4817
  "parameters": [
4816
4818
  {
4817
- "name": "cell",
4819
+ "name": "dataTestId",
4818
4820
  "type": {
4819
- "text": "any"
4821
+ "text": "((rowData: T) => string) | string | undefined"
4820
4822
  },
4821
- "description": "The cell component provided by Tabulator"
4823
+ "description": "The dataTestId value (string or function)"
4822
4824
  },
4823
4825
  {
4824
- "name": "formatterParams",
4825
- "default": "{}",
4826
+ "name": "rowData",
4826
4827
  "type": {
4827
- "text": "TextFormatterParams<T>"
4828
+ "text": "T"
4828
4829
  },
4829
- "description": "Text formatter parameters"
4830
+ "description": "The row data to pass to the function if dataTestId is a function"
4830
4831
  }
4831
4832
  ],
4832
- "description": "Text formatter for customized display of values.\nStyled to match grid-pro text renderer.",
4833
- "privacy": "public"
4833
+ "description": "Resolves a dataTestId value that can be either a string or a function"
4834
4834
  }
4835
4835
  ],
4836
4836
  "exports": [
4837
4837
  {
4838
4838
  "kind": "js",
4839
- "name": "textFormatter",
4839
+ "name": "getDataTestId",
4840
4840
  "declaration": {
4841
- "name": "textFormatter",
4842
- "module": "src/cell-formatters/text.formatter.ts"
4841
+ "name": "getDataTestId",
4842
+ "module": "src/utils/test-id-utils.ts"
4843
4843
  }
4844
4844
  }
4845
4845
  ]