@brightspot/ui 5.7.0 → 5.7.1
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/storybook/project.json +1 -1
- package/package.json +1 -1
- package/src/legacy/tool-ui/src/ComboInput.css +2 -3
- package/src/legacy/tool-ui/src/DateStringField.css +13 -0
- package/src/legacy/tool-ui/src/Widget.css +3 -11
- package/src/legacy/tool-ui/src/main/webapp/dist/{v5.78d65c560f25b56d84cb.css → v5.26a3e7fa4d22047ba7fe.css} +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"generatedAt":
|
|
1
|
+
{"generatedAt":1784917731984,"hasCustomBabel":false,"hasCustomWebpack":false,"hasStaticDirs":true,"hasStorybookEslint":true,"refCount":0,"knownPackages":{"testPackages":{"@storybook/addon-vitest":"10.2.12","@vitest/browser-playwright":"4.0.18","playwright":"1.58.2","vitest":"4.0.18"},"stylingPackages":{"tailwindcss":"^3.4.13","autoprefixer":"10.4.21"}},"hasRouterPackage":false,"packageManager":{"type":"yarn","agent":"yarn","nodeLinker":"undefined"},"preview":{"usesGlobals":true},"framework":{"name":"@storybook/web-components-vite","options":{}},"builder":"@storybook/builder-vite","renderer":"@storybook/web-components","portableStoriesFileCount":0,"applicationFileCount":6,"storybookVersion":"10.2.12","storybookVersionSpecifier":"10.2.12","language":"typescript","storybookPackages":{"@storybook/addon-themes":{"version":"10.2.12"},"@storybook/web-components-vite":{"version":"10.2.12"},"@wc-toolkit/storybook-helpers":{"version":"10.0.0"},"eslint-plugin-storybook":{"version":"10.0.7"},"storybook":{}},"addons":{"@storybook/addon-docs":{"version":"10.2.12"},"@storybook/addon-vitest":{"version":"10.2.12"}},"packageJsonType":"module"}
|
package/package.json
CHANGED
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
.ComboInput-option {
|
|
103
|
-
@apply grid px-4 py-2 text-sm text-gray-900 [overflow-wrap:anywhere] [word-break:normal];
|
|
103
|
+
@apply grid min-h-9 px-4 py-2 text-sm text-gray-900 [overflow-wrap:anywhere] [word-break:normal];
|
|
104
104
|
|
|
105
105
|
&:not(.nested):not([aria-selected='true']) {
|
|
106
106
|
@apply hover:bg-gray-100;
|
|
@@ -125,8 +125,7 @@
|
|
|
125
125
|
&:where(
|
|
126
126
|
&.is-hidden,
|
|
127
127
|
&[data-no-permission='true'],
|
|
128
|
-
&[data-is-owner='true']
|
|
129
|
-
&.is-empty
|
|
128
|
+
&[data-is-owner='true']
|
|
130
129
|
) {
|
|
131
130
|
@apply hidden;
|
|
132
131
|
}
|
|
@@ -77,6 +77,19 @@
|
|
|
77
77
|
@apply hidden;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
+
.DateStringCalendar {
|
|
81
|
+
> .DateStringCalendarDate,
|
|
82
|
+
> .DateStringCalendarForm {
|
|
83
|
+
@apply px-4;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
> .DateStringCalendarTime,
|
|
87
|
+
> .DateStringCalendarAction {
|
|
88
|
+
--space: theme(spacing.6);
|
|
89
|
+
@apply px-6;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
80
93
|
.DateStringCalendarEmbedded-widget {
|
|
81
94
|
@apply Widget w-max rounded-lg border;
|
|
82
95
|
}
|
|
@@ -292,18 +292,10 @@
|
|
|
292
292
|
}
|
|
293
293
|
}
|
|
294
294
|
|
|
295
|
-
/* Date Widget */
|
|
296
|
-
.Widget > .DateStringCalendar {
|
|
297
|
-
@apply contents;
|
|
298
|
-
|
|
299
|
-
> * {
|
|
300
|
-
@apply [grid-column:content-start_/_content-end];
|
|
301
|
-
}
|
|
302
295
|
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
}
|
|
296
|
+
/* Date Widget — override content-start/content-end so calendar children own their own padding */
|
|
297
|
+
.Widget > .DateStringCalendar {
|
|
298
|
+
@apply [grid-column:fullbleed-start_/_fullbleed-end];
|
|
307
299
|
}
|
|
308
300
|
|
|
309
301
|
/* Diff Widget */
|