[READ-ONLY] Mirror of https://github.com/danielroe/ripple-framework. Ripple is the presentation layer for building websites on the DPC Single Digital Presence platform.
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: cleanup linting warnings

+11 -12
+1 -1
packages/ripple-ui-core/src/components/header/RplHeaderActions.css
··· 3 3 .rpl-header-actions { 4 4 display: flex; 5 5 flex-direction: column; 6 - align-items: start; 6 + align-items: flex-start; 7 7 gap: var(--rpl-sp-5); 8 8 9 9 @media (--rpl-bp-l) {
+7 -8
packages/ripple-ui-core/stories/components/spacer.vue
··· 5 5 </template> 6 6 7 7 <script setup lang="ts"> 8 - defineProps({ 9 - color: { 10 - type: String, 11 - required: true 12 - }, 13 - height: { 14 - type: Number 15 - } 8 + interface Props { 9 + color: string 10 + height?: number 11 + } 12 + 13 + withDefaults(defineProps<Props>(), { 14 + height: undefined 16 15 }) 17 16 </script> 18 17
+1 -1
packages/ripple-ui-forms/src/inputs/actions.ts
··· 1 1 import { FormKitTypeDefinition } from '@formkit/core' 2 - import { localize, ignores, outer, createSection } from '@formkit/inputs' 2 + import { localize, ignores, createSection } from '@formkit/inputs' 3 3 import { inputLibrary } from './input-utils' 4 4 5 5 /**
+1 -1
packages/ripple-ui-forms/src/inputs/fieldset.ts
··· 1 1 import { FormKitTypeDefinition } from '@formkit/core' 2 - import { outer, createSection } from '@formkit/inputs' 2 + import { createSection } from '@formkit/inputs' 3 3 import { inputLibrary } from './input-utils' 4 4 5 5 /**
+1 -1
packages/ripple-ui-forms/src/plugin.ts
··· 18 18 fieldset 19 19 } from './inputs/index' 20 20 21 - const rplFormInputs = (node) => { 21 + const rplFormInputs = () => { 22 22 // Adds plugins here 23 23 } 24 24