@patternfly/quickstarts 6.0.0-alpha.1 → 6.0.0-alpha.2
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/catalog/QuickStartTile.d.ts +3 -0
- package/dist/catalog/QuickStartTileHeader.d.ts +12 -0
- package/dist/catalog/index.d.ts +1 -1
- package/dist/index.es.js +31 -20
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +32 -20
- package/dist/index.js.map +1 -1
- package/dist/quickstarts-base.css +63 -60
- package/dist/quickstarts-full.es.js +737 -78
- package/dist/quickstarts-full.es.js.map +1 -1
- package/dist/quickstarts-standalone.css +6 -0
- package/dist/quickstarts-standalone.min.css +1 -1
- package/dist/quickstarts.css +63 -60
- package/dist/quickstarts.min.css +1 -1
- package/dist/utils/quick-start-context.d.ts +2 -0
- package/package.json +4 -5
- package/src/QuickStartController.tsx +1 -1
- package/src/QuickStartPanelContent.tsx +3 -3
- package/src/catalog/QuickStartTile.tsx +19 -7
- package/src/catalog/QuickStartTileHeader.scss +4 -0
- package/src/catalog/QuickStartTileHeader.tsx +31 -4
- package/src/catalog/index.ts +1 -1
- package/src/controller/QuickStartTaskHeader.tsx +4 -2
- package/src/utils/quick-start-context.tsx +2 -0
|
@@ -211,6 +211,9 @@
|
|
|
211
211
|
.pfext-quick-start__base .pfext-quick-start-tile-header .pf-v6-c-badge:not(:last-of-type) {
|
|
212
212
|
margin-right: var(--pf-t--global--spacer--sm);
|
|
213
213
|
}
|
|
214
|
+
.pfext-quick-start__base .pfext-quick-start-tile-header h3 {
|
|
215
|
+
flex: 1;
|
|
216
|
+
}
|
|
214
217
|
.pfext-quick-start__base .pfext-quick-start-catalog__gallery {
|
|
215
218
|
--pf-v6-l-gallery--GridTemplateColumns: repeat(auto-fill, 300px) !important;
|
|
216
219
|
}
|
|
@@ -261,6 +264,9 @@
|
|
|
261
264
|
.pfext-quick-start__base .pfext-quick-start-tile-header .pf-v6-c-badge:not(:last-of-type) {
|
|
262
265
|
margin-right: var(--pf-t--global--spacer--sm);
|
|
263
266
|
}
|
|
267
|
+
.pfext-quick-start__base .pfext-quick-start-tile-header h3 {
|
|
268
|
+
flex: 1;
|
|
269
|
+
}
|
|
264
270
|
.pfext-quick-start__base .pfext-quick-start-catalog-filter__input {
|
|
265
271
|
flex-grow: 1;
|
|
266
272
|
max-width: 500px;
|