overview-components 1.0.76 → 1.0.77
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.
- package/dist/assets/icons/iconGlyphs.js +680 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +51 -32
- package/dist/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +277 -193
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +82 -78
- package/dist/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +22 -21
- package/dist/node_modules/lit-html/directives/class-map.js +34 -0
- package/dist/shared/lit-checkbox.js +155 -0
- package/dist/shared/lit-icon.js +282 -0
- package/dist/shared/lit-input.js +211 -0
- package/dist/shared/lit-menu.js +40 -0
- package/dist/shared/lit-modal.js +128 -0
- package/dist/shared/lit-pill.js +86 -0
- package/dist/shared/lit-select.js +339 -0
- package/dist/shared/lit-tooltip.js +137 -0
- package/dist/styles.js +174 -0
- package/package.json +1 -1
package/dist/styles.js
ADDED
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import "./node_modules/@lit/reactive-element/reactive-element.js";
|
|
2
|
+
import "./node_modules/lit-html/lit-html.js";
|
|
3
|
+
import "./node_modules/lit-element/lit-element.js";
|
|
4
|
+
import { css as o } from "./node_modules/@lit/reactive-element/css-tag.js";
|
|
5
|
+
const n = o`
|
|
6
|
+
:host {
|
|
7
|
+
--breakpoint-sm: 600px;
|
|
8
|
+
--breakpoint-md: 960px;
|
|
9
|
+
--breakpoint-lg: 1280px;
|
|
10
|
+
--breakpoint-xl: 1536px;
|
|
11
|
+
|
|
12
|
+
--color-primary-main: #76b703;
|
|
13
|
+
--color-primary-light: #f0fadf;
|
|
14
|
+
--color-primary-dark: #5f9402;
|
|
15
|
+
--color-primary-disabled: #d0d3db;
|
|
16
|
+
|
|
17
|
+
--color-secondary-main: #111827;
|
|
18
|
+
--color-secondary-light: #d0d3db;
|
|
19
|
+
--color-secondary-dark: #010204;
|
|
20
|
+
|
|
21
|
+
--color-info-main: #00687e;
|
|
22
|
+
--color-info-light: #cbf6ff;
|
|
23
|
+
--color-info-dark: #004452;
|
|
24
|
+
|
|
25
|
+
--color-warning-main: #875900;
|
|
26
|
+
--color-warning-light: #ffe1a8;
|
|
27
|
+
--color-warning-dark: #684500;
|
|
28
|
+
|
|
29
|
+
--color-error-main: #ca2d0a;
|
|
30
|
+
--color-error-light: #ffd6cd;
|
|
31
|
+
--color-error-dark: #a52103;
|
|
32
|
+
|
|
33
|
+
--color-success-main: #76b703;
|
|
34
|
+
--color-success-light: #f0fadf;
|
|
35
|
+
--color-success-dark: #5f9402;
|
|
36
|
+
|
|
37
|
+
--color-divider: #d0d3db;
|
|
38
|
+
|
|
39
|
+
--text-primary: #111827;
|
|
40
|
+
--text-secondary: #5d6371;
|
|
41
|
+
--text-disabled: #d0d3db;
|
|
42
|
+
|
|
43
|
+
--background-paper: #ffffff;
|
|
44
|
+
--background-default: #eff3f4;
|
|
45
|
+
|
|
46
|
+
--border-radius-small: 0.5rem;
|
|
47
|
+
--border-radius-medium: 0.75rem;
|
|
48
|
+
|
|
49
|
+
--box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
|
|
50
|
+
|
|
51
|
+
--section-padding: 0.75rem 1rem;
|
|
52
|
+
|
|
53
|
+
font-family: Inter, sans-serif;
|
|
54
|
+
box-sizing: border-box;
|
|
55
|
+
|
|
56
|
+
*,
|
|
57
|
+
*::before,
|
|
58
|
+
*::after {
|
|
59
|
+
margin: 0;
|
|
60
|
+
padding: 0;
|
|
61
|
+
box-sizing: border-box;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
* {
|
|
65
|
+
box-sizing: border-box;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
article,
|
|
69
|
+
aside,
|
|
70
|
+
details,
|
|
71
|
+
figcaption,
|
|
72
|
+
figure,
|
|
73
|
+
footer,
|
|
74
|
+
header,
|
|
75
|
+
hgroup,
|
|
76
|
+
main,
|
|
77
|
+
menu,
|
|
78
|
+
nav,
|
|
79
|
+
section {
|
|
80
|
+
display: block;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
ol,
|
|
84
|
+
ul {
|
|
85
|
+
list-style: none;
|
|
86
|
+
}
|
|
87
|
+
a {
|
|
88
|
+
text-decoration: none;
|
|
89
|
+
color: inherit;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
img,
|
|
93
|
+
video {
|
|
94
|
+
max-width: 100%;
|
|
95
|
+
height: auto;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
button,
|
|
99
|
+
input,
|
|
100
|
+
optgroup,
|
|
101
|
+
select,
|
|
102
|
+
textarea {
|
|
103
|
+
font: inherit;
|
|
104
|
+
color: inherit;
|
|
105
|
+
margin: 0;
|
|
106
|
+
border: none;
|
|
107
|
+
background: none;
|
|
108
|
+
padding: 0;
|
|
109
|
+
appearance: none;
|
|
110
|
+
-webkit-appearance: none;
|
|
111
|
+
-moz-appearance: none;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
table {
|
|
115
|
+
border-collapse: collapse;
|
|
116
|
+
border-spacing: 0;
|
|
117
|
+
width: 100%;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
html {
|
|
121
|
+
font-size: 100%; /* 16px base */
|
|
122
|
+
line-height: 1.5;
|
|
123
|
+
scroll-behavior: smooth;
|
|
124
|
+
-webkit-text-size-adjust: 100%; /* Prevent font scaling in Safari */
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
body {
|
|
128
|
+
font-family:
|
|
129
|
+
system-ui,
|
|
130
|
+
-apple-system,
|
|
131
|
+
BlinkMacSystemFont,
|
|
132
|
+
'Segoe UI',
|
|
133
|
+
Roboto,
|
|
134
|
+
Oxygen,
|
|
135
|
+
Ubuntu,
|
|
136
|
+
Cantarell,
|
|
137
|
+
'Open Sans',
|
|
138
|
+
'Helvetica Neue',
|
|
139
|
+
sans-serif;
|
|
140
|
+
line-height: 1.6;
|
|
141
|
+
color: #333;
|
|
142
|
+
background-color: #fff;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
strong {
|
|
146
|
+
font-weight: bold;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
h1,
|
|
150
|
+
h2,
|
|
151
|
+
h3,
|
|
152
|
+
h4,
|
|
153
|
+
h5,
|
|
154
|
+
h6 {
|
|
155
|
+
font-size: inherit;
|
|
156
|
+
font-weight: inherit;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
blockquote,
|
|
160
|
+
q {
|
|
161
|
+
quotes: none;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
blockquote::before,
|
|
165
|
+
blockquote::after,
|
|
166
|
+
q::before,
|
|
167
|
+
q::after {
|
|
168
|
+
content: '';
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
`;
|
|
172
|
+
export {
|
|
173
|
+
n as default
|
|
174
|
+
};
|