@7365admin1/layer-common 3.2.2-staging.95 → 3.2.2-staging.96
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/components/SpecificAttr.vue +10 -2
- package/package.json +1 -1
|
@@ -10,11 +10,19 @@
|
|
|
10
10
|
Back
|
|
11
11
|
</span>
|
|
12
12
|
</v-col>
|
|
13
|
+
<!--
|
|
14
|
+
THE PAGE TITLE ROW. This wrapper is the whole scaffold for every
|
|
15
|
+
single-attribute form page in the estate (18 callers across 10 apps),
|
|
16
|
+
and its title was a `text-h5` span - Vuetify's 24px/400 Roboto, not
|
|
17
|
+
the design's 22px/800. `PageHeader` is placement only: same string,
|
|
18
|
+
same position, same Back link above it, no card added around content
|
|
19
|
+
that already brings its own.
|
|
20
|
+
-->
|
|
13
21
|
<v-col cols="12">
|
|
14
|
-
<
|
|
22
|
+
<PageHeader :title="props.title" />
|
|
15
23
|
</v-col>
|
|
16
24
|
|
|
17
|
-
<v-col cols="12"
|
|
25
|
+
<v-col cols="12">
|
|
18
26
|
<slot name="default"> </slot>
|
|
19
27
|
</v-col>
|
|
20
28
|
|