@prioticket/design-system-web 1.0.0

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 (93) hide show
  1. package/COMPONENT-DOCUMENTATION.md +608 -0
  2. package/README.md +229 -0
  3. package/component-documentation.json +1681 -0
  4. package/dist/components/pd-button.cjs.js +99 -0
  5. package/dist/components/pd-button.es.js +156 -0
  6. package/dist/components/pd-card.cjs.js +59 -0
  7. package/dist/components/pd-card.es.js +93 -0
  8. package/dist/components/pd-checkbox.cjs.js +85 -0
  9. package/dist/components/pd-checkbox.es.js +154 -0
  10. package/dist/components/pd-chip.cjs.js +118 -0
  11. package/dist/components/pd-chip.es.js +220 -0
  12. package/dist/components/pd-dialog.cjs.js +195 -0
  13. package/dist/components/pd-dialog.es.js +285 -0
  14. package/dist/components/pd-expandable-card.cjs.js +134 -0
  15. package/dist/components/pd-expandable-card.es.js +205 -0
  16. package/dist/components/pd-fab.cjs.js +119 -0
  17. package/dist/components/pd-fab.es.js +179 -0
  18. package/dist/components/pd-icon-button.cjs.js +159 -0
  19. package/dist/components/pd-icon-button.es.js +268 -0
  20. package/dist/components/pd-icon.cjs.js +71 -0
  21. package/dist/components/pd-icon.es.js +102 -0
  22. package/dist/components/pd-list.cjs.js +108 -0
  23. package/dist/components/pd-list.es.js +229 -0
  24. package/dist/components/pd-menu-item.cjs.js +85 -0
  25. package/dist/components/pd-menu-item.es.js +156 -0
  26. package/dist/components/pd-menu.cjs.js +42 -0
  27. package/dist/components/pd-menu.es.js +122 -0
  28. package/dist/components/pd-progress.cjs.js +72 -0
  29. package/dist/components/pd-progress.es.js +119 -0
  30. package/dist/components/pd-radio.cjs.js +38 -0
  31. package/dist/components/pd-radio.es.js +153 -0
  32. package/dist/components/pd-segmented-button.cjs.js +135 -0
  33. package/dist/components/pd-segmented-button.es.js +234 -0
  34. package/dist/components/pd-segmented-stepper.cjs.js +191 -0
  35. package/dist/components/pd-segmented-stepper.es.js +333 -0
  36. package/dist/components/pd-select.cjs.js +59 -0
  37. package/dist/components/pd-select.es.js +136 -0
  38. package/dist/components/pd-slider.cjs.js +42 -0
  39. package/dist/components/pd-slider.es.js +123 -0
  40. package/dist/components/pd-stepper.cjs.js +279 -0
  41. package/dist/components/pd-stepper.es.js +375 -0
  42. package/dist/components/pd-switch.cjs.js +57 -0
  43. package/dist/components/pd-switch.es.js +126 -0
  44. package/dist/components/pd-tabs.cjs.js +32 -0
  45. package/dist/components/pd-tabs.es.js +139 -0
  46. package/dist/components/pd-text-field.cjs.js +86 -0
  47. package/dist/components/pd-text-field.es.js +202 -0
  48. package/dist/design-system-web.css +1 -0
  49. package/dist/fonts/ProximaNova-Bold.woff2 +0 -0
  50. package/dist/fonts/ProximaNova-Extrabld.woff2 +0 -0
  51. package/dist/fonts/ProximaNova-Light.woff2 +0 -0
  52. package/dist/fonts/ProximaNova-Medium.woff2 +0 -0
  53. package/dist/fonts/ProximaNova-Regular.woff2 +0 -0
  54. package/dist/fonts/ProximaNova-Semibold.woff2 +0 -0
  55. package/dist/fonts/ProximaNovaCond-Semibold.woff2 +0 -0
  56. package/dist/fonts-only.css +59 -0
  57. package/dist/fonts.cjs.js +1 -0
  58. package/dist/fonts.es.js +1 -0
  59. package/dist/prioticket-design-system-web.cjs.js +1 -0
  60. package/dist/prioticket-design-system-web.es.js +52 -0
  61. package/dist/theme-only.css +311 -0
  62. package/dist/theme-with-fonts.cjs.js +1 -0
  63. package/dist/theme-with-fonts.css +372 -0
  64. package/dist/theme-with-fonts.es.js +2 -0
  65. package/dist/theme.cjs.js +1 -0
  66. package/dist/theme.es.js +1 -0
  67. package/dist/types/components/pd-button.d.ts +30 -0
  68. package/dist/types/components/pd-card.d.ts +8 -0
  69. package/dist/types/components/pd-checkbox.d.ts +16 -0
  70. package/dist/types/components/pd-chip.d.ts +26 -0
  71. package/dist/types/components/pd-dialog.d.ts +49 -0
  72. package/dist/types/components/pd-expandable-card.d.ts +39 -0
  73. package/dist/types/components/pd-fab.d.ts +17 -0
  74. package/dist/types/components/pd-icon-button.d.ts +24 -0
  75. package/dist/types/components/pd-icon.d.ts +9 -0
  76. package/dist/types/components/pd-list.d.ts +36 -0
  77. package/dist/types/components/pd-menu-item.d.ts +38 -0
  78. package/dist/types/components/pd-menu.d.ts +58 -0
  79. package/dist/types/components/pd-progress.d.ts +30 -0
  80. package/dist/types/components/pd-radio.d.ts +54 -0
  81. package/dist/types/components/pd-segmented-button.d.ts +53 -0
  82. package/dist/types/components/pd-segmented-stepper.d.ts +65 -0
  83. package/dist/types/components/pd-select.d.ts +46 -0
  84. package/dist/types/components/pd-slider.d.ts +43 -0
  85. package/dist/types/components/pd-stepper.d.ts +47 -0
  86. package/dist/types/components/pd-switch.d.ts +37 -0
  87. package/dist/types/components/pd-tabs.d.ts +54 -0
  88. package/dist/types/components/pd-text-field.d.ts +30 -0
  89. package/dist/types/fonts.d.ts +1 -0
  90. package/dist/types/index.d.ts +22 -0
  91. package/dist/types/theme-with-fonts.d.ts +2 -0
  92. package/dist/types/theme.d.ts +1 -0
  93. package/package.json +93 -0
@@ -0,0 +1,1681 @@
1
+ {
2
+ "package": {
3
+ "name": "@prioticket/design-system-web",
4
+ "version": "1.0.0",
5
+ "description": "Prioticket Design System Web Components Library",
6
+ "installation": "npm install @prioticket/design-system-web",
7
+ "npmrc": "@prioticket:registry=https://gitlab.prioticket.dev/api/v4/projects/193/packages/npm/\n//gitlab.prioticket.dev/api/v4/projects/193/packages/npm/:_authToken=TcG8u2Ryebr6v3x3D19y"
8
+ },
9
+ "usage": {
10
+ "import": "import { PdButton, PdCard, PdTextField } from '@prioticket/design-system-web';",
11
+ "theming": "Design tokens are automatically included. Use CSS custom properties like var(--md-sys-color-primary)",
12
+ "typescript": "Full TypeScript support with type definitions included"
13
+ },
14
+ "components": {
15
+ "src\\components\\pd-text-field": {
16
+ "name": "src\\components\\pd-text-field",
17
+ "tagName": "src\\components\\text-field",
18
+ "description": "Component description not available",
19
+ "properties": [
20
+ {
21
+ "name": "variant",
22
+ "type": "'filled' | 'outlined'",
23
+ "attribute": "variant",
24
+ "description": "Property: variant"
25
+ },
26
+ {
27
+ "name": "label",
28
+ "type": "any",
29
+ "attribute": "label",
30
+ "description": "Property: label"
31
+ },
32
+ {
33
+ "name": "placeholder",
34
+ "type": "any",
35
+ "attribute": "placeholder",
36
+ "description": "Property: placeholder"
37
+ },
38
+ {
39
+ "name": "value",
40
+ "type": "any",
41
+ "attribute": "value",
42
+ "description": "Property: value"
43
+ },
44
+ {
45
+ "name": "supportingText",
46
+ "type": "any",
47
+ "attribute": "supportingtext",
48
+ "description": "Property: supportingText"
49
+ },
50
+ {
51
+ "name": "errorText",
52
+ "type": "any",
53
+ "attribute": "errortext",
54
+ "description": "Property: errorText"
55
+ },
56
+ {
57
+ "name": "prefixText",
58
+ "type": "any",
59
+ "attribute": "prefixtext",
60
+ "description": "Property: prefixText"
61
+ },
62
+ {
63
+ "name": "suffixText",
64
+ "type": "any",
65
+ "attribute": "suffixtext",
66
+ "description": "Property: suffixText"
67
+ },
68
+ {
69
+ "name": "disabled",
70
+ "type": "any",
71
+ "attribute": "disabled",
72
+ "description": "Property: disabled"
73
+ },
74
+ {
75
+ "name": "readonly",
76
+ "type": "any",
77
+ "attribute": "readonly",
78
+ "description": "Property: readonly"
79
+ },
80
+ {
81
+ "name": "required",
82
+ "type": "any",
83
+ "attribute": "required",
84
+ "description": "Property: required"
85
+ },
86
+ {
87
+ "name": "error",
88
+ "type": "any",
89
+ "attribute": "error",
90
+ "description": "Property: error"
91
+ },
92
+ {
93
+ "name": "type",
94
+ "type": "'text' | 'email' | 'password' | 'number' | 'tel' | 'url' | 'search' | 'textarea'",
95
+ "attribute": "type",
96
+ "description": "Property: type"
97
+ },
98
+ {
99
+ "name": "rows",
100
+ "type": "any",
101
+ "attribute": "rows",
102
+ "description": "Property: rows"
103
+ },
104
+ {
105
+ "name": "cols",
106
+ "type": "any",
107
+ "attribute": "cols",
108
+ "description": "Property: cols"
109
+ },
110
+ {
111
+ "name": "leadingIcon",
112
+ "type": "any",
113
+ "attribute": "leadingicon",
114
+ "description": "Property: leadingIcon"
115
+ },
116
+ {
117
+ "name": "trailingIcon",
118
+ "type": "any",
119
+ "attribute": "trailingicon",
120
+ "description": "Property: trailingIcon"
121
+ },
122
+ {
123
+ "name": "maxlength",
124
+ "type": "any",
125
+ "attribute": "maxlength",
126
+ "description": "Property: maxlength"
127
+ },
128
+ {
129
+ "name": "minlength",
130
+ "type": "any",
131
+ "attribute": "minlength",
132
+ "description": "Property: minlength"
133
+ }
134
+ ],
135
+ "events": [],
136
+ "slots": [],
137
+ "examples": {
138
+ "basic": "<src\\components\\pd-text-field></src\\components\\pd-text-field>",
139
+ "html": "<src\\components\\pd-text-field class=\"example\"></src\\components\\pd-text-field>",
140
+ "react": "<Src\\components\\textField />",
141
+ "lit": "html`<src\\components\\pd-text-field></src\\components\\pd-text-field>`"
142
+ }
143
+ },
144
+ "src\\components\\pd-tabs": {
145
+ "name": "src\\components\\pd-tabs",
146
+ "tagName": "src\\components\\tabs",
147
+ "description": "Component description not available",
148
+ "properties": [
149
+ {
150
+ "name": "activeTabIndex",
151
+ "type": "any",
152
+ "attribute": "activetabindex",
153
+ "description": "Property: activeTabIndex"
154
+ },
155
+ {
156
+ "name": "autoActivate",
157
+ "type": "any",
158
+ "attribute": "autoactivate",
159
+ "description": "Property: autoActivate"
160
+ },
161
+ {
162
+ "name": "tabs",
163
+ "type": "TabData[]",
164
+ "attribute": "tabs",
165
+ "description": "Property: tabs"
166
+ },
167
+ {
168
+ "name": "secondary",
169
+ "type": "any",
170
+ "attribute": "secondary",
171
+ "description": "Property: secondary"
172
+ },
173
+ {
174
+ "name": "inlineIcon",
175
+ "type": "any",
176
+ "attribute": "inlineicon",
177
+ "description": "Property: inlineIcon"
178
+ },
179
+ {
180
+ "name": "icon",
181
+ "type": "any",
182
+ "attribute": "icon",
183
+ "description": "Property: icon"
184
+ },
185
+ {
186
+ "name": "ariaLabel",
187
+ "type": "any",
188
+ "attribute": "arialabel",
189
+ "description": "Property: ariaLabel"
190
+ }
191
+ ],
192
+ "events": [],
193
+ "slots": [],
194
+ "examples": {
195
+ "basic": "<src\\components\\pd-tabs></src\\components\\pd-tabs>",
196
+ "html": "<src\\components\\pd-tabs class=\"example\"></src\\components\\pd-tabs>",
197
+ "react": "<Src\\components\\tabs />",
198
+ "lit": "html`<src\\components\\pd-tabs></src\\components\\pd-tabs>`"
199
+ }
200
+ },
201
+ "src\\components\\pd-switch": {
202
+ "name": "src\\components\\pd-switch",
203
+ "tagName": "src\\components\\switch",
204
+ "description": "Component description not available",
205
+ "properties": [
206
+ {
207
+ "name": "selected",
208
+ "type": "any",
209
+ "attribute": "selected",
210
+ "description": "Property: selected"
211
+ },
212
+ {
213
+ "name": "disabled",
214
+ "type": "any",
215
+ "attribute": "disabled",
216
+ "description": "Property: disabled"
217
+ },
218
+ {
219
+ "name": "selectedIcon",
220
+ "type": "any",
221
+ "attribute": "selectedicon",
222
+ "description": "Property: selectedIcon"
223
+ },
224
+ {
225
+ "name": "unselectedIcon",
226
+ "type": "any",
227
+ "attribute": "unselectedicon",
228
+ "description": "Property: unselectedIcon"
229
+ },
230
+ {
231
+ "name": "showOnlySelectedIcon",
232
+ "type": "any",
233
+ "attribute": "showonlyselectedicon",
234
+ "description": "Property: showOnlySelectedIcon"
235
+ },
236
+ {
237
+ "name": "name",
238
+ "type": "any",
239
+ "attribute": "name",
240
+ "description": "Property: name"
241
+ },
242
+ {
243
+ "name": "value",
244
+ "type": "any",
245
+ "attribute": "value",
246
+ "description": "Property: value"
247
+ },
248
+ {
249
+ "name": "ariaLabel",
250
+ "type": "any",
251
+ "attribute": "arialabel",
252
+ "description": "Property: ariaLabel"
253
+ },
254
+ {
255
+ "name": "required",
256
+ "type": "any",
257
+ "attribute": "required",
258
+ "description": "Property: required"
259
+ }
260
+ ],
261
+ "events": [],
262
+ "slots": [],
263
+ "examples": {
264
+ "basic": "<src\\components\\pd-switch></src\\components\\pd-switch>",
265
+ "html": "<src\\components\\pd-switch class=\"example\"></src\\components\\pd-switch>",
266
+ "react": "<Src\\components\\switch />",
267
+ "lit": "html`<src\\components\\pd-switch></src\\components\\pd-switch>`"
268
+ }
269
+ },
270
+ "src\\components\\pd-stepper": {
271
+ "name": "src\\components\\pd-stepper",
272
+ "tagName": "src\\components\\stepper",
273
+ "description": "Component description not available",
274
+ "properties": [
275
+ {
276
+ "name": "steps",
277
+ "type": "StepData[]",
278
+ "attribute": "steps",
279
+ "description": "Property: steps"
280
+ },
281
+ {
282
+ "name": "currentStep",
283
+ "type": "any",
284
+ "attribute": "currentstep",
285
+ "description": "Property: currentStep"
286
+ },
287
+ {
288
+ "name": "orientation",
289
+ "type": "'horizontal' | 'vertical'",
290
+ "attribute": "orientation",
291
+ "description": "Property: orientation"
292
+ },
293
+ {
294
+ "name": "linear",
295
+ "type": "any",
296
+ "attribute": "linear",
297
+ "description": "Property: linear"
298
+ },
299
+ {
300
+ "name": "showContent",
301
+ "type": "any",
302
+ "attribute": "showcontent",
303
+ "description": "Property: showContent"
304
+ },
305
+ {
306
+ "name": "alternativeLabel",
307
+ "type": "any",
308
+ "attribute": "alternativelabel",
309
+ "description": "Property: alternativeLabel"
310
+ }
311
+ ],
312
+ "events": [],
313
+ "slots": [],
314
+ "examples": {
315
+ "basic": "<src\\components\\pd-stepper></src\\components\\pd-stepper>",
316
+ "html": "<src\\components\\pd-stepper class=\"example\"></src\\components\\pd-stepper>",
317
+ "react": "<Src\\components\\stepper />",
318
+ "lit": "html`<src\\components\\pd-stepper></src\\components\\pd-stepper>`"
319
+ }
320
+ },
321
+ "src\\components\\pd-slider": {
322
+ "name": "src\\components\\pd-slider",
323
+ "tagName": "src\\components\\slider",
324
+ "description": "Component description not available",
325
+ "properties": [
326
+ {
327
+ "name": "disabled",
328
+ "type": "any",
329
+ "attribute": "disabled",
330
+ "description": "Property: disabled"
331
+ },
332
+ {
333
+ "name": "min",
334
+ "type": "any",
335
+ "attribute": "min",
336
+ "description": "Property: min"
337
+ },
338
+ {
339
+ "name": "max",
340
+ "type": "any",
341
+ "attribute": "max",
342
+ "description": "Property: max"
343
+ },
344
+ {
345
+ "name": "value",
346
+ "type": "any",
347
+ "attribute": "value",
348
+ "description": "Property: value"
349
+ },
350
+ {
351
+ "name": "step",
352
+ "type": "any",
353
+ "attribute": "step",
354
+ "description": "Property: step"
355
+ },
356
+ {
357
+ "name": "ticks",
358
+ "type": "any",
359
+ "attribute": "ticks",
360
+ "description": "Property: ticks"
361
+ },
362
+ {
363
+ "name": "labeled",
364
+ "type": "any",
365
+ "attribute": "labeled",
366
+ "description": "Property: labeled"
367
+ },
368
+ {
369
+ "name": "valueIndicator",
370
+ "type": "any",
371
+ "attribute": "valueindicator",
372
+ "description": "Property: valueIndicator"
373
+ },
374
+ {
375
+ "name": "valueStart",
376
+ "type": "any",
377
+ "attribute": "valuestart",
378
+ "description": "Property: valueStart"
379
+ },
380
+ {
381
+ "name": "valueEnd",
382
+ "type": "any",
383
+ "attribute": "valueend",
384
+ "description": "Property: valueEnd"
385
+ },
386
+ {
387
+ "name": "ariaLabel",
388
+ "type": "any",
389
+ "attribute": "arialabel",
390
+ "description": "Property: ariaLabel"
391
+ },
392
+ {
393
+ "name": "ariaLabelStart",
394
+ "type": "any",
395
+ "attribute": "arialabelstart",
396
+ "description": "Property: ariaLabelStart"
397
+ },
398
+ {
399
+ "name": "ariaLabelEnd",
400
+ "type": "any",
401
+ "attribute": "arialabelend",
402
+ "description": "Property: ariaLabelEnd"
403
+ }
404
+ ],
405
+ "events": [],
406
+ "slots": [],
407
+ "examples": {
408
+ "basic": "<src\\components\\pd-slider></src\\components\\pd-slider>",
409
+ "html": "<src\\components\\pd-slider class=\"example\"></src\\components\\pd-slider>",
410
+ "react": "<Src\\components\\slider />",
411
+ "lit": "html`<src\\components\\pd-slider></src\\components\\pd-slider>`"
412
+ }
413
+ },
414
+ "src\\components\\pd-select": {
415
+ "name": "src\\components\\pd-select",
416
+ "tagName": "src\\components\\select",
417
+ "description": "Component description not available",
418
+ "properties": [
419
+ {
420
+ "name": "variant",
421
+ "type": "'filled' | 'outlined'",
422
+ "attribute": "variant",
423
+ "description": "Property: variant"
424
+ },
425
+ {
426
+ "name": "label",
427
+ "type": "any",
428
+ "attribute": "label",
429
+ "description": "Property: label"
430
+ },
431
+ {
432
+ "name": "value",
433
+ "type": "any",
434
+ "attribute": "value",
435
+ "description": "Property: value"
436
+ },
437
+ {
438
+ "name": "disabled",
439
+ "type": "any",
440
+ "attribute": "disabled",
441
+ "description": "Property: disabled"
442
+ },
443
+ {
444
+ "name": "required",
445
+ "type": "any",
446
+ "attribute": "required",
447
+ "description": "Property: required"
448
+ },
449
+ {
450
+ "name": "errorText",
451
+ "type": "any",
452
+ "attribute": "errortext",
453
+ "description": "Property: errorText"
454
+ },
455
+ {
456
+ "name": "error",
457
+ "type": "any",
458
+ "attribute": "error",
459
+ "description": "Property: error"
460
+ },
461
+ {
462
+ "name": "supportingText",
463
+ "type": "any",
464
+ "attribute": "supportingtext",
465
+ "description": "Property: supportingText"
466
+ },
467
+ {
468
+ "name": "options",
469
+ "type": "SelectOption[]",
470
+ "attribute": "options",
471
+ "description": "Property: options"
472
+ },
473
+ {
474
+ "name": "leadingIcon",
475
+ "type": "any",
476
+ "attribute": "leadingicon",
477
+ "description": "Property: leadingIcon"
478
+ }
479
+ ],
480
+ "events": [],
481
+ "slots": [],
482
+ "examples": {
483
+ "basic": "<src\\components\\pd-select></src\\components\\pd-select>",
484
+ "html": "<src\\components\\pd-select class=\"example\"></src\\components\\pd-select>",
485
+ "react": "<Src\\components\\select />",
486
+ "lit": "html`<src\\components\\pd-select></src\\components\\pd-select>`"
487
+ }
488
+ },
489
+ "src\\components\\pd-segmented-stepper": {
490
+ "name": "src\\components\\pd-segmented-stepper",
491
+ "tagName": "src\\components\\segmented-stepper",
492
+ "description": "Component description not available",
493
+ "properties": [
494
+ {
495
+ "name": "activeStep",
496
+ "type": "any",
497
+ "attribute": "activestep",
498
+ "description": "Property: activeStep"
499
+ },
500
+ {
501
+ "name": "completedSteps",
502
+ "type": "number[]",
503
+ "attribute": "completedsteps",
504
+ "description": "Property: completedSteps"
505
+ },
506
+ {
507
+ "name": "size",
508
+ "type": "'small' | 'medium' | 'large'",
509
+ "attribute": "size",
510
+ "description": "Property: size"
511
+ },
512
+ {
513
+ "name": "disabled",
514
+ "type": "any",
515
+ "attribute": "disabled",
516
+ "description": "Property: disabled"
517
+ },
518
+ {
519
+ "name": "allowStepNavigation",
520
+ "type": "any",
521
+ "attribute": "allowstepnavigation",
522
+ "description": "Property: allowStepNavigation"
523
+ },
524
+ {
525
+ "name": "stepNumber",
526
+ "type": "any",
527
+ "attribute": "stepnumber",
528
+ "description": "Property: stepNumber"
529
+ },
530
+ {
531
+ "name": "state",
532
+ "type": "'pending' | 'active' | 'completed' | 'disabled'",
533
+ "attribute": "state",
534
+ "description": "Property: state"
535
+ },
536
+ {
537
+ "name": "disabled",
538
+ "type": "any",
539
+ "attribute": "disabled",
540
+ "description": "Property: disabled"
541
+ },
542
+ {
543
+ "name": "clickable",
544
+ "type": "any",
545
+ "attribute": "clickable",
546
+ "description": "Property: clickable"
547
+ },
548
+ {
549
+ "name": "icon",
550
+ "type": "any",
551
+ "attribute": "icon",
552
+ "description": "Property: icon"
553
+ }
554
+ ],
555
+ "events": [
556
+ {
557
+ "name": "stepchange",
558
+ "description": "Fired when the active step changes."
559
+ },
560
+ {
561
+ "name": "stepcomplete",
562
+ "description": "Fired when a step is marked as completed."
563
+ }
564
+ ],
565
+ "slots": [
566
+ {
567
+ "name": "default",
568
+ "description": "The default slot for pd-stepper-item elements."
569
+ },
570
+ {
571
+ "name": "default",
572
+ "description": "The default slot for the step's content."
573
+ }
574
+ ],
575
+ "examples": {
576
+ "basic": "<src\\components\\pd-segmented-stepper></src\\components\\pd-segmented-stepper>",
577
+ "html": "<src\\components\\pd-segmented-stepper class=\"example\"></src\\components\\pd-segmented-stepper>",
578
+ "react": "<Src\\components\\segmentedStepper />",
579
+ "lit": "html`<src\\components\\pd-segmented-stepper></src\\components\\pd-segmented-stepper>`"
580
+ }
581
+ },
582
+ "src\\components\\pd-segmented-button": {
583
+ "name": "src\\components\\pd-segmented-button",
584
+ "tagName": "src\\components\\segmented-button",
585
+ "description": "Component description not available",
586
+ "properties": [
587
+ {
588
+ "name": "multiSelect",
589
+ "type": "any",
590
+ "attribute": "multiselect",
591
+ "description": "Property: multiSelect"
592
+ },
593
+ {
594
+ "name": "size",
595
+ "type": "'small' | 'medium' | 'large'",
596
+ "attribute": "size",
597
+ "description": "Property: size"
598
+ },
599
+ {
600
+ "name": "disabled",
601
+ "type": "any",
602
+ "attribute": "disabled",
603
+ "description": "Property: disabled"
604
+ },
605
+ {
606
+ "name": "selectedValues",
607
+ "type": "string[]",
608
+ "attribute": "selectedvalues",
609
+ "description": "Property: selectedValues"
610
+ },
611
+ {
612
+ "name": "value",
613
+ "type": "any",
614
+ "attribute": "value",
615
+ "description": "Property: value"
616
+ },
617
+ {
618
+ "name": "selected",
619
+ "type": "any",
620
+ "attribute": "selected",
621
+ "description": "Property: selected"
622
+ },
623
+ {
624
+ "name": "disabled",
625
+ "type": "any",
626
+ "attribute": "disabled",
627
+ "description": "Property: disabled"
628
+ },
629
+ {
630
+ "name": "icon",
631
+ "type": "any",
632
+ "attribute": "icon",
633
+ "description": "Property: icon"
634
+ },
635
+ {
636
+ "name": "iconOnly",
637
+ "type": "any",
638
+ "attribute": "icononly",
639
+ "description": "Property: iconOnly"
640
+ }
641
+ ],
642
+ "events": [
643
+ {
644
+ "name": "selectionchange",
645
+ "description": "Fired when the selection changes."
646
+ }
647
+ ],
648
+ "slots": [
649
+ {
650
+ "name": "default",
651
+ "description": "The default slot for pd-segment-item elements."
652
+ },
653
+ {
654
+ "name": "default",
655
+ "description": "The default slot for the segment's content."
656
+ },
657
+ {
658
+ "name": "icon",
659
+ "description": "The slot for an icon."
660
+ }
661
+ ],
662
+ "examples": {
663
+ "basic": "<src\\components\\pd-segmented-button></src\\components\\pd-segmented-button>",
664
+ "html": "<src\\components\\pd-segmented-button class=\"example\"></src\\components\\pd-segmented-button>",
665
+ "react": "<Src\\components\\segmentedButton />",
666
+ "lit": "html`<src\\components\\pd-segmented-button></src\\components\\pd-segmented-button>`"
667
+ }
668
+ },
669
+ "src\\components\\pd-radio": {
670
+ "name": "src\\components\\pd-radio",
671
+ "tagName": "src\\components\\radio",
672
+ "description": "Component description not available",
673
+ "properties": [
674
+ {
675
+ "name": "checked",
676
+ "type": "any",
677
+ "attribute": "checked",
678
+ "description": "Property: checked"
679
+ },
680
+ {
681
+ "name": "disabled",
682
+ "type": "any",
683
+ "attribute": "disabled",
684
+ "description": "Property: disabled"
685
+ },
686
+ {
687
+ "name": "name",
688
+ "type": "any",
689
+ "attribute": "name",
690
+ "description": "Property: name"
691
+ },
692
+ {
693
+ "name": "value",
694
+ "type": "any",
695
+ "attribute": "value",
696
+ "description": "Property: value"
697
+ },
698
+ {
699
+ "name": "ariaLabel",
700
+ "type": "any",
701
+ "attribute": "arialabel",
702
+ "description": "Property: ariaLabel"
703
+ },
704
+ {
705
+ "name": "ariaDescribedby",
706
+ "type": "any",
707
+ "attribute": "ariadescribedby",
708
+ "description": "Property: ariaDescribedby"
709
+ },
710
+ {
711
+ "name": "required",
712
+ "type": "any",
713
+ "attribute": "required",
714
+ "description": "Property: required"
715
+ },
716
+ {
717
+ "name": "name",
718
+ "type": "any",
719
+ "attribute": "name",
720
+ "description": "Property: name"
721
+ },
722
+ {
723
+ "name": "value",
724
+ "type": "any",
725
+ "attribute": "value",
726
+ "description": "Property: value"
727
+ },
728
+ {
729
+ "name": "disabled",
730
+ "type": "any",
731
+ "attribute": "disabled",
732
+ "description": "Property: disabled"
733
+ },
734
+ {
735
+ "name": "required",
736
+ "type": "any",
737
+ "attribute": "required",
738
+ "description": "Property: required"
739
+ },
740
+ {
741
+ "name": "ariaLabel",
742
+ "type": "any",
743
+ "attribute": "arialabel",
744
+ "description": "Property: ariaLabel"
745
+ },
746
+ {
747
+ "name": "ariaLabelledby",
748
+ "type": "any",
749
+ "attribute": "arialabelledby",
750
+ "description": "Property: ariaLabelledby"
751
+ }
752
+ ],
753
+ "events": [],
754
+ "slots": [],
755
+ "examples": {
756
+ "basic": "<src\\components\\pd-radio></src\\components\\pd-radio>",
757
+ "html": "<src\\components\\pd-radio class=\"example\"></src\\components\\pd-radio>",
758
+ "react": "<Src\\components\\radio />",
759
+ "lit": "html`<src\\components\\pd-radio></src\\components\\pd-radio>`"
760
+ }
761
+ },
762
+ "src\\components\\pd-progress": {
763
+ "name": "src\\components\\pd-progress",
764
+ "tagName": "src\\components\\progress",
765
+ "description": "Component description not available",
766
+ "properties": [
767
+ {
768
+ "name": "type",
769
+ "type": "'linear' | 'circular'",
770
+ "attribute": "type",
771
+ "description": "Property: type"
772
+ },
773
+ {
774
+ "name": "value",
775
+ "type": "any",
776
+ "attribute": "value",
777
+ "description": "Property: value"
778
+ },
779
+ {
780
+ "name": "max",
781
+ "type": "any",
782
+ "attribute": "max",
783
+ "description": "Property: max"
784
+ },
785
+ {
786
+ "name": "buffer",
787
+ "type": "any",
788
+ "attribute": "buffer",
789
+ "description": "Property: buffer"
790
+ },
791
+ {
792
+ "name": "indeterminate",
793
+ "type": "any",
794
+ "attribute": "indeterminate",
795
+ "description": "Property: indeterminate"
796
+ },
797
+ {
798
+ "name": "visible",
799
+ "type": "any",
800
+ "attribute": "visible",
801
+ "description": "Property: visible"
802
+ },
803
+ {
804
+ "name": "size",
805
+ "type": "'small' | 'medium' | 'large'",
806
+ "attribute": "size",
807
+ "description": "Property: size"
808
+ },
809
+ {
810
+ "name": "ariaLabel",
811
+ "type": "any",
812
+ "attribute": "arialabel",
813
+ "description": "Property: ariaLabel"
814
+ }
815
+ ],
816
+ "events": [],
817
+ "slots": [],
818
+ "examples": {
819
+ "basic": "<src\\components\\pd-progress></src\\components\\pd-progress>",
820
+ "html": "<src\\components\\pd-progress class=\"example\"></src\\components\\pd-progress>",
821
+ "react": "<Src\\components\\progress />",
822
+ "lit": "html`<src\\components\\pd-progress></src\\components\\pd-progress>`"
823
+ }
824
+ },
825
+ "src\\components\\pd-menu": {
826
+ "name": "src\\components\\pd-menu",
827
+ "tagName": "src\\components\\menu",
828
+ "description": "Component description not available",
829
+ "properties": [
830
+ {
831
+ "name": "anchor",
832
+ "type": "any",
833
+ "attribute": "anchor",
834
+ "description": "Property: anchor"
835
+ },
836
+ {
837
+ "name": "anchorElement",
838
+ "type": "any",
839
+ "attribute": "anchorelement",
840
+ "description": "Property: anchorElement"
841
+ },
842
+ {
843
+ "name": "open",
844
+ "type": "any",
845
+ "attribute": "open",
846
+ "description": "Property: open"
847
+ },
848
+ {
849
+ "name": "positioning",
850
+ "type": "'absolute' | 'fixed' | 'document' | 'popover'",
851
+ "attribute": "positioning",
852
+ "description": "Property: positioning"
853
+ },
854
+ {
855
+ "name": "anchorCorner",
856
+ "type": "'end-start' | 'end-end' | 'start-start' | 'start-end'",
857
+ "attribute": "anchorcorner",
858
+ "description": "Property: anchorCorner"
859
+ },
860
+ {
861
+ "name": "menuCorner",
862
+ "type": "'end-start' | 'end-end' | 'start-start' | 'start-end'",
863
+ "attribute": "menucorner",
864
+ "description": "Property: menuCorner"
865
+ },
866
+ {
867
+ "name": "quick",
868
+ "type": "any",
869
+ "attribute": "quick",
870
+ "description": "Property: quick"
871
+ },
872
+ {
873
+ "name": "hasOverflow",
874
+ "type": "any",
875
+ "attribute": "hasoverflow",
876
+ "description": "Property: hasOverflow"
877
+ },
878
+ {
879
+ "name": "xOffset",
880
+ "type": "any",
881
+ "attribute": "xoffset",
882
+ "description": "Property: xOffset"
883
+ },
884
+ {
885
+ "name": "yOffset",
886
+ "type": "any",
887
+ "attribute": "yoffset",
888
+ "description": "Property: yOffset"
889
+ },
890
+ {
891
+ "name": "defaultFocus",
892
+ "type": "'none' | 'list-root' | 'first-item' | 'last-item'",
893
+ "attribute": "defaultfocus",
894
+ "description": "Property: defaultFocus"
895
+ },
896
+ {
897
+ "name": "stayOpenOnFocusout",
898
+ "type": "any",
899
+ "attribute": "stayopenonfocusout",
900
+ "description": "Property: stayOpenOnFocusout"
901
+ },
902
+ {
903
+ "name": "stayOpenOnOutsideClick",
904
+ "type": "any",
905
+ "attribute": "stayopenonoutsideclick",
906
+ "description": "Property: stayOpenOnOutsideClick"
907
+ },
908
+ {
909
+ "name": "skipRestoreFocus",
910
+ "type": "any",
911
+ "attribute": "skiprestorefocus",
912
+ "description": "Property: skipRestoreFocus"
913
+ }
914
+ ],
915
+ "events": [],
916
+ "slots": [
917
+ {
918
+ "name": "default",
919
+ "description": "Default slot for `pd-menu-item` elements."
920
+ }
921
+ ],
922
+ "examples": {
923
+ "basic": "<src\\components\\pd-menu></src\\components\\pd-menu>",
924
+ "html": "<src\\components\\pd-menu class=\"example\"></src\\components\\pd-menu>",
925
+ "react": "<Src\\components\\menu />",
926
+ "lit": "html`<src\\components\\pd-menu></src\\components\\pd-menu>`"
927
+ }
928
+ },
929
+ "src\\components\\pd-menu-item": {
930
+ "name": "src\\components\\pd-menu-item",
931
+ "tagName": "src\\components\\menu-item",
932
+ "description": "Component description not available",
933
+ "properties": [
934
+ {
935
+ "name": "disabled",
936
+ "type": "any",
937
+ "attribute": "disabled",
938
+ "description": "Property: disabled"
939
+ },
940
+ {
941
+ "name": "type",
942
+ "type": "'menuitem' | 'option' | 'button'",
943
+ "attribute": "type",
944
+ "description": "Property: type"
945
+ },
946
+ {
947
+ "name": "href",
948
+ "type": "any",
949
+ "attribute": "href",
950
+ "description": "Property: href"
951
+ },
952
+ {
953
+ "name": "target",
954
+ "type": "any",
955
+ "attribute": "target",
956
+ "description": "Property: target"
957
+ },
958
+ {
959
+ "name": "keepOpen",
960
+ "type": "any",
961
+ "attribute": "keepopen",
962
+ "description": "Property: keepOpen"
963
+ },
964
+ {
965
+ "name": "selected",
966
+ "type": "any",
967
+ "attribute": "selected",
968
+ "description": "Property: selected"
969
+ },
970
+ {
971
+ "name": "leadingIcon",
972
+ "type": "any",
973
+ "attribute": "leadingicon",
974
+ "description": "Property: leadingIcon"
975
+ },
976
+ {
977
+ "name": "trailingIcon",
978
+ "type": "any",
979
+ "attribute": "trailingicon",
980
+ "description": "Property: trailingIcon"
981
+ },
982
+ {
983
+ "name": "text",
984
+ "type": "any",
985
+ "attribute": "text",
986
+ "description": "Property: text"
987
+ },
988
+ {
989
+ "name": "supportingText",
990
+ "type": "any",
991
+ "attribute": "supportingtext",
992
+ "description": "Property: supportingText"
993
+ }
994
+ ],
995
+ "events": [
996
+ {
997
+ "name": "close",
998
+ "description": "menu - Fired when the menu should be closed (usually on selection)"
999
+ }
1000
+ ],
1001
+ "slots": [
1002
+ {
1003
+ "name": "default",
1004
+ "description": "The main content of the menu item"
1005
+ },
1006
+ {
1007
+ "name": "start",
1008
+ "description": "Content at the start of the menu item (e.g., icon)"
1009
+ },
1010
+ {
1011
+ "name": "end",
1012
+ "description": "Content at the end of the menu item (e.g., shortcut text)"
1013
+ }
1014
+ ],
1015
+ "examples": {
1016
+ "basic": "<src\\components\\pd-menu-item></src\\components\\pd-menu-item>",
1017
+ "html": "<src\\components\\pd-menu-item class=\"example\"></src\\components\\pd-menu-item>",
1018
+ "react": "<Src\\components\\menuItem />",
1019
+ "lit": "html`<src\\components\\pd-menu-item></src\\components\\pd-menu-item>`"
1020
+ }
1021
+ },
1022
+ "src\\components\\pd-list": {
1023
+ "name": "src\\components\\pd-list",
1024
+ "tagName": "src\\components\\list",
1025
+ "description": "Component description not available",
1026
+ "properties": [
1027
+ {
1028
+ "name": "role",
1029
+ "type": "any",
1030
+ "attribute": "role",
1031
+ "description": "Property: role"
1032
+ },
1033
+ {
1034
+ "name": "tabindex",
1035
+ "type": "any",
1036
+ "attribute": "tabindex",
1037
+ "description": "Property: tabindex"
1038
+ },
1039
+ {
1040
+ "name": "type",
1041
+ "type": "'text' | 'link' | 'button'",
1042
+ "attribute": "type",
1043
+ "description": "Property: type"
1044
+ },
1045
+ {
1046
+ "name": "headline",
1047
+ "type": "any",
1048
+ "attribute": "headline",
1049
+ "description": "Property: headline"
1050
+ },
1051
+ {
1052
+ "name": "supportingText",
1053
+ "type": "any",
1054
+ "attribute": "supportingtext",
1055
+ "description": "Property: supportingText"
1056
+ },
1057
+ {
1058
+ "name": "trailingSupportingText",
1059
+ "type": "any",
1060
+ "attribute": "trailingsupportingtext",
1061
+ "description": "Property: trailingSupportingText"
1062
+ },
1063
+ {
1064
+ "name": "href",
1065
+ "type": "any",
1066
+ "attribute": "href",
1067
+ "description": "Property: href"
1068
+ },
1069
+ {
1070
+ "name": "target",
1071
+ "type": "any",
1072
+ "attribute": "target",
1073
+ "description": "Property: target"
1074
+ },
1075
+ {
1076
+ "name": "disabled",
1077
+ "type": "any",
1078
+ "attribute": "disabled",
1079
+ "description": "Property: disabled"
1080
+ },
1081
+ {
1082
+ "name": "icon",
1083
+ "type": "any",
1084
+ "attribute": "icon",
1085
+ "description": "Property: icon"
1086
+ },
1087
+ {
1088
+ "name": "trailingIcon",
1089
+ "type": "any",
1090
+ "attribute": "trailingicon",
1091
+ "description": "Property: trailingIcon"
1092
+ },
1093
+ {
1094
+ "name": "avatar",
1095
+ "type": "any",
1096
+ "attribute": "avatar",
1097
+ "description": "Property: avatar"
1098
+ },
1099
+ {
1100
+ "name": "image",
1101
+ "type": "any",
1102
+ "attribute": "image",
1103
+ "description": "Property: image"
1104
+ },
1105
+ {
1106
+ "name": "tabindex",
1107
+ "type": "any",
1108
+ "attribute": "tabindex",
1109
+ "description": "Property: tabindex"
1110
+ },
1111
+ {
1112
+ "name": "inset",
1113
+ "type": "any",
1114
+ "attribute": "inset",
1115
+ "description": "Property: inset"
1116
+ },
1117
+ {
1118
+ "name": "role",
1119
+ "type": "any",
1120
+ "attribute": "role",
1121
+ "description": "Property: role"
1122
+ }
1123
+ ],
1124
+ "events": [],
1125
+ "slots": [],
1126
+ "examples": {
1127
+ "basic": "<src\\components\\pd-list></src\\components\\pd-list>",
1128
+ "html": "<src\\components\\pd-list class=\"example\"></src\\components\\pd-list>",
1129
+ "react": "<Src\\components\\list />",
1130
+ "lit": "html`<src\\components\\pd-list></src\\components\\pd-list>`"
1131
+ }
1132
+ },
1133
+ "src\\components\\pd-icon": {
1134
+ "name": "src\\components\\pd-icon",
1135
+ "tagName": "src\\components\\icon",
1136
+ "description": "Component description not available",
1137
+ "properties": [
1138
+ {
1139
+ "name": "name",
1140
+ "type": "any",
1141
+ "attribute": "name",
1142
+ "description": "Property: name"
1143
+ },
1144
+ {
1145
+ "name": "size",
1146
+ "type": "'small' | 'medium' | 'large'",
1147
+ "attribute": "size",
1148
+ "description": "Property: size"
1149
+ },
1150
+ {
1151
+ "name": "variant",
1152
+ "type": "'filled' | 'outlined' | 'round' | 'sharp' | 'two-tone'",
1153
+ "attribute": "variant",
1154
+ "description": "Property: variant"
1155
+ }
1156
+ ],
1157
+ "events": [],
1158
+ "slots": [],
1159
+ "examples": {
1160
+ "basic": "<src\\components\\pd-icon></src\\components\\pd-icon>",
1161
+ "html": "<src\\components\\pd-icon class=\"example\"></src\\components\\pd-icon>",
1162
+ "react": "<Src\\components\\icon />",
1163
+ "lit": "html`<src\\components\\pd-icon></src\\components\\pd-icon>`"
1164
+ }
1165
+ },
1166
+ "src\\components\\pd-icon-button": {
1167
+ "name": "src\\components\\pd-icon-button",
1168
+ "tagName": "src\\components\\icon-button",
1169
+ "description": "Component description not available",
1170
+ "properties": [
1171
+ {
1172
+ "name": "variant",
1173
+ "type": "'standard' | 'filled' | 'tonal' | 'outlined'",
1174
+ "attribute": "variant",
1175
+ "description": "Property: variant"
1176
+ },
1177
+ {
1178
+ "name": "icon",
1179
+ "type": "any",
1180
+ "attribute": "icon",
1181
+ "description": "Property: icon"
1182
+ },
1183
+ {
1184
+ "name": "selectedIcon",
1185
+ "type": "any",
1186
+ "attribute": "selectedicon",
1187
+ "description": "Property: selectedIcon"
1188
+ },
1189
+ {
1190
+ "name": "disabled",
1191
+ "type": "any",
1192
+ "attribute": "disabled",
1193
+ "description": "Property: disabled"
1194
+ },
1195
+ {
1196
+ "name": "toggle",
1197
+ "type": "any",
1198
+ "attribute": "toggle",
1199
+ "description": "Property: toggle"
1200
+ },
1201
+ {
1202
+ "name": "selected",
1203
+ "type": "any",
1204
+ "attribute": "selected",
1205
+ "description": "Property: selected"
1206
+ },
1207
+ {
1208
+ "name": "href",
1209
+ "type": "any",
1210
+ "attribute": "href",
1211
+ "description": "Property: href"
1212
+ },
1213
+ {
1214
+ "name": "target",
1215
+ "type": "any",
1216
+ "attribute": "target",
1217
+ "description": "Property: target"
1218
+ },
1219
+ {
1220
+ "name": "ariaLabel",
1221
+ "type": "any",
1222
+ "attribute": "arialabel",
1223
+ "description": "Property: ariaLabel"
1224
+ },
1225
+ {
1226
+ "name": "ariaLabelSelected",
1227
+ "type": "any",
1228
+ "attribute": "arialabelselected",
1229
+ "description": "Property: ariaLabelSelected"
1230
+ }
1231
+ ],
1232
+ "events": [],
1233
+ "slots": [],
1234
+ "examples": {
1235
+ "basic": "<src\\components\\pd-icon-button></src\\components\\pd-icon-button>",
1236
+ "html": "<src\\components\\pd-icon-button class=\"example\"></src\\components\\pd-icon-button>",
1237
+ "react": "<Src\\components\\iconButton />",
1238
+ "lit": "html`<src\\components\\pd-icon-button></src\\components\\pd-icon-button>`"
1239
+ }
1240
+ },
1241
+ "src\\components\\pd-fab": {
1242
+ "name": "src\\components\\pd-fab",
1243
+ "tagName": "src\\components\\fab",
1244
+ "description": "Component description not available",
1245
+ "properties": [
1246
+ {
1247
+ "name": "variant",
1248
+ "type": "'surface' | 'primary' | 'secondary' | 'tertiary' | 'branded'",
1249
+ "attribute": "variant",
1250
+ "description": "Property: variant"
1251
+ },
1252
+ {
1253
+ "name": "size",
1254
+ "type": "'small' | 'medium' | 'large'",
1255
+ "attribute": "size",
1256
+ "description": "Property: size"
1257
+ },
1258
+ {
1259
+ "name": "icon",
1260
+ "type": "any",
1261
+ "attribute": "icon",
1262
+ "description": "Property: icon"
1263
+ },
1264
+ {
1265
+ "name": "label",
1266
+ "type": "any",
1267
+ "attribute": "label",
1268
+ "description": "Property: label"
1269
+ },
1270
+ {
1271
+ "name": "lowered",
1272
+ "type": "any",
1273
+ "attribute": "lowered",
1274
+ "description": "Property: lowered"
1275
+ },
1276
+ {
1277
+ "name": "disabled",
1278
+ "type": "any",
1279
+ "attribute": "disabled",
1280
+ "description": "Property: disabled"
1281
+ },
1282
+ {
1283
+ "name": "ariaLabel",
1284
+ "type": "any",
1285
+ "attribute": "arialabel",
1286
+ "description": "Property: ariaLabel"
1287
+ }
1288
+ ],
1289
+ "events": [],
1290
+ "slots": [],
1291
+ "examples": {
1292
+ "basic": "<src\\components\\pd-fab></src\\components\\pd-fab>",
1293
+ "html": "<src\\components\\pd-fab class=\"example\"></src\\components\\pd-fab>",
1294
+ "react": "<Src\\components\\fab />",
1295
+ "lit": "html`<src\\components\\pd-fab></src\\components\\pd-fab>`"
1296
+ }
1297
+ },
1298
+ "src\\components\\pd-expandable-card": {
1299
+ "name": "src\\components\\pd-expandable-card",
1300
+ "tagName": "src\\components\\expandable-card",
1301
+ "description": "Component description not available",
1302
+ "properties": [
1303
+ {
1304
+ "name": "variant",
1305
+ "type": "'elevated' | 'filled' | 'outlined'",
1306
+ "attribute": "variant",
1307
+ "description": "Property: variant"
1308
+ },
1309
+ {
1310
+ "name": "expanded",
1311
+ "type": "any",
1312
+ "attribute": "expanded",
1313
+ "description": "Property: expanded"
1314
+ },
1315
+ {
1316
+ "name": "expandIcon",
1317
+ "type": "any",
1318
+ "attribute": "expandicon",
1319
+ "description": "Property: expandIcon"
1320
+ },
1321
+ {
1322
+ "name": "collapseIcon",
1323
+ "type": "any",
1324
+ "attribute": "collapseicon",
1325
+ "description": "Property: collapseIcon"
1326
+ },
1327
+ {
1328
+ "name": "headerClickable",
1329
+ "type": "any",
1330
+ "attribute": "headerclickable",
1331
+ "description": "Property: headerClickable"
1332
+ }
1333
+ ],
1334
+ "events": [
1335
+ {
1336
+ "name": "expand",
1337
+ "description": "Fired when the card is expanded"
1338
+ },
1339
+ {
1340
+ "name": "collapse",
1341
+ "description": "Fired when the card is collapsed"
1342
+ }
1343
+ ],
1344
+ "slots": [
1345
+ {
1346
+ "name": "header",
1347
+ "description": "The main header content (always visible)"
1348
+ },
1349
+ {
1350
+ "name": "default",
1351
+ "description": "The expandable content (shown when expanded)"
1352
+ }
1353
+ ],
1354
+ "examples": {
1355
+ "basic": "<src\\components\\pd-expandable-card></src\\components\\pd-expandable-card>",
1356
+ "html": "<src\\components\\pd-expandable-card class=\"example\"></src\\components\\pd-expandable-card>",
1357
+ "react": "<Src\\components\\expandableCard />",
1358
+ "lit": "html`<src\\components\\pd-expandable-card></src\\components\\pd-expandable-card>`"
1359
+ }
1360
+ },
1361
+ "src\\components\\pd-dialog": {
1362
+ "name": "src\\components\\pd-dialog",
1363
+ "tagName": "src\\components\\dialog",
1364
+ "description": "Component description not available",
1365
+ "properties": [
1366
+ {
1367
+ "name": "open",
1368
+ "type": "any",
1369
+ "attribute": "open",
1370
+ "description": "Property: open"
1371
+ },
1372
+ {
1373
+ "name": "size",
1374
+ "type": "'small' | 'medium' | 'large' | 'fullscreen'",
1375
+ "attribute": "size",
1376
+ "description": "Property: size"
1377
+ },
1378
+ {
1379
+ "name": "variant",
1380
+ "type": "'alert' | 'confirm' | 'form' | 'custom'",
1381
+ "attribute": "variant",
1382
+ "description": "Property: variant"
1383
+ },
1384
+ {
1385
+ "name": "headline",
1386
+ "type": "any",
1387
+ "attribute": "headline",
1388
+ "description": "Property: headline"
1389
+ },
1390
+ {
1391
+ "name": "primaryAction",
1392
+ "type": "any",
1393
+ "attribute": "primaryaction",
1394
+ "description": "Property: primaryAction"
1395
+ },
1396
+ {
1397
+ "name": "secondaryAction",
1398
+ "type": "any",
1399
+ "attribute": "secondaryaction",
1400
+ "description": "Property: secondaryAction"
1401
+ },
1402
+ {
1403
+ "name": "closableByBackdrop",
1404
+ "type": "any",
1405
+ "attribute": "closablebybackdrop",
1406
+ "description": "Property: closableByBackdrop"
1407
+ },
1408
+ {
1409
+ "name": "showCloseButton",
1410
+ "type": "any",
1411
+ "attribute": "showclosebutton",
1412
+ "description": "Property: showCloseButton"
1413
+ }
1414
+ ],
1415
+ "events": [
1416
+ {
1417
+ "name": "open",
1418
+ "description": "Fired when the dialog is opened."
1419
+ },
1420
+ {
1421
+ "name": "closed",
1422
+ "description": "Fired when the dialog is closed."
1423
+ }
1424
+ ],
1425
+ "slots": [
1426
+ {
1427
+ "name": "default",
1428
+ "description": "The main content of the dialog."
1429
+ },
1430
+ {
1431
+ "name": "headline",
1432
+ "description": "The dialog title/headline."
1433
+ },
1434
+ {
1435
+ "name": "actions",
1436
+ "description": "Action buttons (typically in the bottom area)."
1437
+ }
1438
+ ],
1439
+ "examples": {
1440
+ "basic": "<src\\components\\pd-dialog></src\\components\\pd-dialog>",
1441
+ "html": "<src\\components\\pd-dialog class=\"example\"></src\\components\\pd-dialog>",
1442
+ "react": "<Src\\components\\dialog />",
1443
+ "lit": "html`<src\\components\\pd-dialog></src\\components\\pd-dialog>`"
1444
+ }
1445
+ },
1446
+ "src\\components\\pd-chip": {
1447
+ "name": "src\\components\\pd-chip",
1448
+ "tagName": "src\\components\\chip",
1449
+ "description": "Component description not available",
1450
+ "properties": [
1451
+ {
1452
+ "name": "variant",
1453
+ "type": "'assist' | 'filter' | 'input' | 'suggestion'",
1454
+ "attribute": "variant",
1455
+ "description": "Property: variant"
1456
+ },
1457
+ {
1458
+ "name": "label",
1459
+ "type": "any",
1460
+ "attribute": "label",
1461
+ "description": "Property: label"
1462
+ },
1463
+ {
1464
+ "name": "disabled",
1465
+ "type": "any",
1466
+ "attribute": "disabled",
1467
+ "description": "Property: disabled"
1468
+ },
1469
+ {
1470
+ "name": "alwaysFocusable",
1471
+ "type": "any",
1472
+ "attribute": "alwaysfocusable",
1473
+ "description": "Property: alwaysFocusable"
1474
+ },
1475
+ {
1476
+ "name": "hasIcon",
1477
+ "type": "any",
1478
+ "attribute": "hasicon",
1479
+ "description": "Property: hasIcon"
1480
+ },
1481
+ {
1482
+ "name": "icon",
1483
+ "type": "any",
1484
+ "attribute": "icon",
1485
+ "description": "Property: icon"
1486
+ },
1487
+ {
1488
+ "name": "selected",
1489
+ "type": "any",
1490
+ "attribute": "selected",
1491
+ "description": "Property: selected"
1492
+ },
1493
+ {
1494
+ "name": "removable",
1495
+ "type": "any",
1496
+ "attribute": "removable",
1497
+ "description": "Property: removable"
1498
+ },
1499
+ {
1500
+ "name": "elevated",
1501
+ "type": "any",
1502
+ "attribute": "elevated",
1503
+ "description": "Property: elevated"
1504
+ },
1505
+ {
1506
+ "name": "href",
1507
+ "type": "any",
1508
+ "attribute": "href",
1509
+ "description": "Property: href"
1510
+ },
1511
+ {
1512
+ "name": "target",
1513
+ "type": "any",
1514
+ "attribute": "target",
1515
+ "description": "Property: target"
1516
+ },
1517
+ {
1518
+ "name": "avatar",
1519
+ "type": "any",
1520
+ "attribute": "avatar",
1521
+ "description": "Property: avatar"
1522
+ },
1523
+ {
1524
+ "name": "removeOnly",
1525
+ "type": "any",
1526
+ "attribute": "removeonly",
1527
+ "description": "Property: removeOnly"
1528
+ }
1529
+ ],
1530
+ "events": [],
1531
+ "slots": [],
1532
+ "examples": {
1533
+ "basic": "<src\\components\\pd-chip></src\\components\\pd-chip>",
1534
+ "html": "<src\\components\\pd-chip class=\"example\"></src\\components\\pd-chip>",
1535
+ "react": "<Src\\components\\chip />",
1536
+ "lit": "html`<src\\components\\pd-chip></src\\components\\pd-chip>`"
1537
+ }
1538
+ },
1539
+ "src\\components\\pd-checkbox": {
1540
+ "name": "src\\components\\pd-checkbox",
1541
+ "tagName": "src\\components\\checkbox",
1542
+ "description": "Component description not available",
1543
+ "properties": [
1544
+ {
1545
+ "name": "checked",
1546
+ "type": "any",
1547
+ "attribute": "checked",
1548
+ "description": "Property: checked"
1549
+ },
1550
+ {
1551
+ "name": "indeterminate",
1552
+ "type": "any",
1553
+ "attribute": "indeterminate",
1554
+ "description": "Property: indeterminate"
1555
+ },
1556
+ {
1557
+ "name": "disabled",
1558
+ "type": "any",
1559
+ "attribute": "disabled",
1560
+ "description": "Property: disabled"
1561
+ },
1562
+ {
1563
+ "name": "required",
1564
+ "type": "any",
1565
+ "attribute": "required",
1566
+ "description": "Property: required"
1567
+ },
1568
+ {
1569
+ "name": "value",
1570
+ "type": "any",
1571
+ "attribute": "value",
1572
+ "description": "Property: value"
1573
+ },
1574
+ {
1575
+ "name": "name",
1576
+ "type": "any",
1577
+ "attribute": "name",
1578
+ "description": "Property: name"
1579
+ },
1580
+ {
1581
+ "name": "label",
1582
+ "type": "any",
1583
+ "attribute": "label",
1584
+ "description": "Property: label"
1585
+ },
1586
+ {
1587
+ "name": "touchTarget",
1588
+ "type": "any",
1589
+ "attribute": "touchtarget",
1590
+ "description": "Property: touchTarget"
1591
+ }
1592
+ ],
1593
+ "events": [],
1594
+ "slots": [],
1595
+ "examples": {
1596
+ "basic": "<src\\components\\pd-checkbox></src\\components\\pd-checkbox>",
1597
+ "html": "<src\\components\\pd-checkbox class=\"example\"></src\\components\\pd-checkbox>",
1598
+ "react": "<Src\\components\\checkbox />",
1599
+ "lit": "html`<src\\components\\pd-checkbox></src\\components\\pd-checkbox>`"
1600
+ }
1601
+ },
1602
+ "src\\components\\pd-card": {
1603
+ "name": "src\\components\\pd-card",
1604
+ "tagName": "src\\components\\card",
1605
+ "description": "Component description not available",
1606
+ "properties": [
1607
+ {
1608
+ "name": "variant",
1609
+ "type": "'elevated' | 'filled' | 'outlined'",
1610
+ "attribute": "variant",
1611
+ "description": "Property: variant"
1612
+ },
1613
+ {
1614
+ "name": "clickable",
1615
+ "type": "any",
1616
+ "attribute": "clickable",
1617
+ "description": "Property: clickable"
1618
+ }
1619
+ ],
1620
+ "events": [],
1621
+ "slots": [],
1622
+ "examples": {
1623
+ "basic": "<src\\components\\pd-card></src\\components\\pd-card>",
1624
+ "html": "<src\\components\\pd-card class=\"example\"></src\\components\\pd-card>",
1625
+ "react": "<Src\\components\\card />",
1626
+ "lit": "html`<src\\components\\pd-card></src\\components\\pd-card>`"
1627
+ }
1628
+ },
1629
+ "src\\components\\pd-button": {
1630
+ "name": "src\\components\\pd-button",
1631
+ "tagName": "src\\components\\button",
1632
+ "description": "Component description not available",
1633
+ "properties": [
1634
+ {
1635
+ "name": "variant",
1636
+ "type": "'filled' | 'outlined' | 'text' | 'elevated' | 'tonal'",
1637
+ "attribute": "variant",
1638
+ "description": "Property: variant"
1639
+ },
1640
+ {
1641
+ "name": "size",
1642
+ "type": "'xsmall' | 'small' | 'medium' | 'large' | 'xlarge'",
1643
+ "attribute": "size",
1644
+ "description": "Property: size"
1645
+ },
1646
+ {
1647
+ "name": "icon",
1648
+ "type": "any",
1649
+ "attribute": "icon",
1650
+ "description": "Property: icon"
1651
+ },
1652
+ {
1653
+ "name": "iconTrailing",
1654
+ "type": "any",
1655
+ "attribute": "icontrailing",
1656
+ "description": "Property: iconTrailing"
1657
+ },
1658
+ {
1659
+ "name": "disabled",
1660
+ "type": "any",
1661
+ "attribute": "disabled",
1662
+ "description": "Property: disabled"
1663
+ }
1664
+ ],
1665
+ "events": [],
1666
+ "slots": [
1667
+ {
1668
+ "name": "default",
1669
+ "description": "The default slot for the button's label."
1670
+ }
1671
+ ],
1672
+ "examples": {
1673
+ "basic": "<src\\components\\pd-button></src\\components\\pd-button>",
1674
+ "html": "<src\\components\\pd-button class=\"example\"></src\\components\\pd-button>",
1675
+ "react": "<Src\\components\\button />",
1676
+ "lit": "html`<src\\components\\pd-button></src\\components\\pd-button>`"
1677
+ }
1678
+ }
1679
+ },
1680
+ "storybook": "https://68af3f22b44ad2acc02b3370-smrhgwrsuh.chromatic.com/"
1681
+ }