@iress-oss/ids-mcp-server 0.0.1-dev.4 → 0.0.1-dev.5

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.
@@ -29,7 +29,7 @@ Hide code
29
29
  }
30
30
  \]}
31
31
  popoverProps\={{
32
- container: document.body
32
+ container: {}
33
33
  }}
34
34
  />
35
35
 
@@ -241,7 +241,7 @@ Hide code
241
241
  }
242
242
  \]}
243
243
  popoverProps\={{
244
- container: document.body
244
+ container: {}
245
245
  }}
246
246
  />
247
247
 
@@ -592,7 +592,7 @@ Hide code
592
592
  }
593
593
  \]}
594
594
  popoverProps\={{
595
- container: {}
595
+ container: document.body
596
596
  }}
597
597
  readOnly
598
598
  />
@@ -44,7 +44,7 @@ Hide code
44
44
  }
45
45
  \]}
46
46
  popoverProps\={{
47
- container: document.body
47
+ container: {}
48
48
  }}
49
49
  />
50
50
 
@@ -285,7 +285,7 @@ Hide code
285
285
  }
286
286
  \]}
287
287
  popoverProps\={{
288
- container: {}
288
+ container: document.body
289
289
  }}
290
290
  />
291
291
 
@@ -533,7 +533,7 @@ Hide code
533
533
  \]}
534
534
  placeholder\="Instant search!"
535
535
  popoverProps\={{
536
- container: document.body
536
+ container: {}
537
537
  }}
538
538
  />
539
539
 
@@ -735,7 +735,7 @@ Hide code
735
735
  }
736
736
  \]}
737
737
  popoverProps\={{
738
- container: {}
738
+ container: document.body
739
739
  }}
740
740
  />
741
741
 
@@ -39,7 +39,7 @@ Hide code
39
39
  }
40
40
  \]}
41
41
  popoverProps\={{
42
- container: document.body
42
+ container: {}
43
43
  }}
44
44
  />
45
45
 
@@ -538,7 +538,7 @@ Hide code
538
538
  }
539
539
  \]}
540
540
  popoverProps\={{
541
- container: document.body
541
+ container: {}
542
542
  }}
543
543
  />
544
544
 
@@ -896,7 +896,7 @@ Hide code
896
896
  }
897
897
  \]}
898
898
  popoverProps\={{
899
- container: {}
899
+ container: document.body
900
900
  }}
901
901
  searchable
902
902
  />
@@ -413,7 +413,39 @@ A boolean which, if `true`, indicates that the input must have a value before th
413
413
 
414
414
  Validate
415
415
 
416
- Show code
416
+ Hide code
417
+
418
+ \[data-radix-scroll-area-viewport\] { scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; } \[data-radix-scroll-area-viewport\]::-webkit-scrollbar { display: none; } :where(\[data-radix-scroll-area-viewport\]) { display: flex; flex-direction: column; align-items: stretch; } :where(\[data-radix-scroll-area-content\]) { flex-grow: 1; }
419
+
420
+ <IressForm\>
421
+ <IressStack gutter\="lg"\>
422
+ <IressFormField
423
+ hint\=""
424
+ label\="Default message"
425
+ name\="IressInput-default"
426
+ render\={(controlledProps) \=> <IressInput {...controlledProps} />}
427
+ rules\={{
428
+ required: true
429
+ }}
430
+ />
431
+ <IressFormField
432
+ hint\=""
433
+ label\="Custom message"
434
+ name\="IressInput-custom"
435
+ render\={(controlledProps) \=> <IressInput {...controlledProps} />}
436
+ rules\={{
437
+ required: 'Please check this field'
438
+ }}
439
+ />
440
+ <IressButton
441
+ mode\="primary"
442
+ type\="submit"
443
+ \>
444
+ Validate </IressButton\>
445
+ </IressStack\>
446
+ </IressForm\>
447
+
448
+ Copy
417
449
 
418
450
  #### [](#maxlength)`maxLength`
419
451
 
@@ -715,7 +747,7 @@ Hide code
715
747
  name\="IressInputDate-default"
716
748
  render\={(controlledProps) \=> <IressInput {...controlledProps} />}
717
749
  rules\={{
718
- minDate: new Date('2025-06-27T03:58:57.380Z')
750
+ minDate: new Date('2025-07-10T05:30:17.621Z')
719
751
  }}
720
752
  />
721
753
  <IressFormField
@@ -726,7 +758,7 @@ Hide code
726
758
  rules\={{
727
759
  minDate: {
728
760
  message: 'Please enter a date after today!',
729
- value: new Date('2025-06-27T03:58:57.380Z')
761
+ value: new Date('2025-07-10T05:30:17.621Z')
730
762
  }
731
763
  }}
732
764
  />
@@ -768,7 +800,7 @@ Hide code
768
800
  name\="IressInputDate-default"
769
801
  render\={(controlledProps) \=> <IressInput {...controlledProps} />}
770
802
  rules\={{
771
- maxDate: new Date('2025-06-27T03:58:57.380Z')
803
+ maxDate: new Date('2025-07-10T05:30:17.621Z')
772
804
  }}
773
805
  />
774
806
  <IressFormField
@@ -779,7 +811,7 @@ Hide code
779
811
  rules\={{
780
812
  maxDate: {
781
813
  message: 'Please enter a date before today!',
782
- value: new Date('2025-06-27T03:58:57.380Z')
814
+ value: new Date('2025-07-10T05:30:17.621Z')
783
815
  }
784
816
  }}
785
817
  />