@universal-material/web 3.0.34 → 3.0.35

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.
@@ -6522,6 +6522,277 @@
6522
6522
  }
6523
6523
  ]
6524
6524
  },
6525
+ {
6526
+ "kind": "javascript-module",
6527
+ "path": "src/snackbar/snackbar.styles.ts",
6528
+ "declarations": [
6529
+ {
6530
+ "kind": "variable",
6531
+ "name": "styles",
6532
+ "default": "css `\n :host {\n --u-elevation-level: var(--u-snackbar-elevation-level, 3);\n --_snackbar-margin: var(--u-snackbar-margin, var(--u-spacing-medium, 16px));\n position: fixed;\n inset-inline: 0;\n inset-block-end: 0;\n padding: var(--_snackbar-margin);\n z-index: var(--u-snackbar-z-index, 1070);\n display: flex;\n justify-content: center;\n }\n\n .snackbar {\n display: flex;\n align-items: center;\n min-height: var(--u-snackbar-height, 48px);\n color: var(--u-snackbar-text-color, var(--u-color-on-inverse-surface, rgb(245, 239, 247)));\n background-color: var(--u-snackbar-background-color, var(--u-color-inverse-surface, rgb(50, 47, 53)));\n border-radius: var(--u-snackbar-shape, var(--u-shape-corner-extra-small, 4px));\n animation-name: snackbar-fade-in;\n animation-duration: 450ms;\n animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);\n animation-fill-mode: forwards;\n min-width: var(--u-snackbar-min-width, 100%);\n max-width: var(--u-snackbar-max-width, 100%);\n }\n .snackbar.dismiss {\n animation-name: snackbar-fade-out;\n }\n\n u-button {\n color: var(--u-color-inverse-primary, );\n margin-inline: var(--u-snackbar-text-button-margin, var(--u-spacing-small, 8px));\n }\n\n u-icon-button {\n color: var(--u-color-on-inverse-surface, rgb(245, 239, 247));\n margin-inline: var(--u-snackbar-close-button-margin, var(--u-spacing-extra-small, 4px));\n }\n\n .label {\n flex: 1;\n overflow: hidden;\n color: var(--u-on-inverse-surface-color);\n padding: var(--u-snackbar-text-margin, var(--u-spacing-medium, 16px));\n line-height: 18px;\n }\n\n @media (min-width: 840px) {\n :host {\n --_snackbar-margin: var(--u-snackbar-margin, var(--u-spacing-large, 24px));\n }\n .snackbar {\n min-width: var(--u-snackbar-min-width, 288px);\n max-width: var(--u-snackbar-max-width, 568px);\n }\n }\n @keyframes snackbar-fade-in {\n 0% {\n opacity: 0;\n transform: scale3d(0.5, 0.5, 1);\n }\n 100% {\n opacity: 1;\n transform: scale3d(1, 1, 1);\n }\n }\n @keyframes snackbar-fade-out {\n 0% {\n opacity: 1;\n transform: scale3d(1, 1, 1);\n }\n 100% {\n opacity: 0;\n transform: scale3d(0.5, 0.5, 1);\n }\n }\n`"
6533
+ }
6534
+ ],
6535
+ "exports": [
6536
+ {
6537
+ "kind": "js",
6538
+ "name": "styles",
6539
+ "declaration": {
6540
+ "name": "styles",
6541
+ "module": "src/snackbar/snackbar.styles.ts"
6542
+ }
6543
+ }
6544
+ ]
6545
+ },
6546
+ {
6547
+ "kind": "javascript-module",
6548
+ "path": "src/snackbar/snackbar.ts",
6549
+ "declarations": [
6550
+ {
6551
+ "kind": "class",
6552
+ "description": "",
6553
+ "name": "UmSnackbar",
6554
+ "members": [
6555
+ {
6556
+ "kind": "field",
6557
+ "name": "label",
6558
+ "type": {
6559
+ "text": "string"
6560
+ },
6561
+ "default": "''",
6562
+ "attribute": "label",
6563
+ "reflects": true
6564
+ },
6565
+ {
6566
+ "kind": "field",
6567
+ "name": "buttonLabel",
6568
+ "type": {
6569
+ "text": "string"
6570
+ },
6571
+ "default": "''",
6572
+ "attribute": "buttonLabel",
6573
+ "reflects": true
6574
+ },
6575
+ {
6576
+ "kind": "field",
6577
+ "name": "showClose",
6578
+ "type": {
6579
+ "text": "boolean"
6580
+ },
6581
+ "default": "false",
6582
+ "attribute": "show-close",
6583
+ "reflects": true
6584
+ },
6585
+ {
6586
+ "kind": "field",
6587
+ "name": "dismissed",
6588
+ "type": {
6589
+ "text": "boolean"
6590
+ },
6591
+ "default": "false",
6592
+ "attribute": "dismissed",
6593
+ "reflects": true
6594
+ },
6595
+ {
6596
+ "kind": "field",
6597
+ "name": "duration",
6598
+ "type": {
6599
+ "text": "SnackbarDuration"
6600
+ },
6601
+ "privacy": "private"
6602
+ },
6603
+ {
6604
+ "kind": "field",
6605
+ "name": "snackbar",
6606
+ "type": {
6607
+ "text": "HTMLElement"
6608
+ },
6609
+ "privacy": "private"
6610
+ },
6611
+ {
6612
+ "kind": "method",
6613
+ "name": "renderButton",
6614
+ "privacy": "private"
6615
+ },
6616
+ {
6617
+ "kind": "method",
6618
+ "name": "renderCloseButton",
6619
+ "privacy": "private"
6620
+ },
6621
+ {
6622
+ "kind": "method",
6623
+ "name": "dismiss",
6624
+ "return": {
6625
+ "type": {
6626
+ "text": "void"
6627
+ }
6628
+ }
6629
+ },
6630
+ {
6631
+ "kind": "field",
6632
+ "name": "_queue",
6633
+ "type": {
6634
+ "text": "UmSnackbar[]"
6635
+ },
6636
+ "privacy": "private",
6637
+ "static": true,
6638
+ "default": "[]"
6639
+ },
6640
+ {
6641
+ "kind": "field",
6642
+ "name": "_consuming",
6643
+ "type": {
6644
+ "text": "boolean"
6645
+ },
6646
+ "privacy": "private",
6647
+ "static": true
6648
+ },
6649
+ {
6650
+ "kind": "method",
6651
+ "name": "show",
6652
+ "static": true,
6653
+ "return": {
6654
+ "type": {
6655
+ "text": "UmSnackbar"
6656
+ }
6657
+ },
6658
+ "parameters": [
6659
+ {
6660
+ "name": "label",
6661
+ "type": {
6662
+ "text": "string"
6663
+ }
6664
+ }
6665
+ ]
6666
+ },
6667
+ {
6668
+ "kind": "method",
6669
+ "name": "show",
6670
+ "static": true,
6671
+ "return": {
6672
+ "type": {
6673
+ "text": "UmSnackbar"
6674
+ }
6675
+ },
6676
+ "parameters": [
6677
+ {
6678
+ "name": "config",
6679
+ "type": {
6680
+ "text": "SnackbarConfig"
6681
+ }
6682
+ }
6683
+ ]
6684
+ },
6685
+ {
6686
+ "kind": "method",
6687
+ "name": "show",
6688
+ "static": true,
6689
+ "return": {
6690
+ "type": {
6691
+ "text": "UmSnackbar"
6692
+ }
6693
+ },
6694
+ "parameters": [
6695
+ {
6696
+ "name": "configOrLabel",
6697
+ "type": {
6698
+ "text": "SnackbarConfig | string"
6699
+ }
6700
+ }
6701
+ ]
6702
+ },
6703
+ {
6704
+ "kind": "method",
6705
+ "name": "consumeQueue",
6706
+ "privacy": "private",
6707
+ "static": true
6708
+ },
6709
+ {
6710
+ "kind": "method",
6711
+ "name": "showNext",
6712
+ "privacy": "private",
6713
+ "static": true
6714
+ },
6715
+ {
6716
+ "kind": "method",
6717
+ "name": "createSnackbar",
6718
+ "privacy": "private",
6719
+ "static": true,
6720
+ "return": {
6721
+ "type": {
6722
+ "text": "UmSnackbar"
6723
+ }
6724
+ },
6725
+ "parameters": [
6726
+ {
6727
+ "name": "config",
6728
+ "type": {
6729
+ "text": "SnackbarConfig"
6730
+ }
6731
+ }
6732
+ ]
6733
+ }
6734
+ ],
6735
+ "attributes": [
6736
+ {
6737
+ "name": "label",
6738
+ "type": {
6739
+ "text": "string"
6740
+ },
6741
+ "default": "''",
6742
+ "fieldName": "label"
6743
+ },
6744
+ {
6745
+ "name": "buttonLabel",
6746
+ "type": {
6747
+ "text": "string"
6748
+ },
6749
+ "default": "''",
6750
+ "fieldName": "buttonLabel"
6751
+ },
6752
+ {
6753
+ "name": "show-close",
6754
+ "type": {
6755
+ "text": "boolean"
6756
+ },
6757
+ "default": "false",
6758
+ "fieldName": "showClose"
6759
+ },
6760
+ {
6761
+ "name": "dismissed",
6762
+ "type": {
6763
+ "text": "boolean"
6764
+ },
6765
+ "default": "false",
6766
+ "fieldName": "dismissed"
6767
+ }
6768
+ ],
6769
+ "superclass": {
6770
+ "name": "LitElement",
6771
+ "package": "lit"
6772
+ },
6773
+ "tagName": "u-snackbar",
6774
+ "customElement": true
6775
+ }
6776
+ ],
6777
+ "exports": [
6778
+ {
6779
+ "kind": "js",
6780
+ "name": "UmSnackbar",
6781
+ "declaration": {
6782
+ "name": "UmSnackbar",
6783
+ "module": "src/snackbar/snackbar.ts"
6784
+ }
6785
+ },
6786
+ {
6787
+ "kind": "custom-element-definition",
6788
+ "name": "u-snackbar",
6789
+ "declaration": {
6790
+ "name": "UmSnackbar",
6791
+ "module": "src/snackbar/snackbar.ts"
6792
+ }
6793
+ }
6794
+ ]
6795
+ },
6525
6796
  {
6526
6797
  "kind": "javascript-module",
6527
6798
  "path": "src/switch/switch-list-item.ts",
@@ -7085,12 +7356,12 @@
7085
7356
  },
7086
7357
  {
7087
7358
  "kind": "javascript-module",
7088
- "path": "src/snackbar/snackbar.styles.ts",
7359
+ "path": "src/text-field/text-field.styles.ts",
7089
7360
  "declarations": [
7090
7361
  {
7091
7362
  "kind": "variable",
7092
7363
  "name": "styles",
7093
- "default": "css `\n :host {\n --u-elevation-level: var(--u-snackbar-elevation-level, 3);\n --_snackbar-margin: var(--u-snackbar-margin, var(--u-spacing-medium, 16px));\n position: fixed;\n inset-inline: 0;\n inset-block-end: 0;\n padding: var(--_snackbar-margin);\n z-index: var(--u-snackbar-z-index, 1070);\n display: flex;\n justify-content: center;\n }\n\n .snackbar {\n display: flex;\n align-items: center;\n min-height: var(--u-snackbar-height, 48px);\n color: var(--u-snackbar-text-color, var(--u-color-on-inverse-surface, rgb(245, 239, 247)));\n background-color: var(--u-snackbar-background-color, var(--u-color-inverse-surface, rgb(50, 47, 53)));\n border-radius: var(--u-snackbar-shape, var(--u-shape-corner-extra-small, 4px));\n animation-name: snackbar-fade-in;\n animation-duration: 450ms;\n animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);\n animation-fill-mode: forwards;\n min-width: var(--u-snackbar-min-width, 100%);\n max-width: var(--u-snackbar-max-width, 100%);\n }\n .snackbar.dismiss {\n animation-name: snackbar-fade-out;\n }\n\n u-button {\n color: var(--u-color-inverse-primary, );\n margin-inline: var(--u-snackbar-text-button-margin, var(--u-spacing-small, 8px));\n }\n\n u-icon-button {\n color: var(--u-color-on-inverse-surface, rgb(245, 239, 247));\n margin-inline: var(--u-snackbar-close-button-margin, var(--u-spacing-extra-small, 4px));\n }\n\n .label {\n flex: 1;\n overflow: hidden;\n color: var(--u-on-inverse-surface-color);\n padding: var(--u-snackbar-text-margin, var(--u-spacing-medium, 16px));\n line-height: 18px;\n }\n\n @media (min-width: 840px) {\n :host {\n --_snackbar-margin: var(--u-snackbar-margin, var(--u-spacing-large, 24px));\n }\n .snackbar {\n min-width: var(--u-snackbar-min-width, 288px);\n max-width: var(--u-snackbar-max-width, 568px);\n }\n }\n @keyframes snackbar-fade-in {\n 0% {\n opacity: 0;\n transform: scale3d(0.5, 0.5, 1);\n }\n 100% {\n opacity: 1;\n transform: scale3d(1, 1, 1);\n }\n }\n @keyframes snackbar-fade-out {\n 0% {\n opacity: 1;\n transform: scale3d(1, 1, 1);\n }\n 100% {\n opacity: 0;\n transform: scale3d(0.5, 0.5, 1);\n }\n }\n`"
7364
+ "default": "css `\n\n`"
7094
7365
  }
7095
7366
  ],
7096
7367
  "exports": [
@@ -7099,257 +7370,159 @@
7099
7370
  "name": "styles",
7100
7371
  "declaration": {
7101
7372
  "name": "styles",
7102
- "module": "src/snackbar/snackbar.styles.ts"
7373
+ "module": "src/text-field/text-field.styles.ts"
7103
7374
  }
7104
7375
  }
7105
7376
  ]
7106
7377
  },
7107
7378
  {
7108
7379
  "kind": "javascript-module",
7109
- "path": "src/snackbar/snackbar.ts",
7380
+ "path": "src/text-field/text-field.ts",
7110
7381
  "declarations": [
7111
7382
  {
7112
7383
  "kind": "class",
7113
7384
  "description": "",
7114
- "name": "UmSnackbar",
7385
+ "name": "UmTextField",
7115
7386
  "members": [
7116
7387
  {
7117
7388
  "kind": "field",
7118
- "name": "label",
7389
+ "name": "formAssociated",
7119
7390
  "type": {
7120
- "text": "string"
7391
+ "text": "boolean"
7121
7392
  },
7122
- "default": "''",
7123
- "attribute": "label",
7124
- "reflects": true
7393
+ "static": true,
7394
+ "default": "true"
7125
7395
  },
7126
7396
  {
7127
7397
  "kind": "field",
7128
- "name": "buttonLabel",
7129
- "type": {
7130
- "text": "string"
7131
- },
7132
- "default": "''",
7133
- "attribute": "buttonLabel",
7134
- "reflects": true
7398
+ "name": "variant",
7399
+ "attribute": "variant"
7135
7400
  },
7136
7401
  {
7137
7402
  "kind": "field",
7138
- "name": "showClose",
7403
+ "name": "label",
7139
7404
  "type": {
7140
- "text": "boolean"
7405
+ "text": "string | undefined"
7141
7406
  },
7142
- "default": "false",
7143
- "attribute": "show-close",
7144
- "reflects": true
7407
+ "attribute": "label"
7145
7408
  },
7146
7409
  {
7147
7410
  "kind": "field",
7148
- "name": "dismissed",
7411
+ "name": "disabled",
7149
7412
  "type": {
7150
7413
  "text": "boolean"
7151
7414
  },
7152
7415
  "default": "false",
7153
- "attribute": "dismissed",
7416
+ "attribute": "disabled",
7154
7417
  "reflects": true
7155
7418
  },
7156
7419
  {
7157
7420
  "kind": "field",
7158
- "name": "duration",
7159
- "type": {
7160
- "text": "SnackbarDuration"
7161
- },
7162
- "privacy": "private"
7163
- },
7164
- {
7165
- "kind": "field",
7166
- "name": "snackbar",
7421
+ "name": "invalid",
7167
7422
  "type": {
7168
- "text": "HTMLElement"
7423
+ "text": "boolean"
7169
7424
  },
7170
- "privacy": "private"
7171
- },
7172
- {
7173
- "kind": "method",
7174
- "name": "renderButton",
7175
- "privacy": "private"
7176
- },
7177
- {
7178
- "kind": "method",
7179
- "name": "renderCloseButton",
7180
- "privacy": "private"
7181
- },
7182
- {
7183
- "kind": "method",
7184
- "name": "dismiss",
7185
- "return": {
7186
- "type": {
7187
- "text": "void"
7188
- }
7189
- }
7425
+ "default": "false",
7426
+ "attribute": "invalid",
7427
+ "reflects": true
7190
7428
  },
7191
7429
  {
7192
7430
  "kind": "field",
7193
- "name": "_queue",
7194
- "type": {
7195
- "text": "UmSnackbar[]"
7196
- },
7431
+ "name": "#value",
7197
7432
  "privacy": "private",
7198
- "static": true,
7199
- "default": "[]"
7200
- },
7201
- {
7202
- "kind": "field",
7203
- "name": "_consuming",
7204
7433
  "type": {
7205
- "text": "boolean"
7206
- },
7207
- "privacy": "private",
7208
- "static": true
7209
- },
7210
- {
7211
- "kind": "method",
7212
- "name": "show",
7213
- "static": true,
7214
- "return": {
7215
- "type": {
7216
- "text": "UmSnackbar"
7217
- }
7218
- },
7219
- "parameters": [
7220
- {
7221
- "name": "label",
7222
- "type": {
7223
- "text": "string"
7224
- }
7225
- }
7226
- ]
7227
- },
7228
- {
7229
- "kind": "method",
7230
- "name": "show",
7231
- "static": true,
7232
- "return": {
7233
- "type": {
7234
- "text": "UmSnackbar"
7235
- }
7434
+ "text": "string"
7236
7435
  },
7237
- "parameters": [
7238
- {
7239
- "name": "config",
7240
- "type": {
7241
- "text": "SnackbarConfig"
7242
- }
7243
- }
7244
- ]
7436
+ "default": "''"
7245
7437
  },
7246
7438
  {
7247
- "kind": "method",
7248
- "name": "show",
7249
- "static": true,
7250
- "return": {
7251
- "type": {
7252
- "text": "UmSnackbar"
7253
- }
7254
- },
7255
- "parameters": [
7256
- {
7257
- "name": "configOrLabel",
7258
- "type": {
7259
- "text": "SnackbarConfig | string"
7260
- }
7261
- }
7262
- ]
7439
+ "kind": "field",
7440
+ "name": "form",
7441
+ "type": {
7442
+ "text": "HTMLFormElement | null"
7443
+ }
7263
7444
  },
7264
7445
  {
7265
- "kind": "method",
7266
- "name": "consumeQueue",
7267
- "privacy": "private",
7268
- "static": true
7446
+ "kind": "field",
7447
+ "name": "value",
7448
+ "attribute": "value"
7269
7449
  },
7270
7450
  {
7271
- "kind": "method",
7272
- "name": "showNext",
7451
+ "kind": "field",
7452
+ "name": "#elementInternals",
7273
7453
  "privacy": "private",
7274
- "static": true
7454
+ "type": {
7455
+ "text": "ElementInternals"
7456
+ }
7457
+ },
7458
+ {
7459
+ "kind": "field",
7460
+ "name": "input",
7461
+ "type": {
7462
+ "text": "HTMLInputElement"
7463
+ }
7275
7464
  },
7276
7465
  {
7277
7466
  "kind": "method",
7278
- "name": "createSnackbar",
7279
- "privacy": "private",
7280
- "static": true,
7281
- "return": {
7282
- "type": {
7283
- "text": "UmSnackbar"
7284
- }
7285
- },
7286
- "parameters": [
7287
- {
7288
- "name": "config",
7289
- "type": {
7290
- "text": "SnackbarConfig"
7291
- }
7292
- }
7293
- ]
7467
+ "name": "#handleInput"
7294
7468
  }
7295
7469
  ],
7296
7470
  "attributes": [
7297
7471
  {
7298
- "name": "label",
7299
- "type": {
7300
- "text": "string"
7301
- },
7302
- "default": "''",
7303
- "fieldName": "label"
7472
+ "name": "variant",
7473
+ "fieldName": "variant"
7304
7474
  },
7305
7475
  {
7306
- "name": "buttonLabel",
7476
+ "name": "label",
7307
7477
  "type": {
7308
- "text": "string"
7478
+ "text": "string | undefined"
7309
7479
  },
7310
- "default": "''",
7311
- "fieldName": "buttonLabel"
7480
+ "fieldName": "label"
7312
7481
  },
7313
7482
  {
7314
- "name": "show-close",
7483
+ "name": "disabled",
7315
7484
  "type": {
7316
7485
  "text": "boolean"
7317
7486
  },
7318
7487
  "default": "false",
7319
- "fieldName": "showClose"
7488
+ "fieldName": "disabled"
7320
7489
  },
7321
7490
  {
7322
- "name": "dismissed",
7491
+ "name": "invalid",
7323
7492
  "type": {
7324
7493
  "text": "boolean"
7325
7494
  },
7326
7495
  "default": "false",
7327
- "fieldName": "dismissed"
7496
+ "fieldName": "invalid"
7497
+ },
7498
+ {
7499
+ "name": "value",
7500
+ "fieldName": "value"
7328
7501
  }
7329
7502
  ],
7330
7503
  "superclass": {
7331
7504
  "name": "LitElement",
7332
7505
  "package": "lit"
7333
7506
  },
7334
- "tagName": "u-snackbar",
7507
+ "tagName": "u-text-field",
7335
7508
  "customElement": true
7336
7509
  }
7337
7510
  ],
7338
7511
  "exports": [
7339
7512
  {
7340
7513
  "kind": "js",
7341
- "name": "UmSnackbar",
7514
+ "name": "UmTextField",
7342
7515
  "declaration": {
7343
- "name": "UmSnackbar",
7344
- "module": "src/snackbar/snackbar.ts"
7516
+ "name": "UmTextField",
7517
+ "module": "src/text-field/text-field.ts"
7345
7518
  }
7346
7519
  },
7347
7520
  {
7348
7521
  "kind": "custom-element-definition",
7349
- "name": "u-snackbar",
7522
+ "name": "u-text-field",
7350
7523
  "declaration": {
7351
- "name": "UmSnackbar",
7352
- "module": "src/snackbar/snackbar.ts"
7524
+ "name": "UmTextField",
7525
+ "module": "src/text-field/text-field.ts"
7353
7526
  }
7354
7527
  }
7355
7528
  ]
@@ -7941,179 +8114,6 @@
7941
8114
  "declarations": [],
7942
8115
  "exports": []
7943
8116
  },
7944
- {
7945
- "kind": "javascript-module",
7946
- "path": "src/text-field/text-field.styles.ts",
7947
- "declarations": [
7948
- {
7949
- "kind": "variable",
7950
- "name": "styles",
7951
- "default": "css `\n\n`"
7952
- }
7953
- ],
7954
- "exports": [
7955
- {
7956
- "kind": "js",
7957
- "name": "styles",
7958
- "declaration": {
7959
- "name": "styles",
7960
- "module": "src/text-field/text-field.styles.ts"
7961
- }
7962
- }
7963
- ]
7964
- },
7965
- {
7966
- "kind": "javascript-module",
7967
- "path": "src/text-field/text-field.ts",
7968
- "declarations": [
7969
- {
7970
- "kind": "class",
7971
- "description": "",
7972
- "name": "UmTextField",
7973
- "members": [
7974
- {
7975
- "kind": "field",
7976
- "name": "formAssociated",
7977
- "type": {
7978
- "text": "boolean"
7979
- },
7980
- "static": true,
7981
- "default": "true"
7982
- },
7983
- {
7984
- "kind": "field",
7985
- "name": "variant",
7986
- "attribute": "variant"
7987
- },
7988
- {
7989
- "kind": "field",
7990
- "name": "label",
7991
- "type": {
7992
- "text": "string | undefined"
7993
- },
7994
- "attribute": "label"
7995
- },
7996
- {
7997
- "kind": "field",
7998
- "name": "disabled",
7999
- "type": {
8000
- "text": "boolean"
8001
- },
8002
- "default": "false",
8003
- "attribute": "disabled",
8004
- "reflects": true
8005
- },
8006
- {
8007
- "kind": "field",
8008
- "name": "invalid",
8009
- "type": {
8010
- "text": "boolean"
8011
- },
8012
- "default": "false",
8013
- "attribute": "invalid",
8014
- "reflects": true
8015
- },
8016
- {
8017
- "kind": "field",
8018
- "name": "#value",
8019
- "privacy": "private",
8020
- "type": {
8021
- "text": "string"
8022
- },
8023
- "default": "''"
8024
- },
8025
- {
8026
- "kind": "field",
8027
- "name": "form",
8028
- "type": {
8029
- "text": "HTMLFormElement | null"
8030
- }
8031
- },
8032
- {
8033
- "kind": "field",
8034
- "name": "value",
8035
- "attribute": "value"
8036
- },
8037
- {
8038
- "kind": "field",
8039
- "name": "#elementInternals",
8040
- "privacy": "private",
8041
- "type": {
8042
- "text": "ElementInternals"
8043
- }
8044
- },
8045
- {
8046
- "kind": "field",
8047
- "name": "input",
8048
- "type": {
8049
- "text": "HTMLInputElement"
8050
- }
8051
- },
8052
- {
8053
- "kind": "method",
8054
- "name": "#handleInput"
8055
- }
8056
- ],
8057
- "attributes": [
8058
- {
8059
- "name": "variant",
8060
- "fieldName": "variant"
8061
- },
8062
- {
8063
- "name": "label",
8064
- "type": {
8065
- "text": "string | undefined"
8066
- },
8067
- "fieldName": "label"
8068
- },
8069
- {
8070
- "name": "disabled",
8071
- "type": {
8072
- "text": "boolean"
8073
- },
8074
- "default": "false",
8075
- "fieldName": "disabled"
8076
- },
8077
- {
8078
- "name": "invalid",
8079
- "type": {
8080
- "text": "boolean"
8081
- },
8082
- "default": "false",
8083
- "fieldName": "invalid"
8084
- },
8085
- {
8086
- "name": "value",
8087
- "fieldName": "value"
8088
- }
8089
- ],
8090
- "superclass": {
8091
- "name": "LitElement",
8092
- "package": "lit"
8093
- },
8094
- "tagName": "u-text-field",
8095
- "customElement": true
8096
- }
8097
- ],
8098
- "exports": [
8099
- {
8100
- "kind": "js",
8101
- "name": "UmTextField",
8102
- "declaration": {
8103
- "name": "UmTextField",
8104
- "module": "src/text-field/text-field.ts"
8105
- }
8106
- },
8107
- {
8108
- "kind": "custom-element-definition",
8109
- "name": "u-text-field",
8110
- "declaration": {
8111
- "name": "UmTextField",
8112
- "module": "src/text-field/text-field.ts"
8113
- }
8114
- }
8115
- ]
8116
- },
8117
8117
  {
8118
8118
  "kind": "javascript-module",
8119
8119
  "path": "src/shared/selection-control/selection-control-list-item.ts",