@lukso/web-components 1.184.0 → 1.186.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.
- package/dist/components/lukso-button/index.cjs +13 -6
- package/dist/components/lukso-button/index.d.ts.map +1 -1
- package/dist/components/lukso-button/index.js +13 -6
- package/dist/components/lukso-button/lukso-button.stories.d.ts +2 -0
- package/dist/components/lukso-button/lukso-button.stories.d.ts.map +1 -1
- package/dist/components/lukso-search/index.cjs +0 -5
- package/dist/components/lukso-search/index.d.ts.map +1 -1
- package/dist/components/lukso-search/index.js +0 -5
- package/dist/components/lukso-select/index.cjs +0 -1
- package/dist/components/lukso-select/index.d.ts.map +1 -1
- package/dist/components/lukso-select/index.js +0 -1
- package/dist/components/lukso-username/index.cjs +7 -12
- package/dist/components/lukso-username/index.d.ts +0 -3
- package/dist/components/lukso-username/index.d.ts.map +1 -1
- package/dist/components/lukso-username/index.js +7 -12
- package/dist/components/lukso-username/lukso-username.stories.d.ts +1 -1
- package/dist/components/lukso-username/lukso-username.stories.d.ts.map +1 -1
- package/dist/components/lukso-username/style.css.cjs +1 -1
- package/dist/components/lukso-username/style.css.js +1 -1
- package/dist/docs/Typography.stories.d.ts.map +1 -1
- package/dist/shared/tailwind-element/style.css.cjs +1 -1
- package/dist/shared/tailwind-element/style.css.js +1 -1
- package/dist/styles/component-v4.css +8 -0
- package/dist/styles/main.css +3 -0
- package/dist/styles/typography-v4.css +8 -0
- package/package.json +1 -1
- package/tools/sass/typography.scss +4 -0
- package/tools/styles/component-v4.css +8 -0
- package/tools/styles/main-v4.css +8 -0
- package/tools/styles/main.css +3 -0
- package/tools/styles/typography-v4.css +8 -0
|
@@ -872,6 +872,14 @@
|
|
|
872
872
|
line-height: var(--leading-32);
|
|
873
873
|
}
|
|
874
874
|
|
|
875
|
+
.paragraph-inter-20-semi-bold {
|
|
876
|
+
font-family: var(--font-inter);
|
|
877
|
+
font-size: var(--text-20);
|
|
878
|
+
font-weight: var(--font-weight-600);
|
|
879
|
+
font-style: normal;
|
|
880
|
+
line-height: var(--leading-32);
|
|
881
|
+
}
|
|
882
|
+
|
|
875
883
|
.paragraph-inter-16-regular {
|
|
876
884
|
font-family: var(--font-inter);
|
|
877
885
|
font-size: var(--text-16);
|
package/dist/styles/main.css
CHANGED
|
@@ -248,6 +248,9 @@
|
|
|
248
248
|
.paragraph-inter-20-regular {
|
|
249
249
|
@apply text-20 not-italic font-400 leading-32 font-inter;
|
|
250
250
|
}
|
|
251
|
+
.paragraph-inter-20-semi-bold {
|
|
252
|
+
@apply text-20 not-italic font-600 leading-32 font-inter;
|
|
253
|
+
}
|
|
251
254
|
.paragraph-inter-16-regular {
|
|
252
255
|
@apply text-16 not-italic font-400 leading-24 font-inter;
|
|
253
256
|
}
|
|
@@ -177,6 +177,14 @@
|
|
|
177
177
|
line-height: var(--leading-32);
|
|
178
178
|
}
|
|
179
179
|
|
|
180
|
+
.paragraph-inter-20-semi-bold {
|
|
181
|
+
font-family: var(--font-inter);
|
|
182
|
+
font-size: var(--text-20);
|
|
183
|
+
font-weight: var(--font-weight-600);
|
|
184
|
+
font-style: normal;
|
|
185
|
+
line-height: var(--leading-32);
|
|
186
|
+
}
|
|
187
|
+
|
|
180
188
|
.paragraph-inter-16-regular {
|
|
181
189
|
font-family: var(--font-inter);
|
|
182
190
|
font-size: var(--text-16);
|
package/package.json
CHANGED
|
@@ -90,6 +90,10 @@
|
|
|
90
90
|
@apply text-20 not-italic font-400 leading-32 font-inter;
|
|
91
91
|
}
|
|
92
92
|
|
|
93
|
+
.paragraph-inter-20-semi-bold {
|
|
94
|
+
@apply text-20 not-italic font-600 leading-32 font-inter;
|
|
95
|
+
}
|
|
96
|
+
|
|
93
97
|
.paragraph-inter-16-regular {
|
|
94
98
|
@apply text-16 not-italic font-400 leading-24 font-inter;
|
|
95
99
|
}
|
|
@@ -872,6 +872,14 @@
|
|
|
872
872
|
line-height: var(--leading-32);
|
|
873
873
|
}
|
|
874
874
|
|
|
875
|
+
.paragraph-inter-20-semi-bold {
|
|
876
|
+
font-family: var(--font-inter);
|
|
877
|
+
font-size: var(--text-20);
|
|
878
|
+
font-weight: var(--font-weight-600);
|
|
879
|
+
font-style: normal;
|
|
880
|
+
line-height: var(--leading-32);
|
|
881
|
+
}
|
|
882
|
+
|
|
875
883
|
.paragraph-inter-16-regular {
|
|
876
884
|
font-family: var(--font-inter);
|
|
877
885
|
font-size: var(--text-16);
|
package/tools/styles/main-v4.css
CHANGED
|
@@ -980,6 +980,14 @@
|
|
|
980
980
|
line-height: var(--leading-32);
|
|
981
981
|
}
|
|
982
982
|
|
|
983
|
+
.paragraph-inter-20-semi-bold {
|
|
984
|
+
font-family: var(--font-inter);
|
|
985
|
+
font-size: var(--text-20);
|
|
986
|
+
font-weight: var(--font-weight-600);
|
|
987
|
+
font-style: normal;
|
|
988
|
+
line-height: var(--leading-32);
|
|
989
|
+
}
|
|
990
|
+
|
|
983
991
|
.paragraph-inter-16-regular {
|
|
984
992
|
font-family: var(--font-inter);
|
|
985
993
|
font-size: var(--text-16);
|
package/tools/styles/main.css
CHANGED
|
@@ -248,6 +248,9 @@
|
|
|
248
248
|
.paragraph-inter-20-regular {
|
|
249
249
|
@apply text-20 not-italic font-400 leading-32 font-inter;
|
|
250
250
|
}
|
|
251
|
+
.paragraph-inter-20-semi-bold {
|
|
252
|
+
@apply text-20 not-italic font-600 leading-32 font-inter;
|
|
253
|
+
}
|
|
251
254
|
.paragraph-inter-16-regular {
|
|
252
255
|
@apply text-16 not-italic font-400 leading-24 font-inter;
|
|
253
256
|
}
|
|
@@ -177,6 +177,14 @@
|
|
|
177
177
|
line-height: var(--leading-32);
|
|
178
178
|
}
|
|
179
179
|
|
|
180
|
+
.paragraph-inter-20-semi-bold {
|
|
181
|
+
font-family: var(--font-inter);
|
|
182
|
+
font-size: var(--text-20);
|
|
183
|
+
font-weight: var(--font-weight-600);
|
|
184
|
+
font-style: normal;
|
|
185
|
+
line-height: var(--leading-32);
|
|
186
|
+
}
|
|
187
|
+
|
|
180
188
|
.paragraph-inter-16-regular {
|
|
181
189
|
font-family: var(--font-inter);
|
|
182
190
|
font-size: var(--text-16);
|