@testgorilla/tgo-ui 1.13.3 → 1.13.4
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/components/card/card.component.d.ts +15 -4
- package/components/card/card.model.d.ts +1 -0
- package/esm2022/components/badge/badge.component.mjs +2 -2
- package/esm2022/components/button/button.component.mjs +2 -2
- package/esm2022/components/card/card.component.mjs +19 -3
- package/esm2022/components/card/card.model.mjs +1 -1
- package/esm2022/components/checkbox/checkbox.component.mjs +2 -2
- package/esm2022/components/divider/divider.component.mjs +2 -2
- package/esm2022/components/overflow-menu/overflow-menu.component.mjs +2 -2
- package/esm2022/components/step/step.component.mjs +2 -2
- package/esm2022/components/stepper/stepper.component.mjs +2 -2
- package/esm2022/components/toggle/toggle.component.mjs +2 -2
- package/fesm2022/testgorilla-tgo-ui.mjs +34 -18
- package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/icons/Copy.svg +2 -2
- package/src/assets/icons/Delete.svg +2 -2
- package/src/assets/icons/Edit.svg +2 -2
- package/src/theme/_variables.scss +6 -4
package/package.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M3 18.5V16.5H5V18.5H3ZM3 15V13H5V15H3ZM3 11.5V9.5H5V11.5H3ZM6.5 22V20H8.5V22H6.5ZM7 18V2H20V18H7ZM9 16H18V4H9V16ZM10 22V20H12V22H10ZM3 22V20H5V22H3ZM13.5 22V20H15.5V22H13.5ZM3 8V6H5V8H3Z" fill="currentColor"/>
|
|
3
3
|
</svg>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5 21V6H4V4H9V3H15V4H20V6H19V21H5ZM7 19H17V6H7V19ZM9 17H11V8H9V17ZM13 17H15V8H13V17Z" fill="currentColor"/>
|
|
3
3
|
</svg>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg width="
|
|
2
|
-
<path
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5 19H6.425L16.2 9.22505L14.775 7.80005L5 17.575V19ZM3 21V16.75L17.625 2.17505L21.8 6.45005L7.25 21H3ZM15.475 8.52505L14.775 7.80005L16.2 9.22505L15.475 8.52505Z" fill="currentColor"/>
|
|
3
3
|
</svg>
|
|
@@ -57,10 +57,9 @@ $brand-10: #FFF2FC;
|
|
|
57
57
|
|
|
58
58
|
$grayscale-50: #666666;
|
|
59
59
|
$grayscale-40: #919191;
|
|
60
|
-
$grayscale-30: #
|
|
61
|
-
$grayscale-20: #
|
|
62
|
-
$grayscale-10: #
|
|
63
|
-
$grayscale-0: #F4F4F4;
|
|
60
|
+
$grayscale-30: #D3D3D3;
|
|
61
|
+
$grayscale-20: #E9E9E9;
|
|
62
|
+
$grayscale-10: #F4F4F4;
|
|
64
63
|
|
|
65
64
|
$black: #242424;
|
|
66
65
|
|
|
@@ -145,3 +144,6 @@ $colors: (
|
|
|
145
144
|
background-color: $colorValue;
|
|
146
145
|
}
|
|
147
146
|
}
|
|
147
|
+
|
|
148
|
+
$box-shadow-overflow-menu: #24242414;
|
|
149
|
+
$box-shadow-card: #2424240A;
|