@wise/art 2.16.2 → 2.16.3-beta.1
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/Illustration.css +1 -1
- package/package.json +2 -2
- package/src/flags/Flag.css +3 -2
package/dist/Illustration.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
img.wds-illustration{max-width:100%}.wds-illustration-padding{padding:24px}.wds-illustration-3d{display:inline-flex}.wds-illustration-3d-small{width:200px;height:200px}.wds-illustration-3d-medium{width:300px;height:300px}.wds-illustration-3d-large{width:500px;height:500px}.wds-flag{position:relative;display:
|
|
1
|
+
img.wds-illustration{max-width:100%}.wds-illustration-padding{padding:24px}.wds-illustration-3d{display:inline-flex}.wds-illustration-3d-small{width:200px;height:200px}.wds-illustration-3d-medium{width:300px;height:300px}.wds-illustration-3d-large{width:500px;height:500px}.wds-flag{position:relative;display:flex}.wds-flag::after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;border-radius:var(--radius-full);box-shadow:inset 0 0 0 1px yellow}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wise/art",
|
|
3
|
-
"version": "2.16.
|
|
3
|
+
"version": "2.16.3-beta.1",
|
|
4
4
|
"packageManager": "pnpm@8.7.5",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "React library for art elements in UI",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"build": "pnpm load-i10s && pnpm load-3d-i10s && pnpm convert-i10s-png-to-webp && pnpm generate-i10s-metadata && pnpm load-flags && pnpm bundle && pnpm cleanup",
|
|
38
38
|
"start": "storybook dev -p 3001",
|
|
39
39
|
"dev": "pnpm start",
|
|
40
|
-
"test": "jest
|
|
40
|
+
"test": "jest",
|
|
41
41
|
"lint-fix": "eslint 'src/**/*.{js,ts,tsx}' 'scripts/*.{mjs,js,ts,tsx}' --fix",
|
|
42
42
|
"build-docs": "storybook build -o docs && touch ./docs/.nojekyll",
|
|
43
43
|
"build-styles": "postcss src/index.css -o dist/Illustration.css"
|
package/src/flags/Flag.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.wds-flag {
|
|
2
2
|
position: relative;
|
|
3
|
-
display:
|
|
3
|
+
display: flex;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
6
|
.wds-flag::after {
|
|
@@ -11,5 +11,6 @@
|
|
|
11
11
|
width: 100%;
|
|
12
12
|
height: 100%;
|
|
13
13
|
border-radius: var(--radius-full);
|
|
14
|
-
box-shadow: inset 0 0 0 1px var(--color-border-neutral);
|
|
14
|
+
/* box-shadow: inset 0 0 0 1px var(--color-border-neutral); */
|
|
15
|
+
box-shadow: inset 0 0 0 1px yellow;
|
|
15
16
|
}
|