@warp-ds/elements 2.4.0-next.4 → 2.4.0-next.6

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 (40) hide show
  1. package/dist/custom-elements.json +3216 -0
  2. package/dist/index.d.ts +752 -0
  3. package/dist/packages/checkbox/checkbox-group.js +3 -11
  4. package/dist/packages/checkbox/checkbox-group.js.map +7 -0
  5. package/dist/packages/checkbox/checkbox.js +2572 -201
  6. package/dist/packages/checkbox/checkbox.js.map +7 -0
  7. package/dist/packages/deadtoggle/index.js +2547 -51
  8. package/dist/packages/deadtoggle/index.js.map +7 -0
  9. package/dist/packages/pageindicator/index.js +28 -44
  10. package/dist/packages/pageindicator/index.js.map +7 -0
  11. package/dist/packages/pagination/index.js +2484 -183
  12. package/dist/packages/pagination/index.js.map +7 -0
  13. package/dist/packages/radio/radio-group-styles.js +3 -3
  14. package/dist/packages/radio/radio-group-styles.js.map +7 -0
  15. package/dist/packages/radio/radio-group.js +2618 -312
  16. package/dist/packages/radio/radio-group.js.map +7 -0
  17. package/dist/packages/radio/radio-styles.js +1 -0
  18. package/dist/packages/radio/radio-styles.js.map +7 -0
  19. package/dist/packages/radio/radio.js +2556 -109
  20. package/dist/packages/radio/radio.js.map +7 -0
  21. package/dist/packages/radio/radio.stories.js +3688 -47
  22. package/dist/packages/radio/radio.stories.js.map +7 -0
  23. package/dist/packages/slider/slider-thumb.js +2646 -399
  24. package/dist/packages/slider/slider-thumb.js.map +7 -0
  25. package/dist/packages/slider/slider.js +2603 -272
  26. package/dist/packages/slider/slider.js.map +7 -0
  27. package/dist/packages/stepindicator/index.js +2459 -189
  28. package/dist/packages/stepindicator/index.js.map +7 -0
  29. package/dist/packages/tabs/index.js +2473 -4
  30. package/dist/packages/tabs/index.js.map +7 -0
  31. package/dist/packages/tabs/tab-panel.js +2441 -47
  32. package/dist/packages/tabs/tab-panel.js.map +7 -0
  33. package/dist/packages/tabs/tab.js +2451 -78
  34. package/dist/packages/tabs/tab.js.map +7 -0
  35. package/dist/packages/tabs/tabs.js +2443 -260
  36. package/dist/packages/tabs/tabs.js.map +7 -0
  37. package/dist/packages/textarea/textarea.js +2465 -210
  38. package/dist/packages/textarea/textarea.js.map +7 -0
  39. package/dist/web-types.json +800 -1
  40. package/package.json +37 -1
@@ -4384,6 +4384,3222 @@
4384
4384
  }
4385
4385
  }
4386
4386
  ]
4387
+ },
4388
+ {
4389
+ "kind": "javascript-module",
4390
+ "path": "packages/deadtoggle/index.ts",
4391
+ "declarations": [
4392
+ {
4393
+ "kind": "class",
4394
+ "description": "Dead toggle can be used where the appearance of a checkbox or radio is needed - but for accessibility purposes an actual input element should not be present.\n\n[See Storybook for usage examples](https://warp-ds.github.io/elements/?path=/docs/forms-dead-toggle--docs)",
4395
+ "name": "WarpDeadToggle",
4396
+ "members": [
4397
+ {
4398
+ "kind": "field",
4399
+ "name": "type",
4400
+ "type": {
4401
+ "text": "'radio' | 'checkbox'"
4402
+ },
4403
+ "default": "'radio'",
4404
+ "attribute": "type",
4405
+ "reflects": true
4406
+ },
4407
+ {
4408
+ "kind": "field",
4409
+ "name": "checked",
4410
+ "type": {
4411
+ "text": "boolean"
4412
+ },
4413
+ "default": "false",
4414
+ "attribute": "checked",
4415
+ "reflects": true
4416
+ },
4417
+ {
4418
+ "kind": "field",
4419
+ "name": "indeterminate",
4420
+ "type": {
4421
+ "text": "boolean"
4422
+ },
4423
+ "default": "false",
4424
+ "attribute": "indeterminate",
4425
+ "reflects": true
4426
+ },
4427
+ {
4428
+ "kind": "field",
4429
+ "name": "invalid",
4430
+ "type": {
4431
+ "text": "boolean"
4432
+ },
4433
+ "default": "false",
4434
+ "attribute": "invalid",
4435
+ "reflects": true
4436
+ },
4437
+ {
4438
+ "kind": "field",
4439
+ "name": "disabled",
4440
+ "type": {
4441
+ "text": "boolean"
4442
+ },
4443
+ "default": "false",
4444
+ "attribute": "disabled",
4445
+ "reflects": true
4446
+ }
4447
+ ],
4448
+ "attributes": [
4449
+ {
4450
+ "name": "type",
4451
+ "type": {
4452
+ "text": "'radio' | 'checkbox'"
4453
+ },
4454
+ "default": "'radio'",
4455
+ "fieldName": "type"
4456
+ },
4457
+ {
4458
+ "name": "checked",
4459
+ "type": {
4460
+ "text": "boolean"
4461
+ },
4462
+ "default": "false",
4463
+ "fieldName": "checked"
4464
+ },
4465
+ {
4466
+ "name": "indeterminate",
4467
+ "type": {
4468
+ "text": "boolean"
4469
+ },
4470
+ "default": "false",
4471
+ "fieldName": "indeterminate"
4472
+ },
4473
+ {
4474
+ "name": "invalid",
4475
+ "type": {
4476
+ "text": "boolean"
4477
+ },
4478
+ "default": "false",
4479
+ "fieldName": "invalid"
4480
+ },
4481
+ {
4482
+ "name": "disabled",
4483
+ "type": {
4484
+ "text": "boolean"
4485
+ },
4486
+ "default": "false",
4487
+ "fieldName": "disabled"
4488
+ }
4489
+ ],
4490
+ "superclass": {
4491
+ "name": "LitElement",
4492
+ "package": "lit"
4493
+ },
4494
+ "tagName": "w-dead-toggle",
4495
+ "customElement": true,
4496
+ "modulePath": "packages/deadtoggle/index.ts",
4497
+ "definitionPath": "packages/deadtoggle/index.ts"
4498
+ }
4499
+ ],
4500
+ "exports": [
4501
+ {
4502
+ "kind": "js",
4503
+ "name": "WarpDeadToggle",
4504
+ "declaration": {
4505
+ "name": "WarpDeadToggle",
4506
+ "module": "packages/deadtoggle/index.ts"
4507
+ }
4508
+ },
4509
+ {
4510
+ "kind": "custom-element-definition",
4511
+ "name": "w-dead-toggle",
4512
+ "declaration": {
4513
+ "name": "WarpDeadToggle",
4514
+ "module": "packages/deadtoggle/index.ts"
4515
+ }
4516
+ }
4517
+ ]
4518
+ },
4519
+ {
4520
+ "kind": "javascript-module",
4521
+ "path": "packages/pageindicator/index.ts",
4522
+ "declarations": [
4523
+ {
4524
+ "kind": "class",
4525
+ "description": "",
4526
+ "name": "WarpPageIndicator",
4527
+ "members": [
4528
+ {
4529
+ "kind": "field",
4530
+ "name": "selectedPage",
4531
+ "type": {
4532
+ "text": "number"
4533
+ },
4534
+ "default": "1",
4535
+ "description": "Currently selected page (1-based index)",
4536
+ "attribute": "selected-page"
4537
+ },
4538
+ {
4539
+ "kind": "field",
4540
+ "name": "pageCount",
4541
+ "type": {
4542
+ "text": "number"
4543
+ },
4544
+ "default": "1",
4545
+ "description": "Total number of pages",
4546
+ "attribute": "page-count"
4547
+ }
4548
+ ],
4549
+ "attributes": [
4550
+ {
4551
+ "name": "selected-page",
4552
+ "type": {
4553
+ "text": "number"
4554
+ },
4555
+ "default": "1",
4556
+ "description": "Currently selected page (1-based index)",
4557
+ "fieldName": "selectedPage"
4558
+ },
4559
+ {
4560
+ "name": "page-count",
4561
+ "type": {
4562
+ "text": "number"
4563
+ },
4564
+ "default": "1",
4565
+ "description": "Total number of pages",
4566
+ "fieldName": "pageCount"
4567
+ }
4568
+ ],
4569
+ "superclass": {
4570
+ "name": "LitElement",
4571
+ "package": "lit"
4572
+ },
4573
+ "tagName": "w-pageindicator",
4574
+ "customElement": true,
4575
+ "modulePath": "packages/pageindicator/index.ts",
4576
+ "definitionPath": "packages/pageindicator/index.ts"
4577
+ }
4578
+ ],
4579
+ "exports": [
4580
+ {
4581
+ "kind": "custom-element-definition",
4582
+ "name": "w-pageindicator",
4583
+ "declaration": {
4584
+ "name": "WarpPageIndicator",
4585
+ "module": "packages/pageindicator/index.ts"
4586
+ }
4587
+ },
4588
+ {
4589
+ "kind": "js",
4590
+ "name": "WarpPageIndicator",
4591
+ "declaration": {
4592
+ "name": "WarpPageIndicator",
4593
+ "module": "packages/pageindicator/index.ts"
4594
+ }
4595
+ }
4596
+ ]
4597
+ },
4598
+ {
4599
+ "kind": "javascript-module",
4600
+ "path": "packages/pagination/index.ts",
4601
+ "declarations": [
4602
+ {
4603
+ "kind": "class",
4604
+ "description": "Pagination allows users to navigate through multiple pages of content by providing navigation controls with page numbers and directional arrows.\n\n[See Storybook for usage examples](https://warp-ds.github.io/elements/?path=/docs/navigation-pagination--docs)",
4605
+ "name": "WarpPagination",
4606
+ "members": [
4607
+ {
4608
+ "kind": "field",
4609
+ "name": "baseUrl",
4610
+ "type": {
4611
+ "text": "string"
4612
+ },
4613
+ "attribute": "base-url",
4614
+ "reflects": true
4615
+ },
4616
+ {
4617
+ "kind": "field",
4618
+ "name": "pages",
4619
+ "type": {
4620
+ "text": "number"
4621
+ },
4622
+ "attribute": "pages",
4623
+ "reflects": true
4624
+ },
4625
+ {
4626
+ "kind": "field",
4627
+ "name": "currentPageNumber",
4628
+ "type": {
4629
+ "text": "number"
4630
+ },
4631
+ "default": "1",
4632
+ "attribute": "current-page",
4633
+ "reflects": true
4634
+ },
4635
+ {
4636
+ "kind": "field",
4637
+ "name": "visiblePages",
4638
+ "type": {
4639
+ "text": "number"
4640
+ },
4641
+ "default": "7",
4642
+ "attribute": "visible-pages",
4643
+ "reflects": true
4644
+ },
4645
+ {
4646
+ "kind": "method",
4647
+ "name": "#dispatchClickPage",
4648
+ "privacy": "private",
4649
+ "parameters": [
4650
+ {
4651
+ "name": "e",
4652
+ "type": {
4653
+ "text": "PointerEvent"
4654
+ }
4655
+ }
4656
+ ]
4657
+ }
4658
+ ],
4659
+ "events": [
4660
+ {
4661
+ "name": "page-click",
4662
+ "type": {
4663
+ "text": "CustomEvent"
4664
+ },
4665
+ "description": "Triggered when a link button in the pagination is clicked. Contains the page number in `string` form."
4666
+ }
4667
+ ],
4668
+ "attributes": [
4669
+ {
4670
+ "name": "base-url",
4671
+ "type": {
4672
+ "text": "string"
4673
+ },
4674
+ "fieldName": "baseUrl"
4675
+ },
4676
+ {
4677
+ "name": "pages",
4678
+ "type": {
4679
+ "text": "number"
4680
+ },
4681
+ "fieldName": "pages"
4682
+ },
4683
+ {
4684
+ "name": "current-page",
4685
+ "type": {
4686
+ "text": "number"
4687
+ },
4688
+ "default": "1",
4689
+ "fieldName": "currentPageNumber"
4690
+ },
4691
+ {
4692
+ "name": "visible-pages",
4693
+ "type": {
4694
+ "text": "number"
4695
+ },
4696
+ "default": "7",
4697
+ "fieldName": "visiblePages"
4698
+ }
4699
+ ],
4700
+ "superclass": {
4701
+ "name": "LitElement",
4702
+ "package": "lit"
4703
+ },
4704
+ "tagName": "w-pagination",
4705
+ "customElement": true,
4706
+ "modulePath": "packages/pagination/index.ts",
4707
+ "definitionPath": "packages/pagination/index.ts"
4708
+ }
4709
+ ],
4710
+ "exports": [
4711
+ {
4712
+ "kind": "custom-element-definition",
4713
+ "name": "w-pagination",
4714
+ "declaration": {
4715
+ "name": "WarpPagination",
4716
+ "module": "packages/pagination/index.ts"
4717
+ }
4718
+ },
4719
+ {
4720
+ "kind": "js",
4721
+ "name": "WarpPagination",
4722
+ "declaration": {
4723
+ "name": "WarpPagination",
4724
+ "module": "packages/pagination/index.ts"
4725
+ }
4726
+ }
4727
+ ]
4728
+ },
4729
+ {
4730
+ "kind": "javascript-module",
4731
+ "path": "packages/radio/radio-group-styles.ts",
4732
+ "declarations": [
4733
+ {
4734
+ "kind": "variable",
4735
+ "name": "styles",
4736
+ "default": "css` :host { display: block; } .form-control { position: relative; border: none; padding: 0; margin: 0; } .label { font-size: var(--w-font-size-s); line-height: var(--w-line-height-s); font-weight: 700; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-smoothing: grayscale; cursor: pointer; padding-bottom: 0.4rem; color: var(--w-s-color-text); display: block; } .radio-group-required .label::after { content: var(--wa-form-control-required-content); margin-inline-start: var(--wa-form-control-required-content-offset); } .button-group { display: flex; } [part~='form-control-input'] { display: flex; flex-direction: column; flex-wrap: wrap; } /* Horizontal */ :host([orientation='horizontal']) [part~='form-control-input'] { flex-direction: row; gap: 1em; } /* Help text */ [part~='hint'] { margin-block-start: 0.5em; } /* Radios have the \"button\" appearance */ :host fieldset.has-radio-buttons { [part~='form-control-input'] { gap: 0; } } `"
4737
+ }
4738
+ ],
4739
+ "exports": [
4740
+ {
4741
+ "kind": "js",
4742
+ "name": "styles",
4743
+ "declaration": {
4744
+ "name": "styles",
4745
+ "module": "packages/radio/radio-group-styles.ts"
4746
+ }
4747
+ }
4748
+ ]
4749
+ },
4750
+ {
4751
+ "kind": "javascript-module",
4752
+ "path": "packages/radio/radio.ts",
4753
+ "declarations": [
4754
+ {
4755
+ "kind": "class",
4756
+ "description": "",
4757
+ "name": "WRadio",
4758
+ "members": [
4759
+ {
4760
+ "kind": "field",
4761
+ "name": "css",
4762
+ "type": {
4763
+ "text": "array"
4764
+ },
4765
+ "static": true,
4766
+ "default": "[reset, toggleStyles]"
4767
+ },
4768
+ {
4769
+ "kind": "field",
4770
+ "name": "checked",
4771
+ "type": {
4772
+ "text": "boolean"
4773
+ },
4774
+ "default": "false"
4775
+ },
4776
+ {
4777
+ "kind": "field",
4778
+ "name": "form",
4779
+ "type": {
4780
+ "text": "string | null"
4781
+ },
4782
+ "default": "null",
4783
+ "description": "The string pointing to a form's id.",
4784
+ "attribute": "form",
4785
+ "reflects": true
4786
+ },
4787
+ {
4788
+ "kind": "field",
4789
+ "name": "value",
4790
+ "type": {
4791
+ "text": "string"
4792
+ },
4793
+ "description": "The radio's value. When selected, the radio group will receive this value.",
4794
+ "attribute": "value",
4795
+ "reflects": true
4796
+ },
4797
+ {
4798
+ "kind": "field",
4799
+ "name": "appearance",
4800
+ "type": {
4801
+ "text": "'default' | 'button' | 'clickable'"
4802
+ },
4803
+ "default": "'default'",
4804
+ "description": "The radio's value. When selected, the radio group will receive this value.",
4805
+ "attribute": "appearance",
4806
+ "reflects": true
4807
+ },
4808
+ {
4809
+ "kind": "field",
4810
+ "name": "size",
4811
+ "type": {
4812
+ "text": "'small' | 'medium' | 'large'"
4813
+ },
4814
+ "default": "'medium'",
4815
+ "description": "The radio's size. When used inside a radio group, the size will be determined by the radio group's size so this\nattribute can typically be omitted.",
4816
+ "attribute": "size",
4817
+ "reflects": true
4818
+ },
4819
+ {
4820
+ "kind": "field",
4821
+ "name": "disabled",
4822
+ "type": {
4823
+ "text": "boolean"
4824
+ },
4825
+ "default": "false",
4826
+ "description": "Disables the radio.",
4827
+ "attribute": "disabled"
4828
+ },
4829
+ {
4830
+ "kind": "method",
4831
+ "name": "setInitialAttributes",
4832
+ "privacy": "private"
4833
+ },
4834
+ {
4835
+ "kind": "method",
4836
+ "name": "setValue",
4837
+ "return": {
4838
+ "type": {
4839
+ "text": "void"
4840
+ }
4841
+ },
4842
+ "type": {
4843
+ "text": "setValue() => void"
4844
+ }
4845
+ },
4846
+ {
4847
+ "kind": "field",
4848
+ "name": "handleClick",
4849
+ "privacy": "private"
4850
+ }
4851
+ ],
4852
+ "attributes": [
4853
+ {
4854
+ "name": "form",
4855
+ "type": {
4856
+ "text": "string | null"
4857
+ },
4858
+ "default": "null",
4859
+ "description": "The string pointing to a form's id.",
4860
+ "fieldName": "form"
4861
+ },
4862
+ {
4863
+ "name": "value",
4864
+ "type": {
4865
+ "text": "string"
4866
+ },
4867
+ "description": "The radio's value. When selected, the radio group will receive this value.",
4868
+ "fieldName": "value"
4869
+ },
4870
+ {
4871
+ "name": "appearance",
4872
+ "type": {
4873
+ "text": "'default' | 'button' | 'clickable'"
4874
+ },
4875
+ "default": "'default'",
4876
+ "description": "The radio's value. When selected, the radio group will receive this value.",
4877
+ "fieldName": "appearance"
4878
+ },
4879
+ {
4880
+ "name": "size",
4881
+ "type": {
4882
+ "text": "'small' | 'medium' | 'large'"
4883
+ },
4884
+ "default": "'medium'",
4885
+ "description": "The radio's size. When used inside a radio group, the size will be determined by the radio group's size so this\nattribute can typically be omitted.",
4886
+ "fieldName": "size"
4887
+ },
4888
+ {
4889
+ "name": "disabled",
4890
+ "type": {
4891
+ "text": "boolean"
4892
+ },
4893
+ "default": "false",
4894
+ "description": "Disables the radio.",
4895
+ "fieldName": "disabled"
4896
+ }
4897
+ ],
4898
+ "superclass": {
4899
+ "name": "BaseFormAssociatedElement",
4900
+ "module": "/packages/radio/form-associated-element"
4901
+ },
4902
+ "tagName": "w-radio",
4903
+ "customElement": true,
4904
+ "modulePath": "packages/radio/radio.ts",
4905
+ "definitionPath": "packages/radio/radio.ts"
4906
+ }
4907
+ ],
4908
+ "exports": [
4909
+ {
4910
+ "kind": "js",
4911
+ "name": "WRadio",
4912
+ "declaration": {
4913
+ "name": "WRadio",
4914
+ "module": "packages/radio/radio.ts"
4915
+ }
4916
+ },
4917
+ {
4918
+ "kind": "custom-element-definition",
4919
+ "name": "w-radio",
4920
+ "declaration": {
4921
+ "name": "WRadio",
4922
+ "module": "packages/radio/radio.ts"
4923
+ }
4924
+ }
4925
+ ]
4926
+ },
4927
+ {
4928
+ "kind": "javascript-module",
4929
+ "path": "packages/radio/radio-group.ts",
4930
+ "declarations": [
4931
+ {
4932
+ "kind": "class",
4933
+ "description": "",
4934
+ "name": "WRadioGroup",
4935
+ "slots": [
4936
+ {
4937
+ "description": "Alternative to the `label` attribute should you need custom HTML.",
4938
+ "name": "label"
4939
+ }
4940
+ ],
4941
+ "members": [
4942
+ {
4943
+ "kind": "field",
4944
+ "name": "css",
4945
+ "type": {
4946
+ "text": "array"
4947
+ },
4948
+ "static": true,
4949
+ "default": "[styles]"
4950
+ },
4951
+ {
4952
+ "kind": "field",
4953
+ "name": "validators",
4954
+ "static": true,
4955
+ "readonly": true
4956
+ },
4957
+ {
4958
+ "kind": "field",
4959
+ "name": "hasSlotController",
4960
+ "privacy": "private",
4961
+ "readonly": true,
4962
+ "default": "new HasSlotController(this, 'hint', 'label')"
4963
+ },
4964
+ {
4965
+ "kind": "field",
4966
+ "name": "hasRadioButtons",
4967
+ "type": {
4968
+ "text": "boolean"
4969
+ },
4970
+ "default": "false"
4971
+ },
4972
+ {
4973
+ "kind": "field",
4974
+ "name": "defaultSlot",
4975
+ "type": {
4976
+ "text": "HTMLSlotElement"
4977
+ }
4978
+ },
4979
+ {
4980
+ "kind": "field",
4981
+ "name": "label",
4982
+ "type": {
4983
+ "text": "string"
4984
+ },
4985
+ "default": "''",
4986
+ "description": "The radio group's label. Required for proper accessibility. If you need to display HTML, use the `label` slot\ninstead.",
4987
+ "attribute": "label"
4988
+ },
4989
+ {
4990
+ "kind": "field",
4991
+ "name": "hint",
4992
+ "type": {
4993
+ "text": "string"
4994
+ },
4995
+ "default": "''",
4996
+ "description": "The radio groups's hint. If you need to display HTML, use the `hint` slot instead.",
4997
+ "attribute": "hint"
4998
+ },
4999
+ {
5000
+ "kind": "field",
5001
+ "name": "name",
5002
+ "type": {
5003
+ "text": "string | null"
5004
+ },
5005
+ "default": "null",
5006
+ "description": "The name of the radio group, submitted as a name/value pair with form data.",
5007
+ "attribute": "name",
5008
+ "reflects": true
5009
+ },
5010
+ {
5011
+ "kind": "field",
5012
+ "name": "disabled",
5013
+ "type": {
5014
+ "text": "boolean"
5015
+ },
5016
+ "default": "false",
5017
+ "description": "Disables the radio group and all child radios.",
5018
+ "attribute": "disabled",
5019
+ "reflects": true
5020
+ },
5021
+ {
5022
+ "kind": "field",
5023
+ "name": "orientation",
5024
+ "type": {
5025
+ "text": "'horizontal' | 'vertical'"
5026
+ },
5027
+ "default": "'vertical'",
5028
+ "description": "The orientation in which to show radio items.",
5029
+ "attribute": "orientation",
5030
+ "reflects": true
5031
+ },
5032
+ {
5033
+ "kind": "field",
5034
+ "name": "_value",
5035
+ "type": {
5036
+ "text": "string | null"
5037
+ },
5038
+ "privacy": "private",
5039
+ "default": "null"
5040
+ },
5041
+ {
5042
+ "kind": "field",
5043
+ "name": "value",
5044
+ "description": "The current value of the radio group, submitted as a name/value pair with form data."
5045
+ },
5046
+ {
5047
+ "kind": "field",
5048
+ "name": "defaultValue",
5049
+ "type": {
5050
+ "text": "string | null"
5051
+ },
5052
+ "description": "The default value of the form control. Primarily used for resetting the form control.",
5053
+ "attribute": "value",
5054
+ "reflects": true
5055
+ },
5056
+ {
5057
+ "kind": "field",
5058
+ "name": "size",
5059
+ "type": {
5060
+ "text": "'small' | 'medium' | 'large'"
5061
+ },
5062
+ "default": "'medium'",
5063
+ "description": "The radio group's size. This size will be applied to all child radios and radio buttons, except when explicitly overridden.",
5064
+ "attribute": "size",
5065
+ "reflects": true
5066
+ },
5067
+ {
5068
+ "kind": "field",
5069
+ "name": "required",
5070
+ "type": {
5071
+ "text": "boolean"
5072
+ },
5073
+ "default": "false",
5074
+ "description": "Ensures a child radio is checked before allowing the containing form to submit.",
5075
+ "attribute": "required",
5076
+ "reflects": true
5077
+ },
5078
+ {
5079
+ "kind": "field",
5080
+ "name": "withLabel",
5081
+ "type": {
5082
+ "text": "boolean"
5083
+ },
5084
+ "default": "false",
5085
+ "description": "Used for SSR. if true, will show slotted label on initial render.",
5086
+ "attribute": "with-label"
5087
+ },
5088
+ {
5089
+ "kind": "field",
5090
+ "name": "withHint",
5091
+ "type": {
5092
+ "text": "boolean"
5093
+ },
5094
+ "default": "false",
5095
+ "description": "Used for SSR. if true, will show slotted hint on initial render.",
5096
+ "attribute": "with-hint"
5097
+ },
5098
+ {
5099
+ "kind": "field",
5100
+ "name": "shadowRootOptions",
5101
+ "type": {
5102
+ "text": "object"
5103
+ },
5104
+ "static": true,
5105
+ "default": "{ ...BaseFormAssociatedElement.shadowRootOptions, delegatesFocus: true }"
5106
+ },
5107
+ {
5108
+ "kind": "field",
5109
+ "name": "validationTarget",
5110
+ "description": "We use the first available radio as the validationTarget similar to native HTML that shows the validation popup on\nthe first radio element.",
5111
+ "readonly": true
5112
+ },
5113
+ {
5114
+ "kind": "method",
5115
+ "name": "formResetCallback",
5116
+ "parameters": [
5117
+ {
5118
+ "name": "args",
5119
+ "type": {
5120
+ "text": "Parameters<BaseFormAssociatedElement['formResetCallback']>"
5121
+ }
5122
+ }
5123
+ ],
5124
+ "type": {
5125
+ "text": "formResetCallback(args: Parameters<BaseFormAssociatedElement['formResetCallback']>) => void"
5126
+ }
5127
+ },
5128
+ {
5129
+ "kind": "field",
5130
+ "name": "handleRadioClick",
5131
+ "privacy": "private"
5132
+ },
5133
+ {
5134
+ "kind": "method",
5135
+ "name": "getAllRadios",
5136
+ "privacy": "private"
5137
+ },
5138
+ {
5139
+ "kind": "method",
5140
+ "name": "handleLabelClick",
5141
+ "privacy": "private"
5142
+ },
5143
+ {
5144
+ "kind": "method",
5145
+ "name": "syncRadioElements",
5146
+ "privacy": "private"
5147
+ },
5148
+ {
5149
+ "kind": "method",
5150
+ "name": "handleKeyDown",
5151
+ "privacy": "private",
5152
+ "parameters": [
5153
+ {
5154
+ "name": "event",
5155
+ "type": {
5156
+ "text": "KeyboardEvent"
5157
+ }
5158
+ }
5159
+ ]
5160
+ },
5161
+ {
5162
+ "kind": "method",
5163
+ "name": "focus",
5164
+ "privacy": "public",
5165
+ "parameters": [
5166
+ {
5167
+ "name": "options",
5168
+ "optional": true,
5169
+ "type": {
5170
+ "text": "FocusOptions"
5171
+ }
5172
+ }
5173
+ ],
5174
+ "description": "Sets focus on the radio group.",
5175
+ "type": {
5176
+ "text": "focus(options?: FocusOptions) => void"
5177
+ }
5178
+ }
5179
+ ],
5180
+ "events": [
5181
+ {
5182
+ "name": "input",
5183
+ "type": {
5184
+ "text": "InputEvent"
5185
+ }
5186
+ },
5187
+ {
5188
+ "name": "change",
5189
+ "type": {
5190
+ "text": "Event"
5191
+ }
5192
+ }
5193
+ ],
5194
+ "attributes": [
5195
+ {
5196
+ "name": "label",
5197
+ "type": {
5198
+ "text": "string"
5199
+ },
5200
+ "default": "''",
5201
+ "description": "The radio group's label. Required for proper accessibility. If you need to display HTML, use the `label` slot\ninstead.",
5202
+ "fieldName": "label"
5203
+ },
5204
+ {
5205
+ "name": "hint",
5206
+ "type": {
5207
+ "text": "string"
5208
+ },
5209
+ "default": "''",
5210
+ "description": "The radio groups's hint. If you need to display HTML, use the `hint` slot instead.",
5211
+ "fieldName": "hint"
5212
+ },
5213
+ {
5214
+ "name": "name",
5215
+ "type": {
5216
+ "text": "string | null"
5217
+ },
5218
+ "default": "null",
5219
+ "description": "The name of the radio group, submitted as a name/value pair with form data.",
5220
+ "fieldName": "name"
5221
+ },
5222
+ {
5223
+ "name": "disabled",
5224
+ "type": {
5225
+ "text": "boolean"
5226
+ },
5227
+ "default": "false",
5228
+ "description": "Disables the radio group and all child radios.",
5229
+ "fieldName": "disabled"
5230
+ },
5231
+ {
5232
+ "name": "orientation",
5233
+ "type": {
5234
+ "text": "'horizontal' | 'vertical'"
5235
+ },
5236
+ "default": "'vertical'",
5237
+ "description": "The orientation in which to show radio items.",
5238
+ "fieldName": "orientation"
5239
+ },
5240
+ {
5241
+ "name": "value",
5242
+ "type": {
5243
+ "text": "string | null"
5244
+ },
5245
+ "description": "The default value of the form control. Primarily used for resetting the form control.",
5246
+ "fieldName": "defaultValue"
5247
+ },
5248
+ {
5249
+ "name": "size",
5250
+ "type": {
5251
+ "text": "'small' | 'medium' | 'large'"
5252
+ },
5253
+ "default": "'medium'",
5254
+ "description": "The radio group's size. This size will be applied to all child radios and radio buttons, except when explicitly overridden.",
5255
+ "fieldName": "size"
5256
+ },
5257
+ {
5258
+ "name": "required",
5259
+ "type": {
5260
+ "text": "boolean"
5261
+ },
5262
+ "default": "false",
5263
+ "description": "Ensures a child radio is checked before allowing the containing form to submit.",
5264
+ "fieldName": "required"
5265
+ },
5266
+ {
5267
+ "name": "with-label",
5268
+ "type": {
5269
+ "text": "boolean"
5270
+ },
5271
+ "default": "false",
5272
+ "description": "Used for SSR. if true, will show slotted label on initial render.",
5273
+ "fieldName": "withLabel"
5274
+ },
5275
+ {
5276
+ "name": "with-hint",
5277
+ "type": {
5278
+ "text": "boolean"
5279
+ },
5280
+ "default": "false",
5281
+ "description": "Used for SSR. if true, will show slotted hint on initial render.",
5282
+ "fieldName": "withHint"
5283
+ }
5284
+ ],
5285
+ "superclass": {
5286
+ "name": "BaseFormAssociatedElement",
5287
+ "module": "/packages/radio/form-associated-element"
5288
+ },
5289
+ "tagName": "w-radio-group",
5290
+ "customElement": true,
5291
+ "modulePath": "packages/radio/radio-group.ts",
5292
+ "definitionPath": "packages/radio/radio-group.ts"
5293
+ }
5294
+ ],
5295
+ "exports": [
5296
+ {
5297
+ "kind": "js",
5298
+ "name": "WRadioGroup",
5299
+ "declaration": {
5300
+ "name": "WRadioGroup",
5301
+ "module": "packages/radio/radio-group.ts"
5302
+ }
5303
+ },
5304
+ {
5305
+ "kind": "custom-element-definition",
5306
+ "name": "w-radio-group",
5307
+ "declaration": {
5308
+ "name": "WRadioGroup",
5309
+ "module": "packages/radio/radio-group.ts"
5310
+ }
5311
+ }
5312
+ ]
5313
+ },
5314
+ {
5315
+ "kind": "javascript-module",
5316
+ "path": "packages/radio/radio-styles.ts",
5317
+ "declarations": [],
5318
+ "exports": []
5319
+ },
5320
+ {
5321
+ "kind": "javascript-module",
5322
+ "path": "packages/radio/radio.stories.ts",
5323
+ "declarations": [
5324
+ {
5325
+ "kind": "variable",
5326
+ "name": "meta",
5327
+ "type": {
5328
+ "text": "Meta<typeof args>"
5329
+ },
5330
+ "default": "{ title: 'Forms/Radio', render: (args) => { return html` <w-radio-group ${spread(prespread(args))}> <w-radio value=\"foo\">foo</w-radio> <w-radio value=\"bar\">bar</w-radio> </w-radio-group> `; }, } satisfies Meta"
5331
+ },
5332
+ {
5333
+ "kind": "variable",
5334
+ "name": "Default",
5335
+ "type": {
5336
+ "text": "Story"
5337
+ },
5338
+ "default": "{ args: { label: 'Group', name: 'foobar', value: 'foo', }, }"
5339
+ },
5340
+ {
5341
+ "kind": "variable",
5342
+ "name": "Disabled",
5343
+ "type": {
5344
+ "text": "Story"
5345
+ },
5346
+ "default": "{ args: { label: 'Disabled', disabled: true, }, }"
5347
+ },
5348
+ {
5349
+ "kind": "variable",
5350
+ "name": "Required",
5351
+ "type": {
5352
+ "text": "Story"
5353
+ },
5354
+ "default": "{ args: {}, render() { return html` <form> <w-radio-group required> <w-radio value=\"foo\">foo</w-radio> <w-radio value=\"bar\">bar</w-radio> </w-radio-group> <button>click me</button> </form> `; }, }"
5355
+ },
5356
+ {
5357
+ "kind": "variable",
5358
+ "name": "DisabledGroup",
5359
+ "type": {
5360
+ "text": "Story"
5361
+ },
5362
+ "default": "{ args: { disabled: true }, }"
5363
+ },
5364
+ {
5365
+ "kind": "variable",
5366
+ "name": "DisabledRadio",
5367
+ "type": {
5368
+ "text": "Story"
5369
+ },
5370
+ "default": "{ args: {}, render() { return html` <w-radio-group> <w-radio value=\"foo\" disabled appearance=\"button\">disabled</w-radio> <w-radio value=\"bar\" appearance=\"clickable\">not disabled</w-radio> </w-radio-group> `; }, }"
5371
+ }
5372
+ ],
5373
+ "exports": [
5374
+ {
5375
+ "kind": "js",
5376
+ "name": "default",
5377
+ "declaration": {
5378
+ "name": "meta",
5379
+ "module": "packages/radio/radio.stories.ts"
5380
+ }
5381
+ },
5382
+ {
5383
+ "kind": "js",
5384
+ "name": "Default",
5385
+ "declaration": {
5386
+ "name": "Default",
5387
+ "module": "packages/radio/radio.stories.ts"
5388
+ }
5389
+ },
5390
+ {
5391
+ "kind": "js",
5392
+ "name": "Disabled",
5393
+ "declaration": {
5394
+ "name": "Disabled",
5395
+ "module": "packages/radio/radio.stories.ts"
5396
+ }
5397
+ },
5398
+ {
5399
+ "kind": "js",
5400
+ "name": "Required",
5401
+ "declaration": {
5402
+ "name": "Required",
5403
+ "module": "packages/radio/radio.stories.ts"
5404
+ }
5405
+ },
5406
+ {
5407
+ "kind": "js",
5408
+ "name": "DisabledGroup",
5409
+ "declaration": {
5410
+ "name": "DisabledGroup",
5411
+ "module": "packages/radio/radio.stories.ts"
5412
+ }
5413
+ },
5414
+ {
5415
+ "kind": "js",
5416
+ "name": "DisabledRadio",
5417
+ "declaration": {
5418
+ "name": "DisabledRadio",
5419
+ "module": "packages/radio/radio.stories.ts"
5420
+ }
5421
+ }
5422
+ ]
5423
+ },
5424
+ {
5425
+ "kind": "javascript-module",
5426
+ "path": "packages/checkbox/checkbox.ts",
5427
+ "declarations": [
5428
+ {
5429
+ "kind": "class",
5430
+ "description": "",
5431
+ "name": "WCheckbox",
5432
+ "members": [
5433
+ {
5434
+ "kind": "field",
5435
+ "name": "css",
5436
+ "type": {
5437
+ "text": "array"
5438
+ },
5439
+ "static": true,
5440
+ "default": "[reset, toggleStyles]"
5441
+ },
5442
+ {
5443
+ "kind": "field",
5444
+ "name": "shadowRootOptions",
5445
+ "type": {
5446
+ "text": "object"
5447
+ },
5448
+ "static": true,
5449
+ "default": "{ ...BaseFormAssociatedElement.shadowRootOptions, delegatesFocus: true }"
5450
+ },
5451
+ {
5452
+ "kind": "field",
5453
+ "name": "validators",
5454
+ "static": true,
5455
+ "readonly": true
5456
+ },
5457
+ {
5458
+ "kind": "field",
5459
+ "name": "hasSlotController",
5460
+ "privacy": "private",
5461
+ "readonly": true,
5462
+ "default": "new HasSlotController(this, 'hint')"
5463
+ },
5464
+ {
5465
+ "kind": "field",
5466
+ "name": "input",
5467
+ "type": {
5468
+ "text": "HTMLInputElement"
5469
+ }
5470
+ },
5471
+ {
5472
+ "kind": "field",
5473
+ "name": "title",
5474
+ "type": {
5475
+ "text": "string"
5476
+ },
5477
+ "default": "''",
5478
+ "attribute": "title"
5479
+ },
5480
+ {
5481
+ "kind": "field",
5482
+ "name": "name",
5483
+ "type": {
5484
+ "text": "string"
5485
+ },
5486
+ "default": "''",
5487
+ "description": "The name of the checkbox, submitted as a name/value pair with form data.",
5488
+ "attribute": "name",
5489
+ "reflects": true
5490
+ },
5491
+ {
5492
+ "kind": "field",
5493
+ "name": "_value",
5494
+ "type": {
5495
+ "text": "string | null"
5496
+ },
5497
+ "privacy": "private"
5498
+ },
5499
+ {
5500
+ "kind": "field",
5501
+ "name": "value",
5502
+ "type": {
5503
+ "text": "string | null"
5504
+ },
5505
+ "description": "The value of the checkbox, submitted as a name/value pair with form data.",
5506
+ "attribute": "value",
5507
+ "reflects": true
5508
+ },
5509
+ {
5510
+ "kind": "field",
5511
+ "name": "size",
5512
+ "type": {
5513
+ "text": "'small' | 'medium' | 'large'"
5514
+ },
5515
+ "default": "'medium'",
5516
+ "description": "The checkbox's size.",
5517
+ "attribute": "size",
5518
+ "reflects": true
5519
+ },
5520
+ {
5521
+ "kind": "field",
5522
+ "name": "disabled",
5523
+ "type": {
5524
+ "text": "boolean"
5525
+ },
5526
+ "default": "false",
5527
+ "description": "Disables the checkbox.",
5528
+ "attribute": "disabled"
5529
+ },
5530
+ {
5531
+ "kind": "field",
5532
+ "name": "indeterminate",
5533
+ "type": {
5534
+ "text": "boolean"
5535
+ },
5536
+ "default": "false",
5537
+ "description": "Draws the checkbox in an indeterminate state. This is usually applied to checkboxes that represents a \"select\nall/none\" behavior when associated checkboxes have a mix of checked and unchecked states.",
5538
+ "attribute": "indeterminate",
5539
+ "reflects": true
5540
+ },
5541
+ {
5542
+ "kind": "field",
5543
+ "name": "checked",
5544
+ "type": {
5545
+ "text": "boolean"
5546
+ },
5547
+ "description": "Draws the checkbox in a checked state."
5548
+ },
5549
+ {
5550
+ "kind": "field",
5551
+ "name": "defaultChecked",
5552
+ "type": {
5553
+ "text": "boolean"
5554
+ },
5555
+ "description": "The default value of the form control. Primarily used for resetting the form control.",
5556
+ "attribute": "checked",
5557
+ "reflects": true
5558
+ },
5559
+ {
5560
+ "kind": "field",
5561
+ "name": "form",
5562
+ "type": {
5563
+ "text": "null"
5564
+ },
5565
+ "default": "null",
5566
+ "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
5567
+ "attribute": "form",
5568
+ "reflects": true
5569
+ },
5570
+ {
5571
+ "kind": "field",
5572
+ "name": "required",
5573
+ "type": {
5574
+ "text": "boolean"
5575
+ },
5576
+ "default": "false",
5577
+ "description": "Makes the checkbox a required field.",
5578
+ "attribute": "required",
5579
+ "reflects": true
5580
+ },
5581
+ {
5582
+ "kind": "field",
5583
+ "name": "hint",
5584
+ "type": {
5585
+ "text": "string"
5586
+ },
5587
+ "default": "''",
5588
+ "description": "The checkbox's hint. If you need to display HTML, use the `hint` slot instead.",
5589
+ "attribute": "hint"
5590
+ },
5591
+ {
5592
+ "kind": "method",
5593
+ "name": "setInitialAttributes",
5594
+ "privacy": "private"
5595
+ },
5596
+ {
5597
+ "kind": "method",
5598
+ "name": "handleClick",
5599
+ "privacy": "private"
5600
+ },
5601
+ {
5602
+ "kind": "method",
5603
+ "name": "handleDefaultCheckedChange",
5604
+ "type": {
5605
+ "text": "handleDefaultCheckedChange() => void"
5606
+ }
5607
+ },
5608
+ {
5609
+ "kind": "method",
5610
+ "name": "handleValueOrCheckedChange",
5611
+ "type": {
5612
+ "text": "handleValueOrCheckedChange() => void"
5613
+ }
5614
+ },
5615
+ {
5616
+ "kind": "method",
5617
+ "name": "handleStateChange",
5618
+ "type": {
5619
+ "text": "handleStateChange() => void"
5620
+ }
5621
+ },
5622
+ {
5623
+ "kind": "method",
5624
+ "name": "handleDisabledChange",
5625
+ "type": {
5626
+ "text": "handleDisabledChange() => void"
5627
+ }
5628
+ },
5629
+ {
5630
+ "kind": "method",
5631
+ "name": "formResetCallback",
5632
+ "type": {
5633
+ "text": "formResetCallback() => void"
5634
+ }
5635
+ },
5636
+ {
5637
+ "kind": "method",
5638
+ "name": "click",
5639
+ "description": "Simulates a click on the checkbox.",
5640
+ "type": {
5641
+ "text": "click() => void"
5642
+ }
5643
+ },
5644
+ {
5645
+ "kind": "method",
5646
+ "name": "focus",
5647
+ "parameters": [
5648
+ {
5649
+ "name": "options",
5650
+ "optional": true,
5651
+ "type": {
5652
+ "text": "FocusOptions"
5653
+ }
5654
+ }
5655
+ ],
5656
+ "description": "Sets focus on the checkbox.",
5657
+ "type": {
5658
+ "text": "focus(options?: FocusOptions) => void"
5659
+ }
5660
+ },
5661
+ {
5662
+ "kind": "method",
5663
+ "name": "blur",
5664
+ "description": "Removes focus from the checkbox.",
5665
+ "type": {
5666
+ "text": "blur() => void"
5667
+ }
5668
+ }
5669
+ ],
5670
+ "events": [
5671
+ {
5672
+ "name": "change",
5673
+ "type": {
5674
+ "text": "Event"
5675
+ }
5676
+ }
5677
+ ],
5678
+ "attributes": [
5679
+ {
5680
+ "name": "title",
5681
+ "type": {
5682
+ "text": "string"
5683
+ },
5684
+ "default": "''",
5685
+ "fieldName": "title"
5686
+ },
5687
+ {
5688
+ "name": "name",
5689
+ "type": {
5690
+ "text": "string"
5691
+ },
5692
+ "default": "''",
5693
+ "description": "The name of the checkbox, submitted as a name/value pair with form data.",
5694
+ "fieldName": "name"
5695
+ },
5696
+ {
5697
+ "name": "value",
5698
+ "type": {
5699
+ "text": "string | null"
5700
+ },
5701
+ "description": "The value of the checkbox, submitted as a name/value pair with form data.",
5702
+ "fieldName": "value"
5703
+ },
5704
+ {
5705
+ "name": "size",
5706
+ "type": {
5707
+ "text": "'small' | 'medium' | 'large'"
5708
+ },
5709
+ "default": "'medium'",
5710
+ "description": "The checkbox's size.",
5711
+ "fieldName": "size"
5712
+ },
5713
+ {
5714
+ "name": "disabled",
5715
+ "type": {
5716
+ "text": "boolean"
5717
+ },
5718
+ "default": "false",
5719
+ "description": "Disables the checkbox.",
5720
+ "fieldName": "disabled"
5721
+ },
5722
+ {
5723
+ "name": "indeterminate",
5724
+ "type": {
5725
+ "text": "boolean"
5726
+ },
5727
+ "default": "false",
5728
+ "description": "Draws the checkbox in an indeterminate state. This is usually applied to checkboxes that represents a \"select\nall/none\" behavior when associated checkboxes have a mix of checked and unchecked states.",
5729
+ "fieldName": "indeterminate"
5730
+ },
5731
+ {
5732
+ "name": "checked",
5733
+ "type": {
5734
+ "text": "boolean"
5735
+ },
5736
+ "description": "The default value of the form control. Primarily used for resetting the form control.",
5737
+ "fieldName": "defaultChecked"
5738
+ },
5739
+ {
5740
+ "name": "form",
5741
+ "type": {
5742
+ "text": "null"
5743
+ },
5744
+ "default": "null",
5745
+ "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
5746
+ "fieldName": "form"
5747
+ },
5748
+ {
5749
+ "name": "required",
5750
+ "type": {
5751
+ "text": "boolean"
5752
+ },
5753
+ "default": "false",
5754
+ "description": "Makes the checkbox a required field.",
5755
+ "fieldName": "required"
5756
+ },
5757
+ {
5758
+ "name": "hint",
5759
+ "type": {
5760
+ "text": "string"
5761
+ },
5762
+ "default": "''",
5763
+ "description": "The checkbox's hint. If you need to display HTML, use the `hint` slot instead.",
5764
+ "fieldName": "hint"
5765
+ }
5766
+ ],
5767
+ "superclass": {
5768
+ "name": "BaseFormAssociatedElement",
5769
+ "module": "/packages/radio/form-associated-element"
5770
+ },
5771
+ "tagName": "w-checkbox",
5772
+ "customElement": true,
5773
+ "modulePath": "packages/checkbox/checkbox.ts",
5774
+ "definitionPath": "packages/checkbox/checkbox.ts"
5775
+ }
5776
+ ],
5777
+ "exports": [
5778
+ {
5779
+ "kind": "js",
5780
+ "name": "WCheckbox",
5781
+ "declaration": {
5782
+ "name": "WCheckbox",
5783
+ "module": "packages/checkbox/checkbox.ts"
5784
+ }
5785
+ },
5786
+ {
5787
+ "kind": "custom-element-definition",
5788
+ "name": "w-checkbox",
5789
+ "declaration": {
5790
+ "name": "WCheckbox",
5791
+ "module": "packages/checkbox/checkbox.ts"
5792
+ }
5793
+ }
5794
+ ]
5795
+ },
5796
+ {
5797
+ "kind": "javascript-module",
5798
+ "path": "packages/checkbox/checkbox-group.ts",
5799
+ "declarations": [
5800
+ {
5801
+ "kind": "class",
5802
+ "description": "",
5803
+ "name": "WCheckboxGroup",
5804
+ "members": [],
5805
+ "superclass": {
5806
+ "name": "LitElement",
5807
+ "package": "lit"
5808
+ },
5809
+ "tagName": "w-checkbox-group",
5810
+ "customElement": true,
5811
+ "modulePath": "packages/checkbox/checkbox-group.ts",
5812
+ "definitionPath": "packages/checkbox/checkbox-group.ts"
5813
+ }
5814
+ ],
5815
+ "exports": [
5816
+ {
5817
+ "kind": "js",
5818
+ "name": "WCheckboxGroup",
5819
+ "declaration": {
5820
+ "name": "WCheckboxGroup",
5821
+ "module": "packages/checkbox/checkbox-group.ts"
5822
+ }
5823
+ },
5824
+ {
5825
+ "kind": "custom-element-definition",
5826
+ "name": "w-checkbox-group",
5827
+ "declaration": {
5828
+ "name": "WCheckboxGroup",
5829
+ "module": "packages/checkbox/checkbox-group.ts"
5830
+ }
5831
+ }
5832
+ ]
5833
+ },
5834
+ {
5835
+ "kind": "javascript-module",
5836
+ "path": "packages/slider/slider-thumb.ts",
5837
+ "declarations": [
5838
+ {
5839
+ "kind": "class",
5840
+ "description": "Component to place inside a `<w-slider>`.\n\n[See Storybook for usage examples](https://warp-ds.github.io/elements/?path=/docs/forms-slider-and-range-slider--docs)",
5841
+ "name": "WarpSliderThumb",
5842
+ "members": [
5843
+ {
5844
+ "kind": "field",
5845
+ "name": "shadowRootOptions",
5846
+ "type": {
5847
+ "text": "object"
5848
+ },
5849
+ "static": true,
5850
+ "default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true, }"
5851
+ },
5852
+ {
5853
+ "kind": "field",
5854
+ "name": "ariaLabel",
5855
+ "type": {
5856
+ "text": "string"
5857
+ },
5858
+ "attribute": "aria-label",
5859
+ "reflects": true
5860
+ },
5861
+ {
5862
+ "kind": "field",
5863
+ "name": "ariaDescription",
5864
+ "type": {
5865
+ "text": "string"
5866
+ },
5867
+ "attribute": "aria-description",
5868
+ "reflects": true
5869
+ },
5870
+ {
5871
+ "kind": "field",
5872
+ "name": "label",
5873
+ "type": {
5874
+ "text": "string"
5875
+ },
5876
+ "attribute": "label",
5877
+ "reflects": true
5878
+ },
5879
+ {
5880
+ "kind": "field",
5881
+ "name": "name",
5882
+ "type": {
5883
+ "text": "string"
5884
+ },
5885
+ "attribute": "name",
5886
+ "reflects": true
5887
+ },
5888
+ {
5889
+ "kind": "field",
5890
+ "name": "value",
5891
+ "type": {
5892
+ "text": "string"
5893
+ },
5894
+ "attribute": "value",
5895
+ "reflects": true
5896
+ },
5897
+ {
5898
+ "kind": "field",
5899
+ "name": "disabled",
5900
+ "type": {
5901
+ "text": "boolean"
5902
+ },
5903
+ "attribute": "disabled",
5904
+ "reflects": true
5905
+ },
5906
+ {
5907
+ "kind": "field",
5908
+ "name": "invalid",
5909
+ "type": {
5910
+ "text": "boolean"
5911
+ },
5912
+ "default": "false",
5913
+ "attribute": "invalid",
5914
+ "reflects": true
5915
+ },
5916
+ {
5917
+ "kind": "field",
5918
+ "name": "allowValuesOutsideRange",
5919
+ "type": {
5920
+ "text": "boolean"
5921
+ },
5922
+ "default": "false",
5923
+ "description": "Set by `<w-slider>`"
5924
+ },
5925
+ {
5926
+ "kind": "field",
5927
+ "name": "markers",
5928
+ "type": {
5929
+ "text": "string"
5930
+ },
5931
+ "description": "Set by `<w-slider>`"
5932
+ },
5933
+ {
5934
+ "kind": "field",
5935
+ "name": "required",
5936
+ "type": {
5937
+ "text": "boolean"
5938
+ },
5939
+ "description": "Set by `<w-slider>`"
5940
+ },
5941
+ {
5942
+ "kind": "field",
5943
+ "name": "step",
5944
+ "type": {
5945
+ "text": "number"
5946
+ },
5947
+ "description": "Set by `<w-slider>`"
5948
+ },
5949
+ {
5950
+ "kind": "field",
5951
+ "name": "min",
5952
+ "type": {
5953
+ "text": "string"
5954
+ },
5955
+ "description": "Set by `<w-slider>`"
5956
+ },
5957
+ {
5958
+ "kind": "field",
5959
+ "name": "max",
5960
+ "type": {
5961
+ "text": "string"
5962
+ },
5963
+ "description": "Set by `<w-slider>`"
5964
+ },
5965
+ {
5966
+ "kind": "field",
5967
+ "name": "suffix",
5968
+ "type": {
5969
+ "text": "string"
5970
+ },
5971
+ "default": "''",
5972
+ "description": "Set by `<w-slider>`"
5973
+ },
5974
+ {
5975
+ "kind": "field",
5976
+ "name": "formatter",
5977
+ "type": {
5978
+ "text": "(value: string, type: 'from' | 'to') => string"
5979
+ },
5980
+ "description": "JS hook to help you format the numeric value how you want."
5981
+ },
5982
+ {
5983
+ "kind": "field",
5984
+ "name": "range",
5985
+ "type": {
5986
+ "text": "HTMLInputElement"
5987
+ }
5988
+ },
5989
+ {
5990
+ "kind": "field",
5991
+ "name": "textfield",
5992
+ "type": {
5993
+ "text": "WarpTextField"
5994
+ }
5995
+ },
5996
+ {
5997
+ "kind": "field",
5998
+ "name": "#initialValue",
5999
+ "privacy": "private",
6000
+ "type": {
6001
+ "text": "string | null"
6002
+ },
6003
+ "default": "null"
6004
+ },
6005
+ {
6006
+ "kind": "method",
6007
+ "name": "resetFormControl",
6008
+ "return": {
6009
+ "type": {
6010
+ "text": "void"
6011
+ }
6012
+ },
6013
+ "type": {
6014
+ "text": "resetFormControl() => void"
6015
+ }
6016
+ },
6017
+ {
6018
+ "kind": "method",
6019
+ "name": "#showTooltip",
6020
+ "privacy": "private",
6021
+ "return": {
6022
+ "type": {
6023
+ "text": "void"
6024
+ }
6025
+ }
6026
+ },
6027
+ {
6028
+ "kind": "method",
6029
+ "name": "#hideTooltip",
6030
+ "privacy": "private",
6031
+ "return": {
6032
+ "type": {
6033
+ "text": "void"
6034
+ }
6035
+ }
6036
+ },
6037
+ {
6038
+ "kind": "method",
6039
+ "name": "#syncRangeValue",
6040
+ "privacy": "private",
6041
+ "return": {
6042
+ "type": {
6043
+ "text": "void"
6044
+ }
6045
+ }
6046
+ },
6047
+ {
6048
+ "kind": "method",
6049
+ "name": "#handleValidity",
6050
+ "privacy": "private",
6051
+ "parameters": [
6052
+ {
6053
+ "name": "error",
6054
+ "type": {
6055
+ "text": "string"
6056
+ }
6057
+ }
6058
+ ]
6059
+ },
6060
+ {
6061
+ "kind": "method",
6062
+ "name": "updateFieldAfterValidation",
6063
+ "type": {
6064
+ "text": "updateFieldAfterValidation() => void"
6065
+ }
6066
+ },
6067
+ {
6068
+ "kind": "method",
6069
+ "name": "#handleValueChange",
6070
+ "privacy": "private",
6071
+ "return": {
6072
+ "type": {
6073
+ "text": "Promise<{ shouldCancel: boolean; originalValue?: string }>"
6074
+ }
6075
+ },
6076
+ "parameters": [
6077
+ {
6078
+ "name": "value",
6079
+ "type": {
6080
+ "text": "string"
6081
+ }
6082
+ },
6083
+ {
6084
+ "name": "isFromTextInput",
6085
+ "type": {
6086
+ "text": "boolean"
6087
+ }
6088
+ }
6089
+ ]
6090
+ },
6091
+ {
6092
+ "kind": "method",
6093
+ "name": "#onInput",
6094
+ "privacy": "private",
6095
+ "return": {
6096
+ "type": {
6097
+ "text": "Promise<boolean>"
6098
+ }
6099
+ },
6100
+ "parameters": [
6101
+ {
6102
+ "name": "e",
6103
+ "type": {
6104
+ "text": "InputEvent | CustomEvent"
6105
+ }
6106
+ }
6107
+ ]
6108
+ },
6109
+ {
6110
+ "kind": "method",
6111
+ "name": "#onRangeSliderKeyDown",
6112
+ "privacy": "private",
6113
+ "return": {
6114
+ "type": {
6115
+ "text": "Promise<void>"
6116
+ }
6117
+ },
6118
+ "parameters": [
6119
+ {
6120
+ "name": "e",
6121
+ "type": {
6122
+ "text": "KeyboardEvent"
6123
+ }
6124
+ }
6125
+ ]
6126
+ },
6127
+ {
6128
+ "kind": "method",
6129
+ "name": "#onTextFieldFocus",
6130
+ "privacy": "private",
6131
+ "parameters": [
6132
+ {
6133
+ "name": "e"
6134
+ }
6135
+ ]
6136
+ },
6137
+ {
6138
+ "kind": "method",
6139
+ "name": "#onTextFieldBlur",
6140
+ "privacy": "private",
6141
+ "parameters": [
6142
+ {
6143
+ "name": "e"
6144
+ }
6145
+ ]
6146
+ },
6147
+ {
6148
+ "kind": "field",
6149
+ "name": "boundaryValue",
6150
+ "type": {
6151
+ "text": "string"
6152
+ },
6153
+ "readonly": true
6154
+ },
6155
+ {
6156
+ "kind": "field",
6157
+ "name": "textFieldDisplayValue",
6158
+ "description": "Value to display in the textfield (shows boundary when focused on empty value)",
6159
+ "readonly": true
6160
+ },
6161
+ {
6162
+ "kind": "field",
6163
+ "name": "tooltipDisplayValue",
6164
+ "type": {
6165
+ "text": "string | number"
6166
+ },
6167
+ "description": "Value to display in the tooltip",
6168
+ "readonly": true
6169
+ }
6170
+ ],
6171
+ "events": [
6172
+ {
6173
+ "name": "slidervalidity",
6174
+ "type": {
6175
+ "text": "CustomEvent"
6176
+ }
6177
+ }
6178
+ ],
6179
+ "attributes": [
6180
+ {
6181
+ "name": "aria-label",
6182
+ "type": {
6183
+ "text": "string"
6184
+ },
6185
+ "fieldName": "ariaLabel"
6186
+ },
6187
+ {
6188
+ "name": "aria-description",
6189
+ "type": {
6190
+ "text": "string"
6191
+ },
6192
+ "fieldName": "ariaDescription"
6193
+ },
6194
+ {
6195
+ "name": "label",
6196
+ "type": {
6197
+ "text": "string"
6198
+ },
6199
+ "fieldName": "label"
6200
+ },
6201
+ {
6202
+ "name": "name",
6203
+ "type": {
6204
+ "text": "string"
6205
+ },
6206
+ "fieldName": "name"
6207
+ },
6208
+ {
6209
+ "name": "value",
6210
+ "type": {
6211
+ "text": "string"
6212
+ },
6213
+ "fieldName": "value"
6214
+ },
6215
+ {
6216
+ "name": "disabled",
6217
+ "type": {
6218
+ "text": "boolean"
6219
+ },
6220
+ "fieldName": "disabled"
6221
+ },
6222
+ {
6223
+ "name": "invalid",
6224
+ "type": {
6225
+ "text": "boolean"
6226
+ },
6227
+ "default": "false",
6228
+ "fieldName": "invalid"
6229
+ }
6230
+ ],
6231
+ "mixins": [
6232
+ {
6233
+ "name": "FormControlMixin",
6234
+ "package": "@open-wc/form-control"
6235
+ }
6236
+ ],
6237
+ "superclass": {
6238
+ "name": "LitElement",
6239
+ "package": "lit"
6240
+ },
6241
+ "tagName": "w-slider-thumb",
6242
+ "customElement": true,
6243
+ "modulePath": "packages/slider/slider-thumb.ts",
6244
+ "definitionPath": "packages/slider/slider-thumb.ts"
6245
+ }
6246
+ ],
6247
+ "exports": [
6248
+ {
6249
+ "kind": "custom-element-definition",
6250
+ "name": "w-slider-thumb",
6251
+ "declaration": {
6252
+ "name": "WarpSliderThumb",
6253
+ "module": "packages/slider/slider-thumb.ts"
6254
+ }
6255
+ },
6256
+ {
6257
+ "kind": "js",
6258
+ "name": "WarpSliderThumb",
6259
+ "declaration": {
6260
+ "name": "WarpSliderThumb",
6261
+ "module": "packages/slider/slider-thumb.ts"
6262
+ }
6263
+ }
6264
+ ]
6265
+ },
6266
+ {
6267
+ "kind": "javascript-module",
6268
+ "path": "packages/slider/slider.ts",
6269
+ "declarations": [
6270
+ {
6271
+ "kind": "class",
6272
+ "description": "Parent component for sliders (both single and range sliders). Used in combination with a `<w-slider-thumb>`.\n\n[See Storybook for usage examples](https://warp-ds.github.io/elements/?path=/docs/forms-slider-and-range-slider--docs)",
6273
+ "name": "WarpSlider",
6274
+ "slots": [
6275
+ {
6276
+ "description": "For single sliders place a `<w-slider-thumb>` in the default slot.",
6277
+ "name": ""
6278
+ },
6279
+ {
6280
+ "description": "Label for the slider or range slider as a whole.",
6281
+ "name": "label"
6282
+ },
6283
+ {
6284
+ "description": "Optional description between the label and slider.",
6285
+ "name": "description"
6286
+ },
6287
+ {
6288
+ "description": "Range sliders need to place a `<w-slider-thumb>` in the from and to slots.",
6289
+ "name": "from"
6290
+ },
6291
+ {
6292
+ "description": "Range sliders need to place a `<w-slider-thumb>` in the from and to slots.",
6293
+ "name": "to"
6294
+ }
6295
+ ],
6296
+ "members": [
6297
+ {
6298
+ "kind": "field",
6299
+ "name": "shadowRootOptions",
6300
+ "type": {
6301
+ "text": "object"
6302
+ },
6303
+ "static": true,
6304
+ "default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true, }"
6305
+ },
6306
+ {
6307
+ "kind": "field",
6308
+ "name": "label",
6309
+ "type": {
6310
+ "text": "string"
6311
+ },
6312
+ "description": "The slider fieldset label. Required for proper accessibility.\n\nIf you need to display HTML, use the `label` slot instead.",
6313
+ "attribute": "label",
6314
+ "reflects": true
6315
+ },
6316
+ {
6317
+ "kind": "field",
6318
+ "name": "disabled",
6319
+ "type": {
6320
+ "text": "boolean"
6321
+ },
6322
+ "default": "false",
6323
+ "attribute": "disabled",
6324
+ "reflects": true
6325
+ },
6326
+ {
6327
+ "kind": "field",
6328
+ "name": "allowValuesOutsideRange",
6329
+ "type": {
6330
+ "text": "boolean"
6331
+ },
6332
+ "default": "false",
6333
+ "attribute": "allow-values-outside-range"
6334
+ },
6335
+ {
6336
+ "kind": "field",
6337
+ "name": "error",
6338
+ "type": {
6339
+ "text": "string"
6340
+ },
6341
+ "default": "''",
6342
+ "attribute": "error",
6343
+ "reflects": true
6344
+ },
6345
+ {
6346
+ "kind": "field",
6347
+ "name": "helpText",
6348
+ "type": {
6349
+ "text": "string"
6350
+ },
6351
+ "default": "''",
6352
+ "attribute": "help-text",
6353
+ "reflects": true
6354
+ },
6355
+ {
6356
+ "kind": "field",
6357
+ "name": "invalid",
6358
+ "type": {
6359
+ "text": "boolean"
6360
+ },
6361
+ "default": "false",
6362
+ "attribute": "invalid",
6363
+ "reflects": true
6364
+ },
6365
+ {
6366
+ "kind": "field",
6367
+ "name": "required",
6368
+ "type": {
6369
+ "text": "boolean"
6370
+ },
6371
+ "default": "false",
6372
+ "description": "Ensures a child slider thumb has a value before allowing the containing form to submit.",
6373
+ "attribute": "required",
6374
+ "reflects": true
6375
+ },
6376
+ {
6377
+ "kind": "field",
6378
+ "name": "min",
6379
+ "type": {
6380
+ "text": "string"
6381
+ },
6382
+ "attribute": "min",
6383
+ "reflects": true
6384
+ },
6385
+ {
6386
+ "kind": "field",
6387
+ "name": "max",
6388
+ "type": {
6389
+ "text": "string"
6390
+ },
6391
+ "attribute": "max",
6392
+ "reflects": true
6393
+ },
6394
+ {
6395
+ "kind": "field",
6396
+ "name": "markers",
6397
+ "type": {
6398
+ "text": "number"
6399
+ },
6400
+ "description": "Pass a value similar to step to create visual markers at that interval",
6401
+ "attribute": "markers",
6402
+ "reflects": true
6403
+ },
6404
+ {
6405
+ "kind": "field",
6406
+ "name": "step",
6407
+ "type": {
6408
+ "text": "number"
6409
+ },
6410
+ "attribute": "step",
6411
+ "reflects": true
6412
+ },
6413
+ {
6414
+ "kind": "field",
6415
+ "name": "suffix",
6416
+ "type": {
6417
+ "text": "string"
6418
+ },
6419
+ "default": "''",
6420
+ "description": "Suffix used in text input fields and for the min and max values of the slider.",
6421
+ "attribute": "suffix",
6422
+ "reflects": true
6423
+ },
6424
+ {
6425
+ "kind": "field",
6426
+ "name": "formatter",
6427
+ "type": {
6428
+ "text": "(value: string, type: 'to' | 'from') => string"
6429
+ },
6430
+ "description": "Function to format the to- and from labels and value in the slider thumb tooltip."
6431
+ },
6432
+ {
6433
+ "kind": "field",
6434
+ "name": "_invalidMessage",
6435
+ "type": {
6436
+ "text": "string"
6437
+ },
6438
+ "default": "''"
6439
+ },
6440
+ {
6441
+ "kind": "field",
6442
+ "name": "_hasInternalError",
6443
+ "type": {
6444
+ "text": "boolean"
6445
+ },
6446
+ "default": "false"
6447
+ },
6448
+ {
6449
+ "kind": "method",
6450
+ "name": "#syncSliderThumbs",
6451
+ "privacy": "private",
6452
+ "return": {
6453
+ "type": {
6454
+ "text": "void"
6455
+ }
6456
+ }
6457
+ },
6458
+ {
6459
+ "kind": "field",
6460
+ "name": "edgeMin",
6461
+ "readonly": true
6462
+ },
6463
+ {
6464
+ "kind": "field",
6465
+ "name": "edgeMax",
6466
+ "readonly": true
6467
+ },
6468
+ {
6469
+ "kind": "method",
6470
+ "name": "#onInput",
6471
+ "privacy": "private",
6472
+ "parameters": [
6473
+ {
6474
+ "name": "e",
6475
+ "type": {
6476
+ "text": "InputEvent"
6477
+ }
6478
+ }
6479
+ ]
6480
+ },
6481
+ {
6482
+ "kind": "method",
6483
+ "name": "#doValidation",
6484
+ "privacy": "private"
6485
+ },
6486
+ {
6487
+ "kind": "method",
6488
+ "name": "#onSliderValidity",
6489
+ "privacy": "private",
6490
+ "parameters": [
6491
+ {
6492
+ "name": "e",
6493
+ "type": {
6494
+ "text": "CustomEvent"
6495
+ }
6496
+ }
6497
+ ]
6498
+ },
6499
+ {
6500
+ "kind": "method",
6501
+ "name": "#getEdgeValue",
6502
+ "privacy": "private",
6503
+ "return": {
6504
+ "type": {
6505
+ "text": "string"
6506
+ }
6507
+ },
6508
+ "parameters": [
6509
+ {
6510
+ "name": "boundary",
6511
+ "type": {
6512
+ "text": "string"
6513
+ }
6514
+ },
6515
+ {
6516
+ "name": "input",
6517
+ "type": {
6518
+ "text": "WarpSliderThumb"
6519
+ }
6520
+ }
6521
+ ]
6522
+ },
6523
+ {
6524
+ "kind": "method",
6525
+ "name": "#updateActiveTrack",
6526
+ "privacy": "private",
6527
+ "parameters": [
6528
+ {
6529
+ "name": "input",
6530
+ "type": {
6531
+ "text": "WarpSliderThumb"
6532
+ }
6533
+ }
6534
+ ],
6535
+ "description": "We use CSS variables to fill the active track with a background color."
6536
+ },
6537
+ {
6538
+ "kind": "field",
6539
+ "name": "componentHasError",
6540
+ "type": {
6541
+ "text": "boolean"
6542
+ },
6543
+ "readonly": true
6544
+ },
6545
+ {
6546
+ "kind": "field",
6547
+ "name": "errorText",
6548
+ "type": {
6549
+ "text": "string"
6550
+ },
6551
+ "readonly": true
6552
+ }
6553
+ ],
6554
+ "attributes": [
6555
+ {
6556
+ "name": "label",
6557
+ "type": {
6558
+ "text": "string"
6559
+ },
6560
+ "description": "The slider fieldset label. Required for proper accessibility.\n\nIf you need to display HTML, use the `label` slot instead.",
6561
+ "fieldName": "label"
6562
+ },
6563
+ {
6564
+ "name": "disabled",
6565
+ "type": {
6566
+ "text": "boolean"
6567
+ },
6568
+ "default": "false",
6569
+ "fieldName": "disabled"
6570
+ },
6571
+ {
6572
+ "name": "allow-values-outside-range",
6573
+ "type": {
6574
+ "text": "boolean"
6575
+ },
6576
+ "default": "false",
6577
+ "fieldName": "allowValuesOutsideRange"
6578
+ },
6579
+ {
6580
+ "name": "error",
6581
+ "type": {
6582
+ "text": "string"
6583
+ },
6584
+ "default": "''",
6585
+ "fieldName": "error"
6586
+ },
6587
+ {
6588
+ "name": "help-text",
6589
+ "type": {
6590
+ "text": "string"
6591
+ },
6592
+ "default": "''",
6593
+ "fieldName": "helpText"
6594
+ },
6595
+ {
6596
+ "name": "invalid",
6597
+ "type": {
6598
+ "text": "boolean"
6599
+ },
6600
+ "default": "false",
6601
+ "fieldName": "invalid"
6602
+ },
6603
+ {
6604
+ "name": "required",
6605
+ "type": {
6606
+ "text": "boolean"
6607
+ },
6608
+ "default": "false",
6609
+ "description": "Ensures a child slider thumb has a value before allowing the containing form to submit.",
6610
+ "fieldName": "required"
6611
+ },
6612
+ {
6613
+ "name": "min",
6614
+ "type": {
6615
+ "text": "string"
6616
+ },
6617
+ "fieldName": "min"
6618
+ },
6619
+ {
6620
+ "name": "max",
6621
+ "type": {
6622
+ "text": "string"
6623
+ },
6624
+ "fieldName": "max"
6625
+ },
6626
+ {
6627
+ "name": "markers",
6628
+ "type": {
6629
+ "text": "number"
6630
+ },
6631
+ "description": "Pass a value similar to step to create visual markers at that interval",
6632
+ "fieldName": "markers"
6633
+ },
6634
+ {
6635
+ "name": "step",
6636
+ "type": {
6637
+ "text": "number"
6638
+ },
6639
+ "fieldName": "step"
6640
+ },
6641
+ {
6642
+ "name": "suffix",
6643
+ "type": {
6644
+ "text": "string"
6645
+ },
6646
+ "default": "''",
6647
+ "description": "Suffix used in text input fields and for the min and max values of the slider.",
6648
+ "fieldName": "suffix"
6649
+ }
6650
+ ],
6651
+ "superclass": {
6652
+ "name": "LitElement",
6653
+ "package": "lit"
6654
+ },
6655
+ "tagName": "w-slider",
6656
+ "customElement": true,
6657
+ "modulePath": "packages/slider/slider.ts",
6658
+ "definitionPath": "packages/slider/slider.ts"
6659
+ }
6660
+ ],
6661
+ "exports": [
6662
+ {
6663
+ "kind": "custom-element-definition",
6664
+ "name": "w-slider",
6665
+ "declaration": {
6666
+ "name": "WarpSlider",
6667
+ "module": "packages/slider/slider.ts"
6668
+ }
6669
+ },
6670
+ {
6671
+ "kind": "js",
6672
+ "name": "WarpSlider",
6673
+ "declaration": {
6674
+ "name": "WarpSlider",
6675
+ "module": "packages/slider/slider.ts"
6676
+ }
6677
+ }
6678
+ ]
6679
+ },
6680
+ {
6681
+ "kind": "javascript-module",
6682
+ "path": "packages/stepindicator/index.ts",
6683
+ "declarations": [
6684
+ {
6685
+ "kind": "class",
6686
+ "description": "Steps are used to show progress through a process or to guide users through a multi-step task.\n\n[See Storybook for usage examples](https://warp-ds.github.io/elements/?path=/docs/components-steps--docs)",
6687
+ "name": "WarpStepIndicator",
6688
+ "members": [
6689
+ {
6690
+ "kind": "field",
6691
+ "name": "horizontal",
6692
+ "type": {
6693
+ "text": "boolean"
6694
+ },
6695
+ "default": "false",
6696
+ "attribute": "horizontal",
6697
+ "reflects": true
6698
+ },
6699
+ {
6700
+ "kind": "field",
6701
+ "name": "right",
6702
+ "type": {
6703
+ "text": "boolean"
6704
+ },
6705
+ "default": "false",
6706
+ "attribute": "right",
6707
+ "reflects": true
6708
+ },
6709
+ {
6710
+ "kind": "method",
6711
+ "name": "updateStepsContext",
6712
+ "type": {
6713
+ "text": "updateStepsContext() => void"
6714
+ }
6715
+ }
6716
+ ],
6717
+ "attributes": [
6718
+ {
6719
+ "name": "horizontal",
6720
+ "type": {
6721
+ "text": "boolean"
6722
+ },
6723
+ "default": "false",
6724
+ "fieldName": "horizontal"
6725
+ },
6726
+ {
6727
+ "name": "right",
6728
+ "type": {
6729
+ "text": "boolean"
6730
+ },
6731
+ "default": "false",
6732
+ "fieldName": "right"
6733
+ }
6734
+ ],
6735
+ "superclass": {
6736
+ "name": "LitElement",
6737
+ "package": "lit"
6738
+ },
6739
+ "tagName": "w-step-indicator",
6740
+ "customElement": true,
6741
+ "modulePath": "packages/stepindicator/index.ts",
6742
+ "definitionPath": "packages/stepindicator/index.ts"
6743
+ },
6744
+ {
6745
+ "kind": "class",
6746
+ "description": "Individual step component that shows a single step in a process",
6747
+ "name": "WarpStep",
6748
+ "members": [
6749
+ {
6750
+ "kind": "field",
6751
+ "name": "active",
6752
+ "type": {
6753
+ "text": "boolean"
6754
+ },
6755
+ "default": "false",
6756
+ "attribute": "active",
6757
+ "reflects": true
6758
+ },
6759
+ {
6760
+ "kind": "field",
6761
+ "name": "completed",
6762
+ "type": {
6763
+ "text": "boolean"
6764
+ },
6765
+ "default": "false",
6766
+ "attribute": "completed",
6767
+ "reflects": true
6768
+ },
6769
+ {
6770
+ "kind": "field",
6771
+ "name": "_context",
6772
+ "type": {
6773
+ "text": "StepsContext"
6774
+ },
6775
+ "privacy": "private",
6776
+ "default": "{ horizontal: false, right: false, isLast: false, isFirst: false }"
6777
+ },
6778
+ {
6779
+ "kind": "method",
6780
+ "name": "setContext",
6781
+ "parameters": [
6782
+ {
6783
+ "name": "context",
6784
+ "type": {
6785
+ "text": "StepsContext"
6786
+ }
6787
+ }
6788
+ ],
6789
+ "type": {
6790
+ "text": "setContext(context: StepsContext) => void"
6791
+ }
6792
+ },
6793
+ {
6794
+ "kind": "method",
6795
+ "name": "getAriaLabel",
6796
+ "type": {
6797
+ "text": "getAriaLabel() => void"
6798
+ }
6799
+ }
6800
+ ],
6801
+ "attributes": [
6802
+ {
6803
+ "name": "active",
6804
+ "type": {
6805
+ "text": "boolean"
6806
+ },
6807
+ "default": "false",
6808
+ "fieldName": "active"
6809
+ },
6810
+ {
6811
+ "name": "completed",
6812
+ "type": {
6813
+ "text": "boolean"
6814
+ },
6815
+ "default": "false",
6816
+ "fieldName": "completed"
6817
+ }
6818
+ ],
6819
+ "superclass": {
6820
+ "name": "LitElement",
6821
+ "package": "lit"
6822
+ },
6823
+ "tagName": "w-step",
6824
+ "customElement": true,
6825
+ "modulePath": "packages/stepindicator/index.ts",
6826
+ "definitionPath": "packages/stepindicator/index.ts"
6827
+ }
6828
+ ],
6829
+ "exports": [
6830
+ {
6831
+ "kind": "custom-element-definition",
6832
+ "name": "w-step-indicator",
6833
+ "declaration": {
6834
+ "name": "WarpStepIndicator",
6835
+ "module": "packages/stepindicator/index.ts"
6836
+ }
6837
+ },
6838
+ {
6839
+ "kind": "custom-element-definition",
6840
+ "name": "w-step",
6841
+ "declaration": {
6842
+ "name": "WarpStep",
6843
+ "module": "packages/stepindicator/index.ts"
6844
+ }
6845
+ },
6846
+ {
6847
+ "kind": "js",
6848
+ "name": "WarpStepIndicator",
6849
+ "declaration": {
6850
+ "name": "WarpStepIndicator",
6851
+ "module": "packages/stepindicator/index.ts"
6852
+ }
6853
+ },
6854
+ {
6855
+ "kind": "js",
6856
+ "name": "WarpStep",
6857
+ "declaration": {
6858
+ "name": "WarpStep",
6859
+ "module": "packages/stepindicator/index.ts"
6860
+ }
6861
+ }
6862
+ ]
6863
+ },
6864
+ {
6865
+ "kind": "javascript-module",
6866
+ "path": "packages/tabs/tab.ts",
6867
+ "declarations": [
6868
+ {
6869
+ "kind": "class",
6870
+ "description": "Individual tab component used within w-tabs container.\n\n[See Storybook for usage examples](https://warp-ds.github.io/elements/?path=/docs/tabs--docs)",
6871
+ "name": "WarpTab",
6872
+ "members": [
6873
+ {
6874
+ "kind": "field",
6875
+ "name": "for",
6876
+ "type": {
6877
+ "text": "string"
6878
+ },
6879
+ "default": "''",
6880
+ "attribute": "for",
6881
+ "reflects": true
6882
+ },
6883
+ {
6884
+ "kind": "field",
6885
+ "name": "label",
6886
+ "type": {
6887
+ "text": "string"
6888
+ },
6889
+ "default": "''",
6890
+ "attribute": "label",
6891
+ "reflects": true
6892
+ },
6893
+ {
6894
+ "kind": "field",
6895
+ "name": "active",
6896
+ "type": {
6897
+ "text": "boolean"
6898
+ },
6899
+ "default": "false",
6900
+ "attribute": "active",
6901
+ "reflects": true
6902
+ },
6903
+ {
6904
+ "kind": "field",
6905
+ "name": "over",
6906
+ "type": {
6907
+ "text": "boolean"
6908
+ },
6909
+ "default": "false",
6910
+ "attribute": "over",
6911
+ "reflects": true
6912
+ },
6913
+ {
6914
+ "kind": "field",
6915
+ "name": "tabClass",
6916
+ "type": {
6917
+ "text": "string"
6918
+ },
6919
+ "default": "''",
6920
+ "attribute": "tab-class",
6921
+ "reflects": true
6922
+ },
6923
+ {
6924
+ "kind": "field",
6925
+ "name": "_classes",
6926
+ "privacy": "private",
6927
+ "readonly": true
6928
+ },
6929
+ {
6930
+ "kind": "field",
6931
+ "name": "_hasChildren",
6932
+ "privacy": "private",
6933
+ "readonly": true
6934
+ }
6935
+ ],
6936
+ "attributes": [
6937
+ {
6938
+ "name": "for",
6939
+ "type": {
6940
+ "text": "string"
6941
+ },
6942
+ "default": "''",
6943
+ "fieldName": "for"
6944
+ },
6945
+ {
6946
+ "name": "label",
6947
+ "type": {
6948
+ "text": "string"
6949
+ },
6950
+ "default": "''",
6951
+ "fieldName": "label"
6952
+ },
6953
+ {
6954
+ "name": "active",
6955
+ "type": {
6956
+ "text": "boolean"
6957
+ },
6958
+ "default": "false",
6959
+ "fieldName": "active"
6960
+ },
6961
+ {
6962
+ "name": "over",
6963
+ "type": {
6964
+ "text": "boolean"
6965
+ },
6966
+ "default": "false",
6967
+ "fieldName": "over"
6968
+ },
6969
+ {
6970
+ "name": "tab-class",
6971
+ "type": {
6972
+ "text": "string"
6973
+ },
6974
+ "default": "''",
6975
+ "fieldName": "tabClass"
6976
+ }
6977
+ ],
6978
+ "superclass": {
6979
+ "name": "LitElement",
6980
+ "package": "lit"
6981
+ },
6982
+ "tagName": "w-tab",
6983
+ "customElement": true,
6984
+ "modulePath": "packages/tabs/tab.ts",
6985
+ "definitionPath": "packages/tabs/tab.ts"
6986
+ }
6987
+ ],
6988
+ "exports": [
6989
+ {
6990
+ "kind": "js",
6991
+ "name": "WarpTab",
6992
+ "declaration": {
6993
+ "name": "WarpTab",
6994
+ "module": "packages/tabs/tab.ts"
6995
+ }
6996
+ },
6997
+ {
6998
+ "kind": "custom-element-definition",
6999
+ "name": "w-tab",
7000
+ "declaration": {
7001
+ "name": "WarpTab",
7002
+ "module": "packages/tabs/tab.ts"
7003
+ }
7004
+ }
7005
+ ]
7006
+ },
7007
+ {
7008
+ "kind": "javascript-module",
7009
+ "path": "packages/tabs/tab-panel.ts",
7010
+ "declarations": [
7011
+ {
7012
+ "kind": "class",
7013
+ "description": "Tab panel component that holds content for individual tabs.\nEach tab panel should have a name that matches a corresponding tab.\n\n[See Storybook for usage examples](https://warp-ds.github.io/elements/?path=/docs/tabs--docs)",
7014
+ "name": "WarpTabPanel",
7015
+ "members": [
7016
+ {
7017
+ "kind": "field",
7018
+ "name": "hidden",
7019
+ "type": {
7020
+ "text": "boolean"
7021
+ },
7022
+ "default": "true",
7023
+ "attribute": "hidden",
7024
+ "reflects": true
7025
+ },
7026
+ {
7027
+ "kind": "method",
7028
+ "name": "_syncA11yAttributes",
7029
+ "privacy": "private"
7030
+ }
7031
+ ],
7032
+ "attributes": [
7033
+ {
7034
+ "name": "hidden",
7035
+ "type": {
7036
+ "text": "boolean"
7037
+ },
7038
+ "default": "true",
7039
+ "fieldName": "hidden"
7040
+ }
7041
+ ],
7042
+ "superclass": {
7043
+ "name": "LitElement",
7044
+ "package": "lit"
7045
+ },
7046
+ "tagName": "w-tab-panel",
7047
+ "customElement": true,
7048
+ "modulePath": "packages/tabs/tab-panel.ts",
7049
+ "definitionPath": "packages/tabs/tab-panel.ts"
7050
+ }
7051
+ ],
7052
+ "exports": [
7053
+ {
7054
+ "kind": "js",
7055
+ "name": "WarpTabPanel",
7056
+ "declaration": {
7057
+ "name": "WarpTabPanel",
7058
+ "module": "packages/tabs/tab-panel.ts"
7059
+ }
7060
+ },
7061
+ {
7062
+ "kind": "custom-element-definition",
7063
+ "name": "w-tab-panel",
7064
+ "declaration": {
7065
+ "name": "WarpTabPanel",
7066
+ "module": "packages/tabs/tab-panel.ts"
7067
+ }
7068
+ }
7069
+ ]
7070
+ },
7071
+ {
7072
+ "kind": "javascript-module",
7073
+ "path": "packages/tabs/tabs.ts",
7074
+ "declarations": [
7075
+ {
7076
+ "kind": "class",
7077
+ "description": "Tabs are used to organize content by grouping similar information on the same page.\n\n[See Storybook for usage examples](https://warp-ds.github.io/elements/?path=/docs/tabs--docs)",
7078
+ "name": "WarpTabs",
7079
+ "members": [
7080
+ {
7081
+ "kind": "field",
7082
+ "name": "active",
7083
+ "type": {
7084
+ "text": "string"
7085
+ },
7086
+ "default": "''",
7087
+ "attribute": "active",
7088
+ "reflects": true
7089
+ },
7090
+ {
7091
+ "kind": "field",
7092
+ "name": "tabClass",
7093
+ "type": {
7094
+ "text": "string"
7095
+ },
7096
+ "default": "''",
7097
+ "attribute": "tab-class",
7098
+ "reflects": true
7099
+ },
7100
+ {
7101
+ "kind": "field",
7102
+ "name": "tabList",
7103
+ "type": {
7104
+ "text": "HTMLElement"
7105
+ },
7106
+ "privacy": "private"
7107
+ },
7108
+ {
7109
+ "kind": "field",
7110
+ "name": "selectionIndicator",
7111
+ "type": {
7112
+ "text": "HTMLElement"
7113
+ },
7114
+ "privacy": "private"
7115
+ },
7116
+ {
7117
+ "kind": "field",
7118
+ "name": "_activeTabFor",
7119
+ "type": {
7120
+ "text": "string"
7121
+ },
7122
+ "privacy": "private",
7123
+ "default": "''"
7124
+ },
7125
+ {
7126
+ "kind": "field",
7127
+ "name": "_resizeObserver",
7128
+ "type": {
7129
+ "text": "ResizeObserver | undefined"
7130
+ },
7131
+ "privacy": "private"
7132
+ },
7133
+ {
7134
+ "kind": "field",
7135
+ "name": "_updateSelectionIndicatorDebounced",
7136
+ "privacy": "private"
7137
+ },
7138
+ {
7139
+ "kind": "field",
7140
+ "name": "_assignSlots",
7141
+ "privacy": "private"
7142
+ },
7143
+ {
7144
+ "kind": "field",
7145
+ "name": "tabs",
7146
+ "readonly": true
7147
+ },
7148
+ {
7149
+ "kind": "field",
7150
+ "name": "activeTab",
7151
+ "readonly": true
7152
+ },
7153
+ {
7154
+ "kind": "method",
7155
+ "name": "_initializeActiveTab",
7156
+ "privacy": "private"
7157
+ },
7158
+ {
7159
+ "kind": "field",
7160
+ "name": "_handleTabClick",
7161
+ "privacy": "private"
7162
+ },
7163
+ {
7164
+ "kind": "method",
7165
+ "name": "_notifyTabChange",
7166
+ "privacy": "private"
7167
+ },
7168
+ {
7169
+ "kind": "method",
7170
+ "name": "updateSelectionIndicator",
7171
+ "privacy": "private"
7172
+ },
7173
+ {
7174
+ "kind": "method",
7175
+ "name": "updatePanels",
7176
+ "privacy": "private"
7177
+ },
7178
+ {
7179
+ "kind": "field",
7180
+ "name": "_handleKeyDown",
7181
+ "privacy": "private"
7182
+ },
7183
+ {
7184
+ "kind": "field",
7185
+ "name": "_tabCount",
7186
+ "privacy": "private",
7187
+ "readonly": true
7188
+ },
7189
+ {
7190
+ "kind": "field",
7191
+ "name": "_gridClass",
7192
+ "privacy": "private",
7193
+ "readonly": true
7194
+ }
7195
+ ],
7196
+ "events": [
7197
+ {
7198
+ "name": "change",
7199
+ "type": {
7200
+ "text": "CustomEvent"
7201
+ }
7202
+ }
7203
+ ],
7204
+ "attributes": [
7205
+ {
7206
+ "name": "active",
7207
+ "type": {
7208
+ "text": "string"
7209
+ },
7210
+ "default": "''",
7211
+ "fieldName": "active"
7212
+ },
7213
+ {
7214
+ "name": "tab-class",
7215
+ "type": {
7216
+ "text": "string"
7217
+ },
7218
+ "default": "''",
7219
+ "fieldName": "tabClass"
7220
+ }
7221
+ ],
7222
+ "superclass": {
7223
+ "name": "LitElement",
7224
+ "package": "lit"
7225
+ },
7226
+ "tagName": "w-tabs",
7227
+ "customElement": true,
7228
+ "modulePath": "packages/tabs/tabs.ts",
7229
+ "definitionPath": "packages/tabs/tabs.ts"
7230
+ }
7231
+ ],
7232
+ "exports": [
7233
+ {
7234
+ "kind": "js",
7235
+ "name": "WarpTabs",
7236
+ "declaration": {
7237
+ "name": "WarpTabs",
7238
+ "module": "packages/tabs/tabs.ts"
7239
+ }
7240
+ },
7241
+ {
7242
+ "kind": "custom-element-definition",
7243
+ "name": "w-tabs",
7244
+ "declaration": {
7245
+ "name": "WarpTabs",
7246
+ "module": "packages/tabs/tabs.ts"
7247
+ }
7248
+ }
7249
+ ]
7250
+ },
7251
+ {
7252
+ "kind": "javascript-module",
7253
+ "path": "packages/tabs/index.ts",
7254
+ "declarations": [],
7255
+ "exports": [
7256
+ {
7257
+ "kind": "js",
7258
+ "name": "WarpTab",
7259
+ "declaration": {
7260
+ "name": "WarpTab",
7261
+ "module": "./tab.js"
7262
+ }
7263
+ },
7264
+ {
7265
+ "kind": "js",
7266
+ "name": "WarpTabPanel",
7267
+ "declaration": {
7268
+ "name": "WarpTabPanel",
7269
+ "module": "./tab-panel.js"
7270
+ }
7271
+ },
7272
+ {
7273
+ "kind": "js",
7274
+ "name": "WarpTabs",
7275
+ "declaration": {
7276
+ "name": "WarpTabs",
7277
+ "module": "./tabs.js"
7278
+ }
7279
+ }
7280
+ ]
7281
+ },
7282
+ {
7283
+ "kind": "javascript-module",
7284
+ "path": "packages/textarea/textarea.ts",
7285
+ "declarations": [
7286
+ {
7287
+ "kind": "class",
7288
+ "description": "A single line text input element.\n\n[See Storybook for usage examples](https://warp-ds.github.io/elements/?path=/docs/forms-textfield--docs)",
7289
+ "name": "WarpTextarea",
7290
+ "members": [
7291
+ {
7292
+ "kind": "field",
7293
+ "name": "shadowRootOptions",
7294
+ "type": {
7295
+ "text": "object"
7296
+ },
7297
+ "static": true,
7298
+ "default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true, }"
7299
+ },
7300
+ {
7301
+ "kind": "field",
7302
+ "name": "disabled",
7303
+ "type": {
7304
+ "text": "boolean"
7305
+ },
7306
+ "attribute": "disabled",
7307
+ "reflects": true
7308
+ },
7309
+ {
7310
+ "kind": "field",
7311
+ "name": "invalid",
7312
+ "type": {
7313
+ "text": "boolean"
7314
+ },
7315
+ "attribute": "invalid",
7316
+ "reflects": true
7317
+ },
7318
+ {
7319
+ "kind": "field",
7320
+ "name": "label",
7321
+ "type": {
7322
+ "text": "string"
7323
+ },
7324
+ "attribute": "label",
7325
+ "reflects": true
7326
+ },
7327
+ {
7328
+ "kind": "field",
7329
+ "name": "helpText",
7330
+ "type": {
7331
+ "text": "string"
7332
+ },
7333
+ "attribute": "help-text",
7334
+ "reflects": true
7335
+ },
7336
+ {
7337
+ "kind": "field",
7338
+ "name": "maxRows",
7339
+ "type": {
7340
+ "text": "number"
7341
+ },
7342
+ "attribute": "maximum-rows",
7343
+ "reflects": true
7344
+ },
7345
+ {
7346
+ "kind": "field",
7347
+ "name": "minRows",
7348
+ "type": {
7349
+ "text": "number"
7350
+ },
7351
+ "attribute": "minimum-rows",
7352
+ "reflects": true
7353
+ },
7354
+ {
7355
+ "kind": "field",
7356
+ "name": "name",
7357
+ "type": {
7358
+ "text": "string"
7359
+ },
7360
+ "attribute": "name"
7361
+ },
7362
+ {
7363
+ "kind": "field",
7364
+ "name": "placeholder",
7365
+ "type": {
7366
+ "text": "string"
7367
+ },
7368
+ "attribute": "placeholder"
7369
+ },
7370
+ {
7371
+ "kind": "field",
7372
+ "name": "readOnly",
7373
+ "type": {
7374
+ "text": "boolean"
7375
+ },
7376
+ "deprecated": "Use the native readonly attribute instead. Here for API consistency with `w-textfield`.",
7377
+ "attribute": "read-only",
7378
+ "reflects": true
7379
+ },
7380
+ {
7381
+ "kind": "field",
7382
+ "name": "readonly",
7383
+ "type": {
7384
+ "text": "boolean"
7385
+ },
7386
+ "attribute": "readonly",
7387
+ "reflects": true
7388
+ },
7389
+ {
7390
+ "kind": "field",
7391
+ "name": "required",
7392
+ "type": {
7393
+ "text": "boolean"
7394
+ },
7395
+ "attribute": "required",
7396
+ "reflects": true
7397
+ },
7398
+ {
7399
+ "kind": "field",
7400
+ "name": "value",
7401
+ "type": {
7402
+ "text": "string"
7403
+ },
7404
+ "attribute": "value",
7405
+ "reflects": true
7406
+ },
7407
+ {
7408
+ "kind": "field",
7409
+ "name": "optional",
7410
+ "type": {
7411
+ "text": "boolean"
7412
+ },
7413
+ "attribute": "optional",
7414
+ "reflects": true
7415
+ },
7416
+ {
7417
+ "kind": "field",
7418
+ "name": "minHeight"
7419
+ },
7420
+ {
7421
+ "kind": "field",
7422
+ "name": "maxHeight"
7423
+ },
7424
+ {
7425
+ "kind": "field",
7426
+ "name": "#initialValue",
7427
+ "privacy": "private",
7428
+ "type": {
7429
+ "text": "string | null"
7430
+ },
7431
+ "default": "null"
7432
+ },
7433
+ {
7434
+ "kind": "method",
7435
+ "name": "resetFormControl",
7436
+ "return": {
7437
+ "type": {
7438
+ "text": "void"
7439
+ }
7440
+ },
7441
+ "type": {
7442
+ "text": "resetFormControl() => void"
7443
+ }
7444
+ },
7445
+ {
7446
+ "kind": "method",
7447
+ "name": "handler",
7448
+ "parameters": [
7449
+ {
7450
+ "name": "e",
7451
+ "type": {
7452
+ "text": "InputEvent"
7453
+ }
7454
+ }
7455
+ ],
7456
+ "type": {
7457
+ "text": "handler(e: InputEvent) => void"
7458
+ }
7459
+ },
7460
+ {
7461
+ "kind": "method",
7462
+ "name": "#resize",
7463
+ "privacy": "private",
7464
+ "parameters": [
7465
+ {
7466
+ "name": "target",
7467
+ "type": {
7468
+ "text": "HTMLTextAreaElement"
7469
+ }
7470
+ }
7471
+ ],
7472
+ "description": "Calculate the new height for the area on input"
7473
+ }
7474
+ ],
7475
+ "attributes": [
7476
+ {
7477
+ "name": "disabled",
7478
+ "type": {
7479
+ "text": "boolean"
7480
+ },
7481
+ "fieldName": "disabled"
7482
+ },
7483
+ {
7484
+ "name": "invalid",
7485
+ "type": {
7486
+ "text": "boolean"
7487
+ },
7488
+ "fieldName": "invalid"
7489
+ },
7490
+ {
7491
+ "name": "label",
7492
+ "type": {
7493
+ "text": "string"
7494
+ },
7495
+ "fieldName": "label"
7496
+ },
7497
+ {
7498
+ "name": "help-text",
7499
+ "type": {
7500
+ "text": "string"
7501
+ },
7502
+ "fieldName": "helpText"
7503
+ },
7504
+ {
7505
+ "name": "maximum-rows",
7506
+ "type": {
7507
+ "text": "number"
7508
+ },
7509
+ "fieldName": "maxRows"
7510
+ },
7511
+ {
7512
+ "name": "minimum-rows",
7513
+ "type": {
7514
+ "text": "number"
7515
+ },
7516
+ "fieldName": "minRows"
7517
+ },
7518
+ {
7519
+ "name": "name",
7520
+ "type": {
7521
+ "text": "string"
7522
+ },
7523
+ "fieldName": "name"
7524
+ },
7525
+ {
7526
+ "name": "placeholder",
7527
+ "type": {
7528
+ "text": "string"
7529
+ },
7530
+ "fieldName": "placeholder"
7531
+ },
7532
+ {
7533
+ "name": "read-only",
7534
+ "type": {
7535
+ "text": "boolean"
7536
+ },
7537
+ "deprecated": "Use the native readonly attribute instead. Here for API consistency with `w-textfield`.",
7538
+ "fieldName": "readOnly"
7539
+ },
7540
+ {
7541
+ "name": "readonly",
7542
+ "type": {
7543
+ "text": "boolean"
7544
+ },
7545
+ "fieldName": "readonly"
7546
+ },
7547
+ {
7548
+ "name": "required",
7549
+ "type": {
7550
+ "text": "boolean"
7551
+ },
7552
+ "fieldName": "required"
7553
+ },
7554
+ {
7555
+ "name": "value",
7556
+ "type": {
7557
+ "text": "string"
7558
+ },
7559
+ "fieldName": "value"
7560
+ },
7561
+ {
7562
+ "name": "optional",
7563
+ "type": {
7564
+ "text": "boolean"
7565
+ },
7566
+ "fieldName": "optional"
7567
+ }
7568
+ ],
7569
+ "mixins": [
7570
+ {
7571
+ "name": "FormControlMixin",
7572
+ "package": "@open-wc/form-control"
7573
+ }
7574
+ ],
7575
+ "superclass": {
7576
+ "name": "LitElement",
7577
+ "package": "lit"
7578
+ },
7579
+ "tagName": "w-textarea",
7580
+ "customElement": true,
7581
+ "modulePath": "packages/textarea/textarea.ts",
7582
+ "definitionPath": "packages/textarea/textarea.ts"
7583
+ }
7584
+ ],
7585
+ "exports": [
7586
+ {
7587
+ "kind": "custom-element-definition",
7588
+ "name": "w-textarea",
7589
+ "declaration": {
7590
+ "name": "WarpTextarea",
7591
+ "module": "packages/textarea/textarea.ts"
7592
+ }
7593
+ },
7594
+ {
7595
+ "kind": "js",
7596
+ "name": "WarpTextarea",
7597
+ "declaration": {
7598
+ "name": "WarpTextarea",
7599
+ "module": "packages/textarea/textarea.ts"
7600
+ }
7601
+ }
7602
+ ]
4387
7603
  }
4388
7604
  ]
4389
7605
  }