@budibase/bbui 2.27.4 → 2.27.6
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@budibase/bbui",
|
|
3
3
|
"description": "A UI solution used in the different Budibase projects.",
|
|
4
|
-
"version": "2.27.
|
|
4
|
+
"version": "2.27.6",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"svelte": "src/index.js",
|
|
7
7
|
"module": "dist/bbui.es.js",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@adobe/spectrum-css-workflow-icons": "1.2.1",
|
|
38
|
-
"@budibase/shared-core": "2.27.
|
|
39
|
-
"@budibase/string-templates": "2.27.
|
|
38
|
+
"@budibase/shared-core": "2.27.6",
|
|
39
|
+
"@budibase/string-templates": "2.27.6",
|
|
40
40
|
"@spectrum-css/accordion": "3.0.24",
|
|
41
41
|
"@spectrum-css/actionbutton": "1.0.1",
|
|
42
42
|
"@spectrum-css/actiongroup": "1.0.1",
|
|
@@ -103,5 +103,5 @@
|
|
|
103
103
|
}
|
|
104
104
|
}
|
|
105
105
|
},
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "67671b9dfc8698315cb394a427266a4d184b0e26"
|
|
107
107
|
}
|
|
@@ -57,6 +57,7 @@
|
|
|
57
57
|
class:fullWidth
|
|
58
58
|
class="spectrum-ActionButton spectrum-ActionButton--size{size}"
|
|
59
59
|
class:active
|
|
60
|
+
class:disabled
|
|
60
61
|
{disabled}
|
|
61
62
|
on:longPress
|
|
62
63
|
on:click|preventDefault
|
|
@@ -109,19 +110,22 @@
|
|
|
109
110
|
background: var(--spectrum-global-color-gray-300);
|
|
110
111
|
border-color: var(--spectrum-global-color-gray-500);
|
|
111
112
|
}
|
|
112
|
-
.noPadding {
|
|
113
|
-
padding: 0;
|
|
114
|
-
min-width: 0;
|
|
115
|
-
}
|
|
116
113
|
.spectrum-ActionButton--quiet {
|
|
117
114
|
padding: 0 8px;
|
|
118
115
|
}
|
|
119
116
|
.spectrum-ActionButton--quiet.is-selected {
|
|
120
117
|
color: var(--spectrum-global-color-gray-900);
|
|
121
118
|
}
|
|
119
|
+
.noPadding {
|
|
120
|
+
padding: 0;
|
|
121
|
+
min-width: 0;
|
|
122
|
+
}
|
|
122
123
|
.is-selected:not(.emphasized) .spectrum-Icon {
|
|
123
124
|
color: var(--spectrum-global-color-gray-900);
|
|
124
125
|
}
|
|
126
|
+
.is-selected.disabled .spectrum-Icon {
|
|
127
|
+
color: var(--spectrum-global-color-gray-500);
|
|
128
|
+
}
|
|
125
129
|
.tooltip {
|
|
126
130
|
position: absolute;
|
|
127
131
|
pointer-events: none;
|