alpha
Login
or
Join now
danielroe.dev
/
ripple-framework
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[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.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix: cleanup linting warnings
author
David Featherston
date
3 years ago
(Feb 28, 2023, 11:34 AM +1100)
commit
26457253
26457253264db9b8836273a2a7380d9b50be2b11
parent
707fee7b
707fee7b8b01dabb7a7b1ed640e52be4afc7407e
+11
-12
5 changed files
Expand all
Collapse all
Unified
Split
packages
ripple-ui-core
src
components
header
RplHeaderActions.css
stories
components
spacer.vue
ripple-ui-forms
src
inputs
actions.ts
fieldset.ts
plugin.ts
+1
-1
packages/ripple-ui-core/src/components/header/RplHeaderActions.css
View file
Reviewed
···
3
3
.rpl-header-actions {
4
4
display: flex;
5
5
flex-direction: column;
6
6
-
align-items: start;
6
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
View file
Reviewed
···
5
5
</template>
6
6
7
7
<script setup lang="ts">
8
8
-
defineProps({
9
9
-
color: {
10
10
-
type: String,
11
11
-
required: true
12
12
-
},
13
13
-
height: {
14
14
-
type: Number
15
15
-
}
8
8
+
interface Props {
9
9
+
color: string
10
10
+
height?: number
11
11
+
}
12
12
+
13
13
+
withDefaults(defineProps<Props>(), {
14
14
+
height: undefined
16
15
})
17
16
</script>
18
17
+1
-1
packages/ripple-ui-forms/src/inputs/actions.ts
View file
Reviewed
···
1
1
import { FormKitTypeDefinition } from '@formkit/core'
2
2
-
import { localize, ignores, outer, createSection } from '@formkit/inputs'
2
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
View file
Reviewed
···
1
1
import { FormKitTypeDefinition } from '@formkit/core'
2
2
-
import { outer, createSection } from '@formkit/inputs'
2
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
View file
Reviewed
···
18
18
fieldset
19
19
} from './inputs/index'
20
20
21
21
-
const rplFormInputs = (node) => {
21
21
+
const rplFormInputs = () => {
22
22
// Adds plugins here
23
23
}
24
24