@weni/unnnic-system 3.9.4 → 3.10.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/CHANGELOG.md +14 -0
- package/dist/components/Card/MarketplaceCard.vue.d.ts.map +1 -1
- package/dist/components/Icon.vue.d.ts.map +1 -1
- package/dist/{es-8146fb1b.mjs → es-4b899f97.mjs} +1 -1
- package/dist/{index-724ed422.mjs → index-23489897.mjs} +7 -6
- package/dist/{pt-br-af294ec9.mjs → pt-br-5a914a63.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +1 -1
- package/dist/unnnic.umd.js +3 -3
- package/package.json +1 -1
- package/src/assets/fonts/material-symbols-rounded.woff2 +0 -0
- package/src/components/Card/MarketplaceCard.vue +1 -0
- package/src/components/Collapse/Collapse.vue +1 -1
- package/src/components/Collapse/__tests__/__snapshots__/Collapse.spec.js.snap +1 -1
- package/src/components/Icon.vue +2 -10
- package/src/stories/Icon.stories.js +2 -0
- package/src/assets/fonts/Material Symbols Rounded Filled.woff2 +0 -0
- package/src/assets/fonts/Material Symbols Rounded.woff2 +0 -0
package/package.json
CHANGED
|
Binary file
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
exports[`Collapse.vue > matches the snapshot 1`] = `
|
|
4
4
|
"<div data-v-7d0d9fbd="" data-testid="collapse" class="unnnic-collapse unnnic-collapse--size-lg">
|
|
5
|
-
<div data-v-7d0d9fbd="" data-testid="collapse-header" class="unnnic-collapse__header">Test Title<span data-v-26446d8e="" data-v-7d0d9fbd="" class="unnnic-icon material-symbols-rounded unnnic-icon-scheme--neutral-cloudy unnnic-icon-size--
|
|
5
|
+
<div data-v-7d0d9fbd="" data-testid="collapse-header" class="unnnic-collapse__header">Test Title<span data-v-26446d8e="" data-v-7d0d9fbd="" class="unnnic-icon material-symbols-rounded unnnic-icon-scheme--neutral-cloudy unnnic-icon-size--ant unnnic-icon__size--ant" data-testid="material-icon" translate="no">expand_more</span></div>
|
|
6
6
|
<div data-v-7d0d9fbd="" class="unnnic-collapse__body" style="display: none;"></div>
|
|
7
7
|
</div>"
|
|
8
8
|
`;
|
package/src/components/Icon.vue
CHANGED
|
@@ -133,15 +133,7 @@ $icon-sizes:
|
|
|
133
133
|
font-family: 'Material Symbols Rounded';
|
|
134
134
|
font-style: normal;
|
|
135
135
|
font-weight: 300;
|
|
136
|
-
src: url('../assets/fonts/
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
@font-face {
|
|
140
|
-
font-family: 'Material Symbols Rounded Filled';
|
|
141
|
-
font-style: normal;
|
|
142
|
-
font-weight: 300;
|
|
143
|
-
src: url('../assets/fonts/Material Symbols Rounded Filled.woff2')
|
|
144
|
-
format('woff2');
|
|
136
|
+
src: url('../assets/fonts/material-symbols-rounded.woff2') format('woff2');
|
|
145
137
|
}
|
|
146
138
|
|
|
147
139
|
.unnnic-icon {
|
|
@@ -198,7 +190,7 @@ $icon-sizes:
|
|
|
198
190
|
-webkit-font-smoothing: antialiased;
|
|
199
191
|
|
|
200
192
|
&--filled {
|
|
201
|
-
font-
|
|
193
|
+
font-variation-settings: 'FILL' 1;
|
|
202
194
|
}
|
|
203
195
|
}
|
|
204
196
|
</style>
|
|
Binary file
|
|
Binary file
|