@brightspot/ui 6.1.1-rc.2 → 6.1.2-pr.275
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/Admin.css +4 -0
- package/src/legacy/tool-ui/src/ContentInputGroup.css +4 -0
- package/src/legacy/tool-ui/src/DashboardWidget.css +0 -4
- package/src/legacy/tool-ui/src/LinkTable.css +0 -4
- package/src/legacy/tool-ui/src/Widget.css +0 -8
- package/src/legacy/tool-ui/src/logVersion.ts +9 -0
- package/src/legacy/tool-ui/src/main/webapp/dist/{9360.22bc0127e04bc73d5261.js → 9360.41a5ba8d859d49f86811.js} +2 -2
- package/src/legacy/tool-ui/src/main/webapp/dist/{9360.22bc0127e04bc73d5261.js.LICENSE.txt → 9360.41a5ba8d859d49f86811.js.LICENSE.txt} +1 -1
- package/src/legacy/tool-ui/src/main/webapp/dist/{v4.0bee83483819ebe74fb5.js → v4.1074f0affb38bd0dd492.js} +2 -2
- package/src/legacy/tool-ui/src/main/webapp/dist/{v5.68bcb9af002dae392057.js → v5.b49d2d7615d030b68f89.js} +3 -3
- package/src/legacy/tool-ui/src/main/webapp/dist/v5.f9baf26a8d24e59e7af0.css +5 -0
- package/src/legacy/tool-ui/src/v5.ts +2 -0
- package/src/legacy/tool-ui/src/main/webapp/dist/v5.76825523ffff1ad77cdf.css +0 -5
- /package/src/legacy/tool-ui/src/main/webapp/dist/{v4.0bee83483819ebe74fb5.js.LICENSE.txt → v4.1074f0affb38bd0dd492.js.LICENSE.txt} +0 -0
- /package/src/legacy/tool-ui/src/main/webapp/dist/{v5.68bcb9af002dae392057.js.LICENSE.txt → v5.b49d2d7615d030b68f89.js.LICENSE.txt} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"generatedAt":
|
|
1
|
+
{"generatedAt":1787672126679,"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
|
@@ -684,6 +684,10 @@
|
|
|
684
684
|
@apply !pointer-events-auto !opacity-100;
|
|
685
685
|
}
|
|
686
686
|
|
|
687
|
+
.CIG-row.is-unlabeled > .AIChatButton {
|
|
688
|
+
@apply absolute right-0 top-[calc(-1_*_var(--button-size-md))] ms-0 ![display:initial];
|
|
689
|
+
}
|
|
690
|
+
|
|
687
691
|
/* Focus state for CIG-small in read-only rows */
|
|
688
692
|
:is(.CIG-row.is-readOnly, .CIG.is-readOnly) .CIG-small:focus-within {
|
|
689
693
|
@apply rounded-lg outline-dashed outline-[4px] outline-gray-300;
|
|
@@ -448,14 +448,6 @@ btu-widget.SearchWidget-create {
|
|
|
448
448
|
@apply bg-gray-50;
|
|
449
449
|
}
|
|
450
450
|
|
|
451
|
-
.Widget[data-internal-name='com.psddev.cms.tool.content.ReferencesWidget'] {
|
|
452
|
-
> p {
|
|
453
|
-
> a.icon-action-search {
|
|
454
|
-
@apply my-4 w-full btu-button btu-button-outline btu-button-sm btu-button-gray btu-button-fill-none before:btu-icon before:btu-icon-search;
|
|
455
|
-
}
|
|
456
|
-
}
|
|
457
|
-
}
|
|
458
|
-
|
|
459
451
|
/* Translations Widget */
|
|
460
452
|
.Widget[data-internal-name='com.psddev.translation.page.TranslationTab'] > * {
|
|
461
453
|
@apply col-span-full;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
// Injected by webpack's DefinePlugin (webpack.common.ts).
|
|
2
|
+
declare const BRIGHTSPOT_UI_VERSION: string
|
|
3
|
+
|
|
4
|
+
// Separate module so this runs before everything else v5.ts imports. Written inline there it
|
|
5
|
+
// would run after them instead, and not at all if one of them threw. `info` not `debug`:
|
|
6
|
+
// Chrome hides debug behind a filter.
|
|
7
|
+
console.info(`⭕ brightspot-ui ${BRIGHTSPOT_UI_VERSION}`)
|
|
8
|
+
|
|
9
|
+
export {}
|