🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@sjsf-lab/svar-theme

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sjsf-lab/svar-theme - npm Package Compare versions

Comparing version
3.1.0
to
3.1.1
+5
-0
dist/components/title.svelte

@@ -13,2 +13,3 @@ <script lang="ts">

'data-template': templateType,
'data-required': config.required,
'data-error': errors.length > 0

@@ -39,2 +40,6 @@ })}

}
div[data-template='fieldTemplate'][data-required='true']::after {
content: ' *';
color: var(--wx-color-danger);
}
</style>
+1
-1

@@ -40,4 +40,4 @@ <script lang="ts" module>

{options}
bind:value={mapped.value}
bind:value={mapped.current}
{...uiOptionProps('svarCheckboxes')({ onchange }, config, ctx)}
/>

@@ -66,2 +66,2 @@ <script lang="ts" module>

<Combo options={items} bind:value={mapped.value} {...attributes} />
<Combo options={items} bind:value={mapped.current} {...attributes} />

@@ -49,3 +49,3 @@ <script lang="ts" module>

{options}
bind:value={mapped.value}
bind:value={mapped.current}
{...uiOptionProps('svarMultiSelect')(

@@ -52,0 +52,0 @@ {

@@ -40,3 +40,3 @@ <script lang="ts" module>

{options}
bind:value={mapped.value}
bind:value={mapped.current}
{...uiOptionProps('svarRadioButtons')(

@@ -43,0 +43,0 @@ {

@@ -35,3 +35,3 @@ <script lang="ts" module>

{options}
bind:value={mapped.value}
bind:value={mapped.current}
{...uiOptionProps('svarRadio')(

@@ -38,0 +38,0 @@ {

@@ -59,2 +59,2 @@ <script lang="ts" module>

<SvarSelect options={items} bind:value={mapped.value} {...attributes} />
<SvarSelect options={items} bind:value={mapped.current} {...attributes} />
{
"name": "@sjsf-lab/svar-theme",
"version": "3.1.0",
"version": "3.1.1",
"description": "The SVAR v2 based theme for svelte-jsonschema-form",

@@ -48,6 +48,6 @@ "license": "MIT",

"dependencies": {
"@sjsf/basic-theme": "^3.1.0"
"@sjsf/basic-theme": "^3.1.1"
},
"peerDependencies": {
"@sjsf/form": "^3.1.0",
"@sjsf/form": "^3.1.1",
"@svar-ui/svelte-core": "^2.3.0",

@@ -61,5 +61,5 @@ "svelte": "^5.34.8"

"svelte": "^5.45.4",
"@sjsf/ajv8-validator": "3.1.0",
"@sjsf/form": "3.1.0",
"theme-testing": "1.0.17"
"@sjsf/ajv8-validator": "3.1.1",
"@sjsf/form": "3.1.1",
"theme-testing": "1.0.18"
},

@@ -66,0 +66,0 @@ "keywords": [

Sorry, the diff of this file is too big to display