Skip to content

feat(table): remove deprecated slot names, introduce new slot names #3866

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 34 commits into from
Aug 13, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
6003d39
feat(table): remove deprecations
jacobmllr95 Aug 13, 2019
ed91ac2
Update nav.spec.js
jacobmllr95 Aug 13, 2019
fe2e048
Update mixin-filtering.js
jacobmllr95 Aug 13, 2019
e6f7f81
Update normalize-fields.spec.js
tmorehouse Aug 13, 2019
db7fa23
Update normalize-fields.spec.js
tmorehouse Aug 13, 2019
30d2810
Update normalize-fields.spec.js
tmorehouse Aug 13, 2019
8c13351
lint
tmorehouse Aug 13, 2019
37a6af7
make sure footer falls back to HEAD slots if FOOT slots not provided
tmorehouse Aug 13, 2019
5d76cda
lint
tmorehouse Aug 13, 2019
3e4a983
Update README.md
tmorehouse Aug 13, 2019
a6a2a83
Update mixin-thead.js
tmorehouse Aug 13, 2019
762ffd7
Update README.md
tmorehouse Aug 13, 2019
1e235da
Merge branch 'dev' into feat-table-remove-deprecations
tmorehouse Aug 13, 2019
5489b17
Update package.json
tmorehouse Aug 13, 2019
b5bc12e
Update package.json
tmorehouse Aug 13, 2019
14bebd0
Update package.json
tmorehouse Aug 13, 2019
b68dd4e
Update mixin-tbody-row.js
tmorehouse Aug 13, 2019
d562318
Update package.json
tmorehouse Aug 13, 2019
1cc80f5
Update table-row-details.spec.js
tmorehouse Aug 13, 2019
1291a05
Update table-tbody-row-events.spec.js
tmorehouse Aug 13, 2019
117d615
Update table-tfoot-events.spec.js
tmorehouse Aug 13, 2019
2af809c
Update table-thead-events.spec.js
tmorehouse Aug 13, 2019
21f7812
Update README.md
tmorehouse Aug 13, 2019
c4f819c
Update mixin-tbody-row.js
tmorehouse Aug 13, 2019
9ad0c46
Update mixin-tbody-row.js
tmorehouse Aug 13, 2019
bd786e7
Update mixin-thead.js
tmorehouse Aug 13, 2019
d810414
Update mixin-tbody-row.js
tmorehouse Aug 13, 2019
1564de8
Update mixin-thead.js
tmorehouse Aug 13, 2019
b8fd0bf
Update table-tbody-row-events.spec.js
tmorehouse Aug 13, 2019
c6a623b
Update mixin-tbody-row.js
tmorehouse Aug 13, 2019
d2af57a
Update componentdoc.vue
tmorehouse Aug 13, 2019
f47d93b
Update importdoc.vue
tmorehouse Aug 13, 2019
2821515
Update README.md
tmorehouse Aug 13, 2019
cb1b10c
Update README.md
tmorehouse Aug 13, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions docs/components/componentdoc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@
bordered
striped
>
<template slot="[prop]" slot-scope="{ value, item }">
<template slot="cell[prop]" slot-scope="{ value, item }">
<code class="text-nowrap notranslate" translate="no">{{ value }}</code>
<b-badge v-if="item.required" variant="info">Required</b-badge>
<b-badge v-else-if="item.deprecated" variant="danger">Deprecated</b-badge>
<b-badge v-else-if="item.deprecation" variant="warning">Deprecation</b-badge>
</template>
<template slot="[defaultValue]" slot-scope="{ value }">
<template slot="cell[defaultValue]" slot-scope="{ value }">
<code v-if="value" class="notranslate" translate="no">{{ value }}</code>
</template>
<template slot="row-details" slot-scope="{ item }">
Expand All @@ -82,10 +82,10 @@
bordered
striped
>
<template slot="[prop]" slot-scope="{ value }">
<template slot="cell[prop]" slot-scope="{ value }">
<code class="notranslate" translate="no">{{ kebabCase(value) }}</code>
</template>
<template slot="[event]" slot-scope="{ value }">
<template slot="cell[event]" slot-scope="{ value }">
<code class="notranslate" translate="no">{{ value }}</code>
</template>
</b-table>
Expand All @@ -105,7 +105,7 @@
bordered
striped
>
<template slot="[name]" slot-scope="{ value }">
<template slot="cell[name]" slot-scope="{ value }">
<code class="text-nowrap nostranslate" translate="no">{{ value }}</code>
</template>
</b-table>
Expand All @@ -124,10 +124,10 @@
bordered
striped
>
<template slot="[event]" slot-scope="{ value }">
<template slot="cell[event]" slot-scope="{ value }">
<code class="text-nowrap notranslate" translate="no">{{ value }}</code>
</template>
<template slot="[args]" slot-scope="{ value, item }">
<template slot="cell[args]" slot-scope="{ value, item }">
<p
v-for="arg in value"
:key="`event-${item.event}-${arg.arg ? arg.arg : 'none'}`"
Expand Down Expand Up @@ -159,10 +159,10 @@
bordered
striped
>
<template slot="[event]" slot-scope="{ value }">
<template slot="cell[event]" slot-scope="{ value }">
<code class="text-nowrap notranslate" translate="no">{{ value }}</code>
</template>
<template slot="[args]" slot-scope="{ value, item }">
<template slot="cell[args]" slot-scope="{ value, item }">
<p
v-for="arg in value"
:key="`event-${item.event}-${arg.arg ? arg.arg : 'none'}`"
Expand Down
16 changes: 8 additions & 8 deletions docs/components/importdoc.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
bordered
striped
>
<template slot="[component]" slot-scope="{ value }">
<template slot="cell[component]" slot-scope="{ value }">
<code class="text-nowrap notranslate" translate="no">{{ value }}</code>
</template>
<template slot="[namedExport]" slot-scope="{ value }">
<template slot="cell[namedExport]" slot-scope="{ value }">
<code class="text-nowrap notranslate" translate="no">{{ value }}</code>
</template>
<template slot="[importPath]" slot-scope="{ value }">
<template slot="cell[importPath]" slot-scope="{ value }">
<code class="text-nowrap notranslate" translate="no">{{ value }}</code>
</template>
</b-table>
Expand Down Expand Up @@ -57,13 +57,13 @@
bordered
striped
>
<template slot="[directive]" slot-scope="{ value }">
<template slot="cell[directive]" slot-scope="{ value }">
<code class="text-nowrap notranslate" translate="no">{{ value }}</code>
</template>
<template slot="[namedExport]" slot-scope="{ value }">
<template slot="cell[namedExport]" slot-scope="{ value }">
<code class="text-nowrap notranslate" translate="no">{{ value }}</code>
</template>
<template slot="[importPath]" slot-scope="{ value }">
<template slot="cell[importPath]" slot-scope="{ value }">
<code class="text-nowrap notranslate" translate="no">{{ value }}</code>
</template>
</b-table>
Expand Down Expand Up @@ -102,10 +102,10 @@
bordered
striped
>
<template slot="[namedExport]" slot-scope="{ value }">
<template slot="cell[namedExport]" slot-scope="{ value }">
<code class="text-nowrap notranslate" translate="no">{{ value }}</code>
</template>
<template slot="[importPath]" slot-scope="{ value }">
<template slot="cell[importPath]" slot-scope="{ value }">
<code class="text-nowrap notranslate" translate="no">{{ value }}</code>
</template>
</b-table>
Expand Down
Loading