@bcc-code/component-library-vue 1.3.5 → 1.3.7
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/component-library.js +480 -468
- package/dist/component-library.umd.cjs +59 -59
- package/dist/index.css +1 -1
- package/dist/theme.css +25 -22
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -2022,6 +2022,9 @@
|
|
|
2022
2022
|
|
|
2023
2023
|
@apply bg-ctx text-ctx;
|
|
2024
2024
|
}
|
|
2025
|
+
.bcc-badge span:empty {
|
|
2026
|
+
display: none;
|
|
2027
|
+
}
|
|
2025
2028
|
.bcc-badge.gradient {
|
|
2026
2029
|
@apply ctx-gradient;
|
|
2027
2030
|
}
|
|
@@ -2137,31 +2140,31 @@
|
|
|
2137
2140
|
|
|
2138
2141
|
/* from ./BccDialKnob/BccDialKnob.css */
|
|
2139
2142
|
@layer components {
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
--bcc-knob-arc-bg: var(--color-background-neutral-default);
|
|
2144
|
-
--bcc-knob-head: var(--color-background-brand-bolder-default);
|
|
2145
|
-
--bcc-knob-tail: var(--color-background-brand-subtle-default);
|
|
2146
|
-
|
|
2147
|
-
--bcc-knob-left-head: var(--color-background-accent-red-bolder-default);
|
|
2148
|
-
--bcc-knob-left-tail: var(--color-background-accent-red-subtle-default);
|
|
2149
|
-
|
|
2150
|
-
--bcc-knob-right-head: var(--color-background-accent-green-bolder-default);
|
|
2151
|
-
--bcc-knob-right-tail: var(--color-background-accent-green-subtle-default);
|
|
2152
|
-
}
|
|
2143
|
+
.bcc-knob {
|
|
2144
|
+
@apply relative mx-auto inline-flex touch-none items-center justify-center p-2 select-none;
|
|
2153
2145
|
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2146
|
+
--bcc-knob-arc-bg: var(--color-background-accent-gray-default);
|
|
2147
|
+
--bcc-knob-head: var(--color-background-brand-bolder-default);
|
|
2148
|
+
--bcc-knob-tail: var(--color-background-brand-subtle-default);
|
|
2157
2149
|
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
}
|
|
2150
|
+
--bcc-knob-left-head: var(--color-background-accent-red-bolder-default);
|
|
2151
|
+
--bcc-knob-left-tail: var(--color-background-accent-red-subtle-default);
|
|
2161
2152
|
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2153
|
+
--bcc-knob-right-head: var(--color-background-accent-green-bolder-default);
|
|
2154
|
+
--bcc-knob-right-tail: var(--color-background-accent-green-subtle-default);
|
|
2155
|
+
}
|
|
2156
|
+
|
|
2157
|
+
.bcc-knob-label {
|
|
2158
|
+
@apply pointer-events-none absolute inset-0 flex flex-col items-center justify-center select-none;
|
|
2159
|
+
}
|
|
2160
|
+
|
|
2161
|
+
.bcc-knob-top-left {
|
|
2162
|
+
@apply absolute top-0 left-0 text-left;
|
|
2163
|
+
}
|
|
2164
|
+
|
|
2165
|
+
.bcc-knob-top-right {
|
|
2166
|
+
@apply absolute top-0 right-0 text-right;
|
|
2167
|
+
}
|
|
2165
2168
|
}
|
|
2166
2169
|
|
|
2167
2170
|
|
package/package.json
CHANGED