@mirai/ui 1.0.82 → 1.0.84
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/README.md
CHANGED
|
@@ -461,6 +461,7 @@ const MyComponent = props => {
|
|
|
461
461
|
**Theming variables**
|
|
462
462
|
|
|
463
463
|
```css
|
|
464
|
+
--mirai-ui-calendar-caption-font-size: 10px;
|
|
464
465
|
--mirai-ui-calendar-caption-color: var(--mirai-ui-content-light);
|
|
465
466
|
--mirai-ui-calendar-cell: var(--mirai-ui-space-XL);
|
|
466
467
|
--mirai-ui-calendar-highlight-color: var(--mirai-ui-accent);
|
|
@@ -69,9 +69,10 @@
|
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
.caption {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
72
|
+
font-size: var(--mirai-ui-calendar-caption-font-size);
|
|
73
|
+
height: var(--mirai-ui-calendar-caption-font-size);
|
|
74
|
+
line-height: var(--mirai-ui-calendar-caption-font-size) * 1.5;
|
|
75
|
+
max-width: calc(var(--mirai-ui-calendar-cell) * 0.85);
|
|
75
76
|
overflow: hidden;
|
|
76
77
|
text-overflow: ellipsis;
|
|
77
78
|
white-space: nowrap;
|
|
@@ -179,6 +179,7 @@
|
|
|
179
179
|
--mirai-ui-button-squared: calc(var(--mirai-ui-space-M) * 2);
|
|
180
180
|
|
|
181
181
|
/* Calendar */
|
|
182
|
+
--mirai-ui-calendar-caption-font-size: 10px;
|
|
182
183
|
--mirai-ui-calendar-caption-color: var(--mirai-ui-content-light);
|
|
183
184
|
--mirai-ui-calendar-cell: var(--mirai-ui-space-XL);
|
|
184
185
|
--mirai-ui-calendar-highlight-color: var(--mirai-ui-accent);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirai/ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.84",
|
|
4
4
|
"repository": "git@gitlab.com:miraicorp/dev/frontend/ui.git",
|
|
5
5
|
"author": "JΛVI <hello@soyjavi.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
"build:storybook": "ladle build -o storybook",
|
|
17
17
|
"start": "parcel public/index.html --port 8080 --host local.mirai.com --open",
|
|
18
18
|
"start:storybook": "ladle serve",
|
|
19
|
+
"build:storybook:prod": "ladle build -o storybook --base '/front/ui/'",
|
|
19
20
|
"lint": "eslint --cache --fix --format codeframe --ext .jsx,.js src",
|
|
20
21
|
"test": "node scripts/test.js --watchAll=false",
|
|
21
22
|
"test:watch": "node scripts/test.js",
|