tulingcode 0.3.0 → 0.5.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
- "version": "0.3.0",
3
+ "version": "0.5.0",
4
4
  "name": "tulingcode",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -134,7 +134,7 @@
134
134
  "@solid-primitives/i18n": "2.2.1",
135
135
  "@solid-primitives/scheduled": "1.5.2",
136
136
  "@standard-schema/spec": "1.0.0",
137
- "tulingcode-plugin": "0.1.0",
137
+ "tulingcode-plugin": "0.3.0",
138
138
  "tulingcode-script": "0.1.0",
139
139
  "tulingcode-sdk": "0.1.0",
140
140
  "tulingcode-ui": "0.1.0",
@@ -352,7 +352,7 @@ export function DialogSelect<T>(props: DialogSelectProps<T>) {
352
352
  <Option
353
353
  title={option.title}
354
354
  footer={option.footer}
355
- description={option.description !== category ? option.description : undefined}
355
+ description={option.description && option.description !== category ? option.description : undefined}
356
356
  active={active()}
357
357
  current={current()}
358
358
  gutter={option.gutter}