@orangelogic/design-system 2.66.0 → 2.67.0-ci.2
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/library/components/types.js +19 -1
- package/library/package.json +1 -1
- package/package.json +1 -1
|
@@ -114433,7 +114433,25 @@ let Dr = class extends Bn {
|
|
|
114433
114433
|
this.isEditingTemplateSettings,
|
|
114434
114434
|
() => xt(
|
|
114435
114435
|
this.isTemplateEditable,
|
|
114436
|
-
() =>
|
|
114436
|
+
() => X`
|
|
114437
|
+
<cx-tab-group
|
|
114438
|
+
class="config-form__tab-group"
|
|
114439
|
+
placement="top"
|
|
114440
|
+
>
|
|
114441
|
+
<cx-tab slot="nav" panel="template" active>
|
|
114442
|
+
${this.localize.term("template")}
|
|
114443
|
+
</cx-tab>
|
|
114444
|
+
<cx-tab-panel name="template" active>
|
|
114445
|
+
<cx-space
|
|
114446
|
+
direction="vertical"
|
|
114447
|
+
spacing="x-small"
|
|
114448
|
+
wrap="nowrap"
|
|
114449
|
+
>
|
|
114450
|
+
${this.renderTemplateForm()}
|
|
114451
|
+
</cx-space>
|
|
114452
|
+
</cx-tab-panel>
|
|
114453
|
+
</cx-tab-group>
|
|
114454
|
+
`
|
|
114437
114455
|
),
|
|
114438
114456
|
() => xt(
|
|
114439
114457
|
!z4(this.traits) && this.tabs.length >= 1,
|
package/library/package.json
CHANGED