@pure-ds/core 0.7.24 → 0.7.25

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.
@@ -3313,7 +3313,7 @@ tbody {
3313
3313
  display: flex;
3314
3314
  align-items: center;
3315
3315
  gap: var(--spacing-2);
3316
- border-radius: inherit;
3316
+ border-radius: var(--radius-md);
3317
3317
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
3318
3318
 
3319
3319
  &::-webkit-details-marker {
@@ -715,6 +715,11 @@ async function __attachLiveAPIs(PDS, { applyResolvedTheme, setupSystemListenerIf
715
715
  PDS.buildConfigFormSchema = buildDesignConfigFormSchema;
716
716
  PDS.getConfigEditorMetadata = getDesignConfigEditorMetadata;
717
717
  PDS.enhancerMetadata = defaultPDSEnhancerMetadata;
718
+ if (!Array.isArray(PDS.defaultEnhancers) || PDS.defaultEnhancers.length === 0) {
719
+ PDS.defaultEnhancers = Array.isArray(defaultPDSEnhancers)
720
+ ? defaultPDSEnhancers
721
+ : [];
722
+ }
718
723
  PDS.applyStyles = function(generator) {
719
724
  const targetGenerator = generator || Generator.instance;
720
725
  applyStyles(targetGenerator);