classcard-ui 0.2.468 → 0.2.469
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/dist/classcard-ui.common.js +52 -52
- package/dist/classcard-ui.common.js.map +1 -1
- package/dist/classcard-ui.umd.js +52 -52
- package/dist/classcard-ui.umd.js.map +1 -1
- package/dist/classcard-ui.umd.min.js +1 -1
- package/dist/classcard-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/CPageHeading/CPageHeading.vue +4 -4
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="sticky top-0 z-10 bg-transparent backdrop-blur-xl">
|
|
3
3
|
<div
|
|
4
|
-
class="flex
|
|
4
|
+
class="flex flex-col items-start justify-between pt-4 pb-2 sm:max-w-full sm:flex-row sm:items-center sm:pb-1"
|
|
5
5
|
>
|
|
6
6
|
<div>
|
|
7
7
|
<h2
|
|
8
|
-
class="
|
|
8
|
+
class="mt-1 text-xl font-bold leading-7 text-gray-900 sm:mt-0 sm:truncate sm:text-xl"
|
|
9
9
|
>
|
|
10
|
-
{{ title }}
|
|
10
|
+
{{ title }}
|
|
11
11
|
</h2>
|
|
12
12
|
</div>
|
|
13
13
|
<div class="justify-self-end">
|
|
14
14
|
<slot></slot>
|
|
15
|
-
<div v-if="buttonType" class="
|
|
15
|
+
<div v-if="buttonType" class="mt-5 flex sm:mt-0 lg:mt-0 lg:ml-4">
|
|
16
16
|
<span class="sm:ml-3">
|
|
17
17
|
<c-button
|
|
18
18
|
:label="buttonType.label"
|