@woosmap/ui 3.130.1 → 3.132.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/package.json +1 -1
- package/src/components/Label/Label.stories.js +1 -1
- package/src/components/Label/Label.styl +3 -1
- package/src/styles/console/button.styl +4 -0
- package/src/styles/console/colors.styl +15 -7
- package/src/styles/console/mixins.styl +4 -1
- package/.idea/encodings.xml +0 -6
- package/.idea/inspectionProfiles/Project_Default.xml +0 -18
- package/.idea/inspectionProfiles/profiles_settings.xml +0 -6
- package/.idea/misc.xml +0 -4
- package/.idea/modules.xml +0 -8
- package/.idea/prettier.xml +0 -6
- package/.idea/ui.iml +0 -15
- package/.idea/vcs.xml +0 -6
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@ export default Story;
|
|
|
10
10
|
|
|
11
11
|
const Template = () => (
|
|
12
12
|
<div className="mbib flex-column">
|
|
13
|
-
<Label closable color="
|
|
13
|
+
<Label closable color="white" label="Label" />
|
|
14
14
|
<Label closable size="small" label="Label small" />
|
|
15
15
|
<Label closable privilege="superuser" size="mini" label="Label mini" />
|
|
16
16
|
<Label closable privilege="staff" size="nano" label="Label nano" />
|
|
@@ -55,20 +55,28 @@ $primary1 = rgba(85, 134, 255, .01)
|
|
|
55
55
|
$primary-dark = #3A53BF
|
|
56
56
|
$primary-light = #88abff
|
|
57
57
|
|
|
58
|
-
$secondary = rgba(60, 67, 89, 1) // #3C4362
|
|
59
|
-
$secondary90 = rgba(60, 67, 89, .9)
|
|
60
|
-
$
|
|
61
|
-
$
|
|
62
|
-
$
|
|
63
|
-
$
|
|
64
|
-
$
|
|
58
|
+
$secondary = rgba(60, 67, 89, 1) // #3C4362
|
|
59
|
+
$secondary90 = rgba(60, 67, 89, .9)
|
|
60
|
+
$secondary80 = rgba(60, 67, 89, .8)
|
|
61
|
+
$secondary70 = rgba(60, 67, 89, .7)
|
|
62
|
+
$secondary60 = rgba(60, 67, 89, .6)
|
|
63
|
+
$secondary50 = rgba(60, 67, 89, .5)
|
|
64
|
+
$secondary40 = rgba(60, 67, 89, .4)
|
|
65
|
+
$secondary30 = rgba(60, 67, 89, .3)
|
|
66
|
+
$secondary20 = rgba(60, 67, 89, .2)
|
|
67
|
+
$secondary15 = rgba(60, 67, 89, .15)
|
|
68
|
+
$secondary10 = rgba(60, 67, 89, .10)
|
|
69
|
+
$secondary5 = rgba(60, 67, 89, .5)
|
|
65
70
|
|
|
66
71
|
|
|
67
72
|
$secondary-medium = rgba(106, 112, 127, 1) // #6A707F
|
|
73
|
+
$secondary-medium90 = rgba(106, 112, 127, .9)
|
|
68
74
|
$secondary-medium80 = rgba(106, 112, 127, .8)
|
|
75
|
+
$secondary-medium70 = rgba(106, 112, 127, .7)
|
|
69
76
|
$secondary-medium60 = rgba(106, 112, 127, .6)
|
|
70
77
|
$secondary-medium50 = rgba(106, 112, 127, .5)
|
|
71
78
|
$secondary-medium40 = rgba(106, 112, 127, .4)
|
|
79
|
+
$secondary-medium30 = rgba(106, 112, 127, .3)
|
|
72
80
|
$secondary-medium25 = rgba(106, 112, 127, .25)
|
|
73
81
|
$secondary-medium20 = rgba(106, 112, 127, .2)
|
|
74
82
|
$secondary-medium15 = rgba(106, 112, 127, .15)
|
|
@@ -181,4 +181,7 @@ fullwh()
|
|
|
181
181
|
min-height 0
|
|
182
182
|
rainbow()
|
|
183
183
|
background $primary
|
|
184
|
-
background linear-gradient(45deg, $coloredGradient1 0%, $coloredGradient2 50%, $coloredGradient3 100%)
|
|
184
|
+
background linear-gradient(45deg, $coloredGradient1 0%, $coloredGradient2 50%, $coloredGradient3 100%)
|
|
185
|
+
rainbowInverse()
|
|
186
|
+
background $primary
|
|
187
|
+
background linear-gradient(45deg, $coloredGradient3 0%, $coloredGradient2 50%, $coloredGradient1 100%)
|
package/.idea/encodings.xml
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
<component name="InspectionProjectProfileManager">
|
|
2
|
-
<profile version="1.0">
|
|
3
|
-
<option name="myName" value="Project Default" />
|
|
4
|
-
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
5
|
-
<inspection_tool class="PyPackageRequirementsInspection" enabled="true" level="WARNING" enabled_by_default="true">
|
|
6
|
-
<option name="ignoredPackages">
|
|
7
|
-
<value>
|
|
8
|
-
<list size="4">
|
|
9
|
-
<item index="0" class="java.lang.String" itemvalue="Fabric" />
|
|
10
|
-
<item index="1" class="java.lang.String" itemvalue="PyYAML" />
|
|
11
|
-
<item index="2" class="java.lang.String" itemvalue="Jinja2" />
|
|
12
|
-
<item index="3" class="java.lang.String" itemvalue="github3.py" />
|
|
13
|
-
</list>
|
|
14
|
-
</value>
|
|
15
|
-
</option>
|
|
16
|
-
</inspection_tool>
|
|
17
|
-
</profile>
|
|
18
|
-
</component>
|
package/.idea/misc.xml
DELETED
package/.idea/modules.xml
DELETED
package/.idea/prettier.xml
DELETED
package/.idea/ui.iml
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="PYTHON_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager">
|
|
4
|
-
<content url="file://$MODULE_DIR$" />
|
|
5
|
-
<orderEntry type="inheritedJdk" />
|
|
6
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
-
</component>
|
|
8
|
-
<component name="TemplatesService">
|
|
9
|
-
<option name="TEMPLATE_FOLDERS">
|
|
10
|
-
<list>
|
|
11
|
-
<option value="$MODULE_DIR$/node_modules/@storybook/core/dist/server/templates" />
|
|
12
|
-
</list>
|
|
13
|
-
</option>
|
|
14
|
-
</component>
|
|
15
|
-
</module>
|