sveltekit-ui 1.0.97 → 1.0.98

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.
@@ -519,7 +519,9 @@ export function create_attributes_input_manager(config) {
519
519
  val: config?.val,
520
520
  get_defined_options: config?.get_defined_options,
521
521
  })
522
- } else if (["h1", "h2", "h3", "h4", "h5", "base_text", "em", "strong", "strong_em"].includes(content_type)) {
522
+ } else if (
523
+ ["h1", "h2", "h3", "h4", "h5", "base_text", "em", "strong", "strong_em", "pre"].includes(content_type)
524
+ ) {
523
525
  let content_text_input_manager = $state(
524
526
  create_text_input_manager({
525
527
  type: "text_area",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sveltekit-ui",
3
- "version": "1.0.97",
3
+ "version": "1.0.98",
4
4
  "description": "A SvelteKit UI component library for building modern web applications",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -519,7 +519,9 @@ export function create_attributes_input_manager(config) {
519
519
  val: config?.val,
520
520
  get_defined_options: config?.get_defined_options,
521
521
  })
522
- } else if (["h1", "h2", "h3", "h4", "h5", "base_text", "em", "strong", "strong_em"].includes(content_type)) {
522
+ } else if (
523
+ ["h1", "h2", "h3", "h4", "h5", "base_text", "em", "strong", "strong_em", "pre"].includes(content_type)
524
+ ) {
523
525
  let content_text_input_manager = $state(
524
526
  create_text_input_manager({
525
527
  type: "text_area",