@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,59 @@
1
+ /**
2
+ * Font loading for Proxima Nova font family
3
+ */
4
+
5
+ @font-face {
6
+ font-family: 'Proxima Nova';
7
+ src: url('./fonts/ProximaNova-Regular.woff2') format('woff2');
8
+ font-weight: 400;
9
+ font-style: normal;
10
+ font-display: swap;
11
+ }
12
+
13
+ @font-face {
14
+ font-family: 'Proxima Nova';
15
+ src: url('./fonts/ProximaNova-Medium.woff2') format('woff2');
16
+ font-weight: 500;
17
+ font-style: normal;
18
+ font-display: swap;
19
+ }
20
+
21
+ @font-face {
22
+ font-family: 'Proxima Nova';
23
+ src: url('./fonts/ProximaNova-Semibold.woff2') format('woff2');
24
+ font-weight: 600;
25
+ font-style: normal;
26
+ font-display: swap;
27
+ }
28
+
29
+ @font-face {
30
+ font-family: 'Proxima Nova';
31
+ src: url('./fonts/ProximaNova-Bold.woff2') format('woff2');
32
+ font-weight: 700;
33
+ font-style: normal;
34
+ font-display: swap;
35
+ }
36
+
37
+ @font-face {
38
+ font-family: 'Proxima Nova';
39
+ src: url('./fonts/ProximaNova-Light.woff2') format('woff2');
40
+ font-weight: 300;
41
+ font-style: normal;
42
+ font-display: swap;
43
+ }
44
+
45
+ @font-face {
46
+ font-family: 'Proxima Nova';
47
+ src: url('./fonts/ProximaNova-Extrabld.woff2') format('woff2');
48
+ font-weight: 800;
49
+ font-style: normal;
50
+ font-display: swap;
51
+ }
52
+
53
+ @font-face {
54
+ font-family: 'Proxima Nova Condensed';
55
+ src: url('./fonts/ProximaNovaCond-Semibold.woff2') format('woff2');
56
+ font-weight: 600;
57
+ font-style: normal;
58
+ font-display: swap;
59
+ }
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1 @@
1
+
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./components/pd-button.cjs.js"),u=require("./components/pd-text-field.cjs.js"),p=require("./components/pd-card.cjs.js"),c=require("./components/pd-icon.cjs.js"),P=require("./components/pd-dialog.cjs.js"),i=require("./components/pd-expandable-card.cjs.js"),b=require("./components/pd-checkbox.cjs.js"),m=require("./components/pd-chip.cjs.js"),s=require("./components/pd-fab.cjs.js"),a=require("./components/pd-icon-button.cjs.js"),e=require("./components/pd-list.cjs.js"),l=require("./components/pd-menu.cjs.js"),g=require("./components/pd-menu-item.cjs.js"),y=require("./components/pd-progress.cjs.js"),t=require("./components/pd-radio.cjs.js"),f=require("./components/pd-select.cjs.js"),j=require("./components/pd-slider.cjs.js"),O=require("./components/pd-switch.cjs.js"),r=require("./components/pd-tabs.cjs.js"),n=require("./components/pd-segmented-button.cjs.js"),d=require("./components/pd-segmented-stepper.cjs.js"),S=require("./components/pd-stepper.cjs.js");Object.defineProperty(exports,"PdButton",{enumerable:!0,get:()=>o.PdButton});Object.defineProperty(exports,"PdTextField",{enumerable:!0,get:()=>u.PdTextField});Object.defineProperty(exports,"PdCard",{enumerable:!0,get:()=>p.PdCard});Object.defineProperty(exports,"PdIcon",{enumerable:!0,get:()=>c.PdIcon});Object.defineProperty(exports,"PdDialog",{enumerable:!0,get:()=>P.PdDialog});Object.defineProperty(exports,"PdExpandableCard",{enumerable:!0,get:()=>i.PdExpandableCard});Object.defineProperty(exports,"PdCheckbox",{enumerable:!0,get:()=>b.PdCheckbox});Object.defineProperty(exports,"PdChip",{enumerable:!0,get:()=>m.PdChip});Object.defineProperty(exports,"PdFab",{enumerable:!0,get:()=>s.PdFab});Object.defineProperty(exports,"PdIconButton",{enumerable:!0,get:()=>a.PdIconButton});Object.defineProperty(exports,"PdList",{enumerable:!0,get:()=>e.PdList});Object.defineProperty(exports,"PdListDivider",{enumerable:!0,get:()=>e.PdListDivider});Object.defineProperty(exports,"PdListItem",{enumerable:!0,get:()=>e.PdListItem});Object.defineProperty(exports,"PdMenu",{enumerable:!0,get:()=>l.PdMenu});Object.defineProperty(exports,"PdMenuItemM",{enumerable:!0,get:()=>g.PdMenuItemM});Object.defineProperty(exports,"PdProgress",{enumerable:!0,get:()=>y.PdProgress});Object.defineProperty(exports,"PdRadio",{enumerable:!0,get:()=>t.PdRadio});Object.defineProperty(exports,"PdRadioGroup",{enumerable:!0,get:()=>t.PdRadioGroup});Object.defineProperty(exports,"PdSelect",{enumerable:!0,get:()=>f.PdSelect});Object.defineProperty(exports,"PdSlider",{enumerable:!0,get:()=>j.PdSlider});Object.defineProperty(exports,"PdSwitch",{enumerable:!0,get:()=>O.PdSwitch});Object.defineProperty(exports,"PdTab",{enumerable:!0,get:()=>r.PdTab});Object.defineProperty(exports,"PdTabs",{enumerable:!0,get:()=>r.PdTabs});Object.defineProperty(exports,"PdSegmentItem",{enumerable:!0,get:()=>n.PdSegmentItem});Object.defineProperty(exports,"PdSegmentedButton",{enumerable:!0,get:()=>n.PdSegmentedButton});Object.defineProperty(exports,"PdSegmentedStepper",{enumerable:!0,get:()=>d.PdSegmentedStepper});Object.defineProperty(exports,"PdStepperItem",{enumerable:!0,get:()=>d.PdStepperItem});Object.defineProperty(exports,"PdStepper",{enumerable:!0,get:()=>S.PdStepper});
@@ -0,0 +1,52 @@
1
+ import { PdButton as e } from "./components/pd-button.es.js";
2
+ import { PdTextField as d } from "./components/pd-text-field.es.js";
3
+ import { PdCard as m } from "./components/pd-card.es.js";
4
+ import { PdIcon as x } from "./components/pd-icon.es.js";
5
+ import { PdDialog as i } from "./components/pd-dialog.es.js";
6
+ import { PdExpandableCard as a } from "./components/pd-expandable-card.es.js";
7
+ import { PdCheckbox as s } from "./components/pd-checkbox.es.js";
8
+ import { PdChip as I } from "./components/pd-chip.es.js";
9
+ import { PdFab as c } from "./components/pd-fab.es.js";
10
+ import { PdIconButton as l } from "./components/pd-icon-button.es.js";
11
+ import { PdList as h, PdListDivider as B, PdListItem as L } from "./components/pd-list.es.js";
12
+ import { PdMenu as T } from "./components/pd-menu.es.js";
13
+ import { PdMenuItemM as F } from "./components/pd-menu-item.es.js";
14
+ import { PdProgress as k } from "./components/pd-progress.es.js";
15
+ import { PdRadio as w, PdRadioGroup as E } from "./components/pd-radio.es.js";
16
+ import { PdSelect as j } from "./components/pd-select.es.js";
17
+ import { PdSlider as y } from "./components/pd-slider.es.js";
18
+ import { PdSwitch as A } from "./components/pd-switch.es.js";
19
+ import { PdTab as J, PdTabs as K } from "./components/pd-tabs.es.js";
20
+ import { PdSegmentItem as O, PdSegmentedButton as Q } from "./components/pd-segmented-button.es.js";
21
+ import { PdSegmentedStepper as V, PdStepperItem as W } from "./components/pd-segmented-stepper.es.js";
22
+ import { PdStepper as Y } from "./components/pd-stepper.es.js";
23
+ export {
24
+ e as PdButton,
25
+ m as PdCard,
26
+ s as PdCheckbox,
27
+ I as PdChip,
28
+ i as PdDialog,
29
+ a as PdExpandableCard,
30
+ c as PdFab,
31
+ x as PdIcon,
32
+ l as PdIconButton,
33
+ h as PdList,
34
+ B as PdListDivider,
35
+ L as PdListItem,
36
+ T as PdMenu,
37
+ F as PdMenuItemM,
38
+ k as PdProgress,
39
+ w as PdRadio,
40
+ E as PdRadioGroup,
41
+ O as PdSegmentItem,
42
+ Q as PdSegmentedButton,
43
+ V as PdSegmentedStepper,
44
+ j as PdSelect,
45
+ y as PdSlider,
46
+ Y as PdStepper,
47
+ W as PdStepperItem,
48
+ A as PdSwitch,
49
+ J as PdTab,
50
+ K as PdTabs,
51
+ d as PdTextField
52
+ };
@@ -0,0 +1,311 @@
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
+ }
@@ -0,0 +1 @@
1
+ "use strict";require("./theme.cjs.js");require("./fonts.cjs.js");