pdm-ui-kit 0.1.23 → 0.1.24
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/fesm2020/pdm-ui-kit.mjs
CHANGED
|
@@ -291,7 +291,11 @@ class PdmButtonGroupComponent {
|
|
|
291
291
|
: '';
|
|
292
292
|
const groupHorizontalClasses = isGroup && !isVertical && !this.separated
|
|
293
293
|
? [
|
|
294
|
+
'[&>*]:rounded-none',
|
|
295
|
+
'[&>*:first-child]:rounded-l-md',
|
|
296
|
+
'[&>*:last-child]:rounded-r-md',
|
|
294
297
|
'[&>*:not(:first-child)]:-ml-px',
|
|
298
|
+
'[&>*:not(:first-child)]:border-l-0',
|
|
295
299
|
'[&>pdm-button]:flex',
|
|
296
300
|
'[&>pdm-button>button]:h-9',
|
|
297
301
|
'[&>pdm-input]:flex-1',
|
|
@@ -313,7 +317,11 @@ class PdmButtonGroupComponent {
|
|
|
313
317
|
: '';
|
|
314
318
|
const groupVerticalClasses = isGroup && isVertical && !this.separated
|
|
315
319
|
? [
|
|
320
|
+
'[&>*]:rounded-none',
|
|
321
|
+
'[&>*:first-child]:rounded-t-md',
|
|
322
|
+
'[&>*:last-child]:rounded-b-md',
|
|
316
323
|
'[&>*:not(:first-child)]:-mt-px',
|
|
324
|
+
'[&>*:not(:first-child)]:border-t-0',
|
|
317
325
|
'[&>pdm-button]:flex',
|
|
318
326
|
'[&>pdm-button>button]:h-9',
|
|
319
327
|
'[&>pdm-button>button]:!rounded-none',
|