@linzjs/lui 21.13.0 → 21.14.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 +7 -0
- package/dist/components/LuiSplitButton/LuiSplitButton.d.ts +1 -0
- package/dist/index.js +5 -6
- package/dist/index.js.map +1 -1
- package/dist/lui.css +56 -3
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +5 -6
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiSplitButton/LuiSplitButton.scss +19 -4
- package/package.json +1 -3
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
gap: 1px;
|
|
11
11
|
|
|
12
12
|
&-primary-btn {
|
|
13
|
-
border-radius: misc.$borderRadius
|
|
13
|
+
border-radius: misc.$borderRadius 0 0 misc.$borderRadius;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.popup-toggle-button {
|
|
@@ -24,19 +24,34 @@
|
|
|
24
24
|
colors.$primary-active-btn
|
|
25
25
|
);
|
|
26
26
|
align-items: center;
|
|
27
|
-
border-radius:
|
|
27
|
+
border-radius: 0 misc.$borderRadius misc.$borderRadius 0;
|
|
28
28
|
display: flex;
|
|
29
29
|
justify-content: center;
|
|
30
|
-
padding:
|
|
30
|
+
padding: 0;
|
|
31
31
|
|
|
32
32
|
.lui-expand-icon {
|
|
33
33
|
color: colors.$white;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
|
|
37
36
|
&:disabled i {
|
|
38
37
|
cursor: not-allowed;
|
|
39
38
|
}
|
|
39
|
+
|
|
40
|
+
&-secondary {
|
|
41
|
+
@include buttons.button-builder(colors.$sea, #fff, colors.$sea);
|
|
42
|
+
@include buttons.button-states-builder(
|
|
43
|
+
colors.$sea,
|
|
44
|
+
colors.$secondary-hover-btn,
|
|
45
|
+
colors.$sea,
|
|
46
|
+
buttons.$reversed-btn-active-txt,
|
|
47
|
+
colors.$secondary-active-btn,
|
|
48
|
+
colors.$secondary-active-btn
|
|
49
|
+
);
|
|
50
|
+
|
|
51
|
+
.lui-expand-icon {
|
|
52
|
+
color: colors.$sea;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
40
55
|
}
|
|
41
56
|
}
|
|
42
57
|
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "21.
|
|
2
|
+
"version": "21.14.0",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
@@ -26,8 +26,6 @@
|
|
|
26
26
|
"storybook": "npm run watch-storybook",
|
|
27
27
|
"build-storybook": "storybook build --static-dir ./src/assets",
|
|
28
28
|
"build-storybook-docs": "storybook build --static-dir ./src/assets --docs",
|
|
29
|
-
"deploy-storybook": "npx --yes -p @storybook/storybook-deployer storybook-to-ghpages",
|
|
30
|
-
"deploy-storybook-docs": "npx --yes -p @storybook/storybook-deployer storybook-to-ghpages --script build-storybook-docs",
|
|
31
29
|
"chromatic": "chromatic -r dotenv/config --exit-zero-on-changes",
|
|
32
30
|
"prettier:fix": "prettier --write src/**/*.ts src/**/*.tsx src/**/*.js",
|
|
33
31
|
"prettier:fix-changed": "pretty-quick",
|