@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,372 @@
1
+ /**
2
+ * Do not edit directly, this file was auto-generated.
3
+ */
4
+
5
+ :root {
6
+ --md-sys-color-primary: #006eff;
7
+ --md-sys-color-on-primary: #ffffff;
8
+ --md-sys-color-primary-container: #eff5fc;
9
+ --md-sys-color-on-primary-container: #006eff;
10
+ --md-sys-color-surface-tint: #006eff;
11
+ --md-sys-color-secondary: #ffffff;
12
+ --md-sys-color-on-secondary: #006eff;
13
+ --md-sys-color-secondary-container: #eff5fc;
14
+ --md-sys-color-on-secondary-container: #006eff;
15
+ --md-sys-color-tertiary: #ffffff;
16
+ --md-sys-color-on-tertiary: #080808;
17
+ --md-sys-color-tertiary-container: #e2e2e2;
18
+ --md-sys-color-on-tertiary-container: #080808;
19
+ --md-sys-color-error: #e84020;
20
+ --md-sys-color-on-error: #ffffff;
21
+ --md-sys-color-error-container: #fbf3f1;
22
+ --md-sys-color-on-error-container: #e84020;
23
+ --md-sys-color-background: #ffffff;
24
+ --md-sys-color-on-background: #080808;
25
+ --md-sys-color-surface: #fcfcfc;
26
+ --md-sys-color-on-surface: #080808;
27
+ --md-sys-color-surface-variant: #ffffff;
28
+ --md-sys-color-on-surface-variant: #303030;
29
+ --md-sys-color-outline: #d1d1d1;
30
+ --md-sys-color-outline-variant: #dbdbdb;
31
+ --md-sys-color-shadow: #080808;
32
+ --md-sys-color-scrim: #080808;
33
+ --md-sys-color-inverse-surface: #080808;
34
+ --md-sys-color-inverse-on-surface: #eff5fc;
35
+ --md-sys-color-inverse-primary: #eff5fc;
36
+ --md-sys-color-surface-dim: #fcfcfc;
37
+ --md-sys-color-surface-bright: #ffffff;
38
+ --md-sys-color-surface-container-lowest: #ffffff;
39
+ --md-sys-color-surface-container-low: #ffffff;
40
+ --md-sys-color-surface-container: #ffffff;
41
+ --md-sys-color-surface-container-high: #ffffff;
42
+ --md-sys-color-surface-container-highest: #ffffff;
43
+ --md-sys-color-primary-hover: #006eff0d;
44
+ --md-sys-color-primary-focus: #006eff1a;
45
+ --md-sys-color-primary-pressed: #006eff26;
46
+ --md-sys-color-on-primary-hover: #ffffff0d;
47
+ --md-sys-color-on-primary-focus: #ffffff1a;
48
+ --md-sys-color-on-primary-pressed: #ffffff26;
49
+ --md-sys-color-primary-container-hover: #006eff0d;
50
+ --md-sys-color-primary-container-focus: #006eff1a;
51
+ --md-sys-color-primary-container-pressed: #006eff26;
52
+ --md-sys-color-on-primary-container-hover: #006eff0d;
53
+ --md-sys-color-on-primary-container-focus: #006eff1a;
54
+ --md-sys-color-on-primary-container-pressed: #006eff26;
55
+ --md-sys-color-secondary-hover: #ffffff0d;
56
+ --md-sys-color-secondary-focus: #ffffff1a;
57
+ --md-sys-color-secondary-pressed: #ffffff26;
58
+ --md-sys-color-on-secondary-hover: #006eff0d;
59
+ --md-sys-color-on-secondary-focus: #006eff1a;
60
+ --md-sys-color-on-secondary-pressed: #006eff26;
61
+ --md-sys-color-secondary-container-hover: #006eff0d;
62
+ --md-sys-color-secondary-container-focus: #006eff1a;
63
+ --md-sys-color-secondary-container-pressed: #006eff26;
64
+ --md-sys-color-on-secondary-container-hover: #006eff0d;
65
+ --md-sys-color-on-secondary-container-focus: #006eff1a;
66
+ --md-sys-color-on-secondary-container-pressed: #006eff26;
67
+ --md-sys-color-tertiary-hover: #ffffff0d;
68
+ --md-sys-color-tertiary-focus: #ffffff1a;
69
+ --md-sys-color-tertiary-pressed: #ffffff26;
70
+ --md-sys-color-on-tertiary-hover: #0808080d;
71
+ --md-sys-color-on-tertiary-focus: #0808081a;
72
+ --md-sys-color-on-tertiary-pressed: #08080826;
73
+ --md-sys-color-tertiary-container-hover: #0808080d;
74
+ --md-sys-color-tertiary-container-focus: #0808081a;
75
+ --md-sys-color-tertiary-container-pressed: #08080826;
76
+ --md-sys-color-on-tertiary-container-hover: #0808080d;
77
+ --md-sys-color-on-tertiary-container-focus: #0808081a;
78
+ --md-sys-color-on-tertiary-container-pressed: #08080826;
79
+ --md-sys-color-error-hover: #e840200d;
80
+ --md-sys-color-error-focus: #e840201a;
81
+ --md-sys-color-error-pressed: #e8402026;
82
+ --md-sys-color-on-error-hover: #ffffff0d;
83
+ --md-sys-color-on-error-focus: #ffffff1a;
84
+ --md-sys-color-on-error-pressed: #ffffff26;
85
+ --md-sys-color-error-container-hover: #e840200d;
86
+ --md-sys-color-error-container-focus: #e840201a;
87
+ --md-sys-color-error-container-pressed: #e8402026;
88
+ --md-sys-color-on-error-container-hover: #e840200d;
89
+ --md-sys-color-on-error-container-focus: #e840201a;
90
+ --md-sys-color-on-error-container-pressed: #e8402026;
91
+ --md-sys-color-outline-hover: #0808080d;
92
+ --md-sys-color-outline-focus: #0808081a;
93
+ --md-sys-color-outline-pressed: #08080826;
94
+ --md-sys-color-background-hover: #ffffff0d;
95
+ --md-sys-color-background-focus: #ffffff1a;
96
+ --md-sys-color-background-pressed: #ffffff26;
97
+ --md-sys-color-on-background-hover: #0808080d;
98
+ --md-sys-color-on-background-focus: #0808081a;
99
+ --md-sys-color-on-background-pressed: #08080826;
100
+ --md-sys-color-surface-hover: #ffffff0d;
101
+ --md-sys-color-surface-focus: #ffffff1a;
102
+ --md-sys-color-surface-pressed: #ffffff26;
103
+ --md-sys-color-on-surface-hover: #0808080d;
104
+ --md-sys-color-on-surface-focus: #0808081a;
105
+ --md-sys-color-on-surface-pressed: #08080826;
106
+ --md-sys-color-surface-variant-hover: #ffffff0d;
107
+ --md-sys-color-surface-variant-focus: #ffffff1a;
108
+ --md-sys-color-surface-variant-pressed: #ffffff26;
109
+ --md-sys-color-on-surface-variant-hover: #0808080d;
110
+ --md-sys-color-on-surface-variant-focus: #0808081a;
111
+ --md-sys-color-on-surface-variant-pressed: #08080826;
112
+ --md-sys-color-inverse-surface-hover: #0808080d;
113
+ --md-sys-color-inverse-surface-focus: #0808081a;
114
+ --md-sys-color-inverse-surface-pressed: #08080826;
115
+ --md-sys-color-inverse-on-surface-hover: #006eff0d;
116
+ --md-sys-color-inverse-on-surface-focus: #006eff1a;
117
+ --md-sys-color-inverse-on-surface-pressed: #006eff26;
118
+ --md-sys-color-inverse-primary-hover: #006eff0d;
119
+ --md-sys-color-inverse-primary-focus: #006eff1a;
120
+ --md-sys-color-inverse-primary-pressed: #006eff26;
121
+ --md-sys-color-shadow-hover: #0808080d;
122
+ --md-sys-color-shadow-focus: #0808081a;
123
+ --md-sys-color-shadow-pressed: #08080826;
124
+ --md-sys-color-surface-tint-hover: #006eff0d;
125
+ --md-sys-color-surface-tint-focus: #006eff1a;
126
+ --md-sys-color-surface-tint-pressed: #006eff26;
127
+ --md-sys-color-outline-variant-hover: #0808080d;
128
+ --md-sys-color-outline-variant-focus: #0808081a;
129
+ --md-sys-color-outline-variant-pressed: #08080826;
130
+ --md-sys-color-scrim-hover: #0808080d;
131
+ --md-sys-color-scrim-focus: #0808081a;
132
+ --md-sys-color-scrim-pressed: #08080826;
133
+ --md-sys-color-surface-container-highest-hover: #ffffff0d;
134
+ --md-sys-color-surface-container-highest-focus: #ffffff1a;
135
+ --md-sys-color-surface-container-highest-pressed: #ffffff26;
136
+ --md-sys-color-surface-container-high-hover: #ffffff0d;
137
+ --md-sys-color-surface-container-high-focus: #ffffff1a;
138
+ --md-sys-color-surface-container-high-pressed: #ffffff26;
139
+ --md-sys-color-surface-container-hover: #ffffff0d;
140
+ --md-sys-color-surface-container-focus: #ffffff1a;
141
+ --md-sys-color-surface-container-pressed: #ffffff26;
142
+ --md-sys-color-surface-container-low-hover: #ffffff0d;
143
+ --md-sys-color-surface-container-low-focus: #ffffff1a;
144
+ --md-sys-color-surface-container-low-pressed: #ffffff26;
145
+ --md-sys-color-surface-container-lowest-hover: #ffffff0d;
146
+ --md-sys-color-surface-container-lowest-focus: #ffffff1a;
147
+ --md-sys-color-surface-container-lowest-pressed: #ffffff26;
148
+ --md-sys-color-surface-bright-hover: #ffffff0d;
149
+ --md-sys-color-surface-bright-focus: #ffffff1a;
150
+ --md-sys-color-surface-bright-pressed: #ffffff26;
151
+ --md-sys-color-surface-dim-hover: #ffffff0d;
152
+ --md-sys-color-surface-dim-focus: #ffffff1a;
153
+ --md-sys-color-surface-dim-pressed: #ffffff26;
154
+ --md-sys-custom-section-background: #f5f5f5;
155
+ --md-sys-scale-0: 0;
156
+ --md-sys-scale-25: 1;
157
+ --md-sys-scale-50: 2;
158
+ --md-sys-scale-100: 5;
159
+ --md-sys-scale-200: 8;
160
+ --md-sys-scale-300: 12;
161
+ --md-sys-scale-400: 16;
162
+ --md-sys-scale-500: 20;
163
+ --md-sys-scale-600: 24;
164
+ --md-sys-scale-700: 28;
165
+ --md-sys-scale-800: 32;
166
+ --md-sys-scale-900: 36;
167
+ --md-sys-scale-1000: 40;
168
+ --md-sys-scale-1100: 48;
169
+ --md-sys-scale-1200: 56;
170
+ --md-sys-scale-1300: 64;
171
+ --md-sys-scale-1400: 72;
172
+ --md-sys-scale-1500: 96;
173
+ --md-sys-scale-1600: 128;
174
+ --md-sys-scale-1700: 256;
175
+ --md-sys-scale-1800: 512;
176
+ --md-sys-outline-width: 1px;
177
+ --md-sys-outline-width-medium: 2px;
178
+ --md-sys-outline-width-thick: 5px;
179
+ --md-sys-outline-width-extra-thick: 8px;
180
+ --md-sys-outline-width-none: 0;
181
+ --md-sys-shape-corner-extra-small: 2px;
182
+ --md-sys-shape-corner-small: 5px;
183
+ --md-sys-shape-corner-medium: 8px;
184
+ --md-sys-shape-corner-large: 12px;
185
+ --md-sys-shape-corner-none: 0;
186
+ --md-sys-shape-corner-full: 1000px;
187
+ --md-sys-spacing-50: 2px;
188
+ --md-sys-spacing-100: 5px;
189
+ --md-sys-spacing-200: 8px;
190
+ --md-sys-spacing-300: 12px;
191
+ --md-sys-spacing-400: 16px;
192
+ --md-sys-spacing-500: 20px;
193
+ --md-sys-spacing-600: 24px;
194
+ --md-sys-spacing-700: 28px;
195
+ --md-sys-spacing-800: 32px;
196
+ --md-sys-spacing-900: 36px;
197
+ --md-sys-spacing-1000: 40px;
198
+ --md-sys-spacing-none: 0;
199
+ --md-sys-padding-50: 2px;
200
+ --md-sys-padding-100: 5px;
201
+ --md-sys-padding-200: 8px;
202
+ --md-sys-padding-300: 12px;
203
+ --md-sys-padding-400: 16px;
204
+ --md-sys-padding-500: 20px;
205
+ --md-sys-padding-600: 24px;
206
+ --md-sys-padding-700: 28px;
207
+ --md-sys-padding-800: 32px;
208
+ --md-sys-padding-900: 36px;
209
+ --md-sys-padding-1000: 40px;
210
+ --md-sys-padding-1100: 48px;
211
+ --md-sys-padding-1200: 56px;
212
+ --md-sys-padding-1300: 64px;
213
+ --md-sys-padding-1400: 72px;
214
+ --md-sys-padding-none: 0;
215
+ --md-sys-typescale-title-large-font: Proxima Nova;
216
+ --md-sys-typescale-title-large-weight: 400;
217
+ --md-sys-typescale-title-large-weight-prominent: 600;
218
+ --md-sys-typescale-title-large-size: 1.375rem;
219
+ --md-sys-typescale-title-large-tracking: 0;
220
+ --md-sys-typescale-title-large-line-height: 1.75rem;
221
+ --md-sys-typescale-title-medium-font: Proxima Nova;
222
+ --md-sys-typescale-title-medium-weight: 600;
223
+ --md-sys-typescale-title-medium-weight-prominent: 700;
224
+ --md-sys-typescale-title-medium-size: 1rem;
225
+ --md-sys-typescale-title-medium-tracking: 0.00937em;
226
+ --md-sys-typescale-title-medium-line-height: 1.5rem;
227
+ --md-sys-typescale-title-small-font: Proxima Nova;
228
+ --md-sys-typescale-title-small-weight: 600;
229
+ --md-sys-typescale-title-small-weight-prominent: 700;
230
+ --md-sys-typescale-title-small-size: 0.875rem;
231
+ --md-sys-typescale-title-small-tracking: 0.00357em;
232
+ --md-sys-typescale-title-small-line-height: 1.25rem;
233
+ --md-sys-typescale-label-large-font: Proxima Nova;
234
+ --md-sys-typescale-label-large-weight: 600;
235
+ --md-sys-typescale-label-large-weight-prominent: 700;
236
+ --md-sys-typescale-label-large-size: 0.875rem;
237
+ --md-sys-typescale-label-large-tracking: 0.00357em;
238
+ --md-sys-typescale-label-large-line-height: 1.25rem;
239
+ --md-sys-typescale-label-medium-font: Proxima Nova;
240
+ --md-sys-typescale-label-medium-weight: 600;
241
+ --md-sys-typescale-label-medium-weight-prominent: 700;
242
+ --md-sys-typescale-label-medium-size: 0.75rem;
243
+ --md-sys-typescale-label-medium-tracking: 0.02083em;
244
+ --md-sys-typescale-label-medium-line-height: 1rem;
245
+ --md-sys-typescale-label-small-font: Proxima Nova;
246
+ --md-sys-typescale-label-small-weight: 600;
247
+ --md-sys-typescale-label-small-weight-prominent: 700;
248
+ --md-sys-typescale-label-small-size: 0.6875rem;
249
+ --md-sys-typescale-label-small-tracking: 0.02273em;
250
+ --md-sys-typescale-label-small-line-height: 1rem;
251
+ --md-sys-typescale-headline-small-font: Proxima Nova;
252
+ --md-sys-typescale-headline-small-weight: 400;
253
+ --md-sys-typescale-headline-small-weight-prominent: 600;
254
+ --md-sys-typescale-headline-small-size: 1.5rem;
255
+ --md-sys-typescale-headline-small-tracking: 0;
256
+ --md-sys-typescale-headline-small-line-height: 2rem;
257
+ --md-sys-typescale-headline-medium-font: Proxima Nova;
258
+ --md-sys-typescale-headline-medium-weight: 400;
259
+ --md-sys-typescale-headline-medium-weight-prominent: 600;
260
+ --md-sys-typescale-headline-medium-size: 1.75rem;
261
+ --md-sys-typescale-headline-medium-tracking: 0;
262
+ --md-sys-typescale-headline-medium-line-height: 2.25rem;
263
+ --md-sys-typescale-headline-large-font: Proxima Nova;
264
+ --md-sys-typescale-headline-large-weight: 400;
265
+ --md-sys-typescale-headline-large-weight-prominent: 600;
266
+ --md-sys-typescale-headline-large-size: 2rem;
267
+ --md-sys-typescale-headline-large-tracking: 0;
268
+ --md-sys-typescale-headline-large-line-height: 2.5rem;
269
+ --md-sys-typescale-display-small-font: Proxima Nova;
270
+ --md-sys-typescale-display-small-weight: 400;
271
+ --md-sys-typescale-display-small-weight-prominent: 600;
272
+ --md-sys-typescale-display-small-size: 2.25rem;
273
+ --md-sys-typescale-display-small-tracking: 0;
274
+ --md-sys-typescale-display-small-line-height: 2.75rem;
275
+ --md-sys-typescale-display-medium-font: Proxima Nova;
276
+ --md-sys-typescale-display-medium-weight: 400;
277
+ --md-sys-typescale-display-medium-weight-prominent: 600;
278
+ --md-sys-typescale-display-medium-size: 2.8125rem;
279
+ --md-sys-typescale-display-medium-line-height: 3.25rem;
280
+ --md-sys-typescale-display-medium-tracking: 0;
281
+ --md-sys-typescale-display-large-font: Proxima Nova;
282
+ --md-sys-typescale-display-large-weight: 400;
283
+ --md-sys-typescale-display-large-weight-prominent: 600;
284
+ --md-sys-typescale-display-large-size: 3.5625rem;
285
+ --md-sys-typescale-display-large-tracking: -0.00439em;
286
+ --md-sys-typescale-display-large-line-height: 4rem;
287
+ --md-sys-typescale-body-large-font: Proxima Nova;
288
+ --md-sys-typescale-body-large-weight: 400;
289
+ --md-sys-typescale-body-large-weight-prominent: 600;
290
+ --md-sys-typescale-body-large-size: 1rem;
291
+ --md-sys-typescale-body-large-tracking: 0.00625em;
292
+ --md-sys-typescale-body-large-line-height: 1.5rem;
293
+ --md-sys-typescale-body-medium-font: Proxima Nova;
294
+ --md-sys-typescale-body-medium-weight: 400;
295
+ --md-sys-typescale-body-medium-weight-prominent: 600;
296
+ --md-sys-typescale-body-medium-size: 0.875rem;
297
+ --md-sys-typescale-body-medium-tracking: 0.00357em;
298
+ --md-sys-typescale-body-medium-line-height: 1.25rem;
299
+ --md-sys-typescale-body-small-font: Proxima Nova;
300
+ --md-sys-typescale-body-small-weight: 400;
301
+ --md-sys-typescale-body-small-weight-prominent: 600;
302
+ --md-sys-typescale-body-small-size: 0.75rem;
303
+ --md-sys-typescale-body-small-tracking: 0.00833em;
304
+ --md-sys-typescale-body-small-line-height: 1rem;
305
+ --md-sys-elevation-level0: none;
306
+ --md-sys-elevation-level1: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
307
+ --md-sys-elevation-level2: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
308
+ --md-sys-elevation-level3: 0px 1px 3px rgba(0, 0, 0, 0.3), 0px 4px 8px 3px rgba(0, 0, 0, 0.15);
309
+ --md-sys-elevation-level4: 0px 2px 3px rgba(0, 0, 0, 0.3), 0px 6px 10px 4px rgba(0, 0, 0, 0.15);
310
+ --md-sys-elevation-level5: 0px 4px 4px rgba(0, 0, 0, 0.3), 0px 8px 12px 6px rgba(0, 0, 0, 0.15);
311
+ }
312
+
313
+
314
+ /**
315
+ * Font loading for Proxima Nova font family
316
+ */
317
+
318
+ @font-face {
319
+ font-family: 'Proxima Nova';
320
+ src: url('./fonts/ProximaNova-Regular.woff2') format('woff2');
321
+ font-weight: 400;
322
+ font-style: normal;
323
+ font-display: swap;
324
+ }
325
+
326
+ @font-face {
327
+ font-family: 'Proxima Nova';
328
+ src: url('./fonts/ProximaNova-Medium.woff2') format('woff2');
329
+ font-weight: 500;
330
+ font-style: normal;
331
+ font-display: swap;
332
+ }
333
+
334
+ @font-face {
335
+ font-family: 'Proxima Nova';
336
+ src: url('./fonts/ProximaNova-Semibold.woff2') format('woff2');
337
+ font-weight: 600;
338
+ font-style: normal;
339
+ font-display: swap;
340
+ }
341
+
342
+ @font-face {
343
+ font-family: 'Proxima Nova';
344
+ src: url('./fonts/ProximaNova-Bold.woff2') format('woff2');
345
+ font-weight: 700;
346
+ font-style: normal;
347
+ font-display: swap;
348
+ }
349
+
350
+ @font-face {
351
+ font-family: 'Proxima Nova';
352
+ src: url('./fonts/ProximaNova-Light.woff2') format('woff2');
353
+ font-weight: 300;
354
+ font-style: normal;
355
+ font-display: swap;
356
+ }
357
+
358
+ @font-face {
359
+ font-family: 'Proxima Nova';
360
+ src: url('./fonts/ProximaNova-Extrabld.woff2') format('woff2');
361
+ font-weight: 800;
362
+ font-style: normal;
363
+ font-display: swap;
364
+ }
365
+
366
+ @font-face {
367
+ font-family: 'Proxima Nova Condensed';
368
+ src: url('./fonts/ProximaNovaCond-Semibold.woff2') format('woff2');
369
+ font-weight: 600;
370
+ font-style: normal;
371
+ font-display: swap;
372
+ }
@@ -0,0 +1,2 @@
1
+ import "./theme.es.js";
2
+ import "./fonts.es.js";
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,30 @@
1
+ import { LitElement } from 'lit';
2
+ import '@material/web/button/filled-button.js';
3
+ import '@material/web/button/outlined-button.js';
4
+ import '@material/web/button/text-button.js';
5
+ import '@material/web/button/elevated-button.js';
6
+ import '@material/web/button/filled-tonal-button.js';
7
+ import '@material/web/icon/icon.js';
8
+ /**
9
+ * @customElement pd-button
10
+ * @summary The Prioticket button component using Material Web Components.
11
+ *
12
+ * @slot - The default slot for the button's label.
13
+ *
14
+ * @cssprop --shape-corner - Overrides the default border radius.
15
+ */
16
+ export declare class PdButton extends LitElement {
17
+ /** The style variant of the button. */
18
+ variant: 'filled' | 'outlined' | 'text' | 'elevated' | 'tonal';
19
+ /** The size of the button, controlling height, padding, and font size. */
20
+ size: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
21
+ /** The name of the Material Icon to display. */
22
+ icon: string;
23
+ /** If true, the icon will be placed after the label. */
24
+ iconTrailing: boolean;
25
+ /** If true, the button is disabled. */
26
+ disabled: boolean;
27
+ private getButtonTemplate;
28
+ render(): import("lit-html").TemplateResult<1>;
29
+ static styles: import("lit").CSSResult;
30
+ }
@@ -0,0 +1,8 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class PdCard extends LitElement {
3
+ variant: 'elevated' | 'filled' | 'outlined';
4
+ clickable: boolean;
5
+ render(): import("lit-html").TemplateResult<1>;
6
+ private _handleClick;
7
+ static styles: import("lit").CSSResult;
8
+ }
@@ -0,0 +1,16 @@
1
+ import { LitElement } from 'lit';
2
+ import '@material/web/checkbox/checkbox.js';
3
+ export declare class PdCheckbox extends LitElement {
4
+ checked: boolean;
5
+ indeterminate: boolean;
6
+ disabled: boolean;
7
+ required: boolean;
8
+ value: string;
9
+ name: string;
10
+ label: string;
11
+ touchTarget: boolean;
12
+ render(): import("lit-html").TemplateResult<1>;
13
+ private _handleChange;
14
+ private _handleInput;
15
+ static styles: import("lit").CSSResult;
16
+ }
@@ -0,0 +1,26 @@
1
+ import { LitElement } from 'lit';
2
+ import '@material/web/chips/assist-chip.js';
3
+ import '@material/web/chips/filter-chip.js';
4
+ import '@material/web/chips/input-chip.js';
5
+ import '@material/web/chips/suggestion-chip.js';
6
+ import '@material/web/icon/icon.js';
7
+ export declare class PdChip extends LitElement {
8
+ variant: 'assist' | 'filter' | 'input' | 'suggestion';
9
+ label: string;
10
+ disabled: boolean;
11
+ alwaysFocusable: boolean;
12
+ hasIcon: boolean;
13
+ icon: string;
14
+ selected: boolean;
15
+ removable: boolean;
16
+ elevated: boolean;
17
+ href: string;
18
+ target: string;
19
+ avatar: boolean;
20
+ removeOnly: boolean;
21
+ private getChipTemplate;
22
+ render(): import("lit-html").TemplateResult<1>;
23
+ private _handleClick;
24
+ private _handleRemove;
25
+ static styles: import("lit").CSSResult;
26
+ }
@@ -0,0 +1,49 @@
1
+ import { LitElement } from 'lit';
2
+ import '@material/web/dialog/dialog.js';
3
+ import '@material/web/button/text-button.js';
4
+ import '@material/web/button/filled-button.js';
5
+ import '@material/web/icon/icon.js';
6
+ /**
7
+ * @customElement pd-dialog
8
+ * @summary The Prioticket dialog component using Material Web Components.
9
+ *
10
+ * @slot - The main content of the dialog.
11
+ * @slot headline - The dialog title/headline.
12
+ * @slot actions - Action buttons (typically in the bottom area).
13
+ *
14
+ * @fires open - Fired when the dialog is opened.
15
+ * @fires closed - Fired when the dialog is closed.
16
+ *
17
+ * @cssprop --shape-corner - Overrides the default border radius.
18
+ */
19
+ export declare class PdDialog extends LitElement {
20
+ /** Whether the dialog is currently open. */
21
+ open: boolean;
22
+ /** The size/width variant of the dialog. */
23
+ size: 'small' | 'medium' | 'large' | 'fullscreen';
24
+ /** The type of dialog - affects styling and behavior. */
25
+ variant: 'alert' | 'confirm' | 'form' | 'custom';
26
+ /** The dialog headline/title text. */
27
+ headline: string;
28
+ /** Primary action button text. */
29
+ primaryAction: string;
30
+ /** Secondary action button text (usually "Cancel"). */
31
+ secondaryAction: string;
32
+ /** Whether the dialog is closable by clicking outside or pressing ESC. */
33
+ closableByBackdrop: boolean;
34
+ /** Whether to show a close button in the header. */
35
+ showCloseButton: boolean;
36
+ private dialogElement;
37
+ /** Opens the dialog. */
38
+ openDialog(): void;
39
+ /** Closes the dialog. */
40
+ closeDialog(): void;
41
+ /** Toggles the dialog open state. */
42
+ toggle(): void;
43
+ private handleDialogOpen;
44
+ private handleDialogClose;
45
+ private handlePrimaryAction;
46
+ private handleSecondaryAction;
47
+ render(): import("lit-html").TemplateResult<1>;
48
+ static styles: import("lit").CSSResult;
49
+ }
@@ -0,0 +1,39 @@
1
+ import { LitElement } from 'lit';
2
+ import '@material/web/icon/icon.js';
3
+ import '@material/web/iconbutton/icon-button.js';
4
+ /**
5
+ * @customElement pd-expandable-card
6
+ * @summary An expandable card component that can show/hide content with animation.
7
+ *
8
+ * @slot header - The main header content (always visible)
9
+ * @slot - The expandable content (shown when expanded)
10
+ *
11
+ * @fires expand - Fired when the card is expanded
12
+ * @fires collapse - Fired when the card is collapsed
13
+ */
14
+ export declare class PdExpandableCard extends LitElement {
15
+ /** The style variant of the card. */
16
+ variant: 'elevated' | 'filled' | 'outlined';
17
+ /** Whether the card is expanded by default. */
18
+ expanded: boolean;
19
+ /** The icon to show when collapsed (pointing down). */
20
+ expandIcon: string;
21
+ /** The icon to show when expanded (pointing up). */
22
+ collapseIcon: string;
23
+ /** If true, the entire header area becomes clickable. */
24
+ headerClickable: boolean;
25
+ /** Internal state to track expansion */
26
+ private _expanded;
27
+ connectedCallback(): void;
28
+ /** Toggles the expanded state */
29
+ toggle(): void;
30
+ /** Expands the card */
31
+ expand(): void;
32
+ /** Collapses the card */
33
+ collapse(): void;
34
+ private _dispatchExpandEvent;
35
+ private _handleToggle;
36
+ private _handleHeaderClick;
37
+ render(): import("lit-html").TemplateResult<1>;
38
+ static styles: import("lit").CSSResult;
39
+ }
@@ -0,0 +1,17 @@
1
+ import { LitElement } from 'lit';
2
+ import '@material/web/fab/fab.js';
3
+ import '@material/web/fab/branded-fab.js';
4
+ import '@material/web/icon/icon.js';
5
+ export declare class PdFab extends LitElement {
6
+ variant: 'surface' | 'primary' | 'secondary' | 'tertiary' | 'branded';
7
+ size: 'small' | 'medium' | 'large';
8
+ icon: string;
9
+ label: string;
10
+ lowered: boolean;
11
+ disabled: boolean;
12
+ ariaLabel: string;
13
+ private getFabTemplate;
14
+ render(): import("lit-html").TemplateResult<1>;
15
+ private _handleClick;
16
+ static styles: import("lit").CSSResult;
17
+ }
@@ -0,0 +1,24 @@
1
+ import { LitElement } from 'lit';
2
+ import '@material/web/iconbutton/icon-button.js';
3
+ import '@material/web/iconbutton/filled-icon-button.js';
4
+ import '@material/web/iconbutton/filled-tonal-icon-button.js';
5
+ import '@material/web/iconbutton/outlined-icon-button.js';
6
+ import '@material/web/icon/icon.js';
7
+ export declare class PdIconButton extends LitElement {
8
+ variant: 'standard' | 'filled' | 'tonal' | 'outlined';
9
+ icon: string;
10
+ selectedIcon: string;
11
+ disabled: boolean;
12
+ toggle: boolean;
13
+ selected: boolean;
14
+ href: string;
15
+ target: string;
16
+ ariaLabel: string;
17
+ ariaLabelSelected: string;
18
+ private getIconButtonTemplate;
19
+ render(): import("lit-html").TemplateResult<1>;
20
+ private _handleClick;
21
+ private _handleInput;
22
+ private _handleChange;
23
+ static styles: import("lit").CSSResult;
24
+ }
@@ -0,0 +1,9 @@
1
+ import { LitElement } from 'lit';
2
+ import '@material/web/icon/icon.js';
3
+ export declare class PdIcon extends LitElement {
4
+ name: string;
5
+ size: 'small' | 'medium' | 'large';
6
+ variant: 'filled' | 'outlined' | 'round' | 'sharp' | 'two-tone';
7
+ render(): import("lit-html").TemplateResult<1>;
8
+ static styles: import("lit").CSSResult;
9
+ }
@@ -0,0 +1,36 @@
1
+ import { LitElement } from 'lit';
2
+ import '@material/web/list/list.js';
3
+ import '@material/web/list/list-item.js';
4
+ import '@material/web/divider/divider.js';
5
+ import '@material/web/icon/icon.js';
6
+ export declare class PdList extends LitElement {
7
+ role: string;
8
+ tabindex: number;
9
+ render(): import("lit-html").TemplateResult<1>;
10
+ static styles: import("lit").CSSResult;
11
+ }
12
+ export declare class PdListItem extends LitElement {
13
+ type: 'text' | 'link' | 'button';
14
+ headline: string;
15
+ supportingText: string;
16
+ trailingSupportingText: string;
17
+ href: string;
18
+ target: string;
19
+ disabled: boolean;
20
+ icon: string;
21
+ trailingIcon: string;
22
+ avatar: string;
23
+ image: string;
24
+ tabindex?: number;
25
+ private getListItemTemplate;
26
+ render(): import("lit-html").TemplateResult<1>;
27
+ private _handleClick;
28
+ private _handleKeydown;
29
+ static styles: import("lit").CSSResult;
30
+ }
31
+ export declare class PdListDivider extends LitElement {
32
+ inset: boolean;
33
+ role: string;
34
+ render(): import("lit-html").TemplateResult<1>;
35
+ static styles: import("lit").CSSResult;
36
+ }