ep-lib-ts 1.0.66 → 1.0.67

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/dist/styles.css CHANGED
@@ -507,11 +507,6 @@
507
507
 
508
508
 
509
509
 
510
- pre {
511
- white-space: break-spaces;
512
- }
513
- /*$vite$:1*/
514
-
515
510
  @keyframes fade-c85132a3 {
516
511
  0% {
517
512
  opacity: 0;
@@ -553,16 +548,6 @@ pre {
553
548
  }
554
549
  /*$vite$:1*/
555
550
 
556
- .ep-tree-wrapper[data-v-819ce9ba] {
557
- overflow: auto;
558
- border: 1px solid #ddd;
559
- }
560
- .ep-tree-container[data-v-819ce9ba] {
561
- width: 100%;
562
- overflow-x: auto;
563
- }
564
- /*$vite$:1*/
565
-
566
551
  .ep-modal-mask {
567
552
  position: fixed;
568
553
  z-index: 6998;
@@ -602,8 +587,20 @@ pre {
602
587
  }
603
588
  /*$vite$:1*/
604
589
 
605
- .katex[data-v-a9b6227c] {
606
- font-size: 1.6em;
590
+ pre {
591
+ white-space: break-spaces;
592
+ }
593
+ /*$vite$:1*/
594
+
595
+ .ep-accordeon-content[data-v-bceaac29] {
596
+ max-height: 0;
597
+ overflow: hidden;
598
+ }
599
+ /*$vite$:1*/
600
+
601
+ .shape[data-v-4a99873e] {
602
+ height: var(--e4ec2c0a);
603
+ width: var(--3f346a72);
607
604
  }
608
605
  /*$vite$:1*/
609
606
 
@@ -618,21 +615,24 @@ pre {
618
615
  }
619
616
  /*$vite$:1*/
620
617
 
621
- .ep-info-box[data-v-64f3d0d8] a {
622
- text-decoration: underline;
623
- font-weight: 500;
618
+ .katex[data-v-a9b6227c] {
619
+ font-size: 1.6em;
624
620
  }
625
621
  /*$vite$:1*/
626
622
 
627
- .shape[data-v-4a99873e] {
628
- height: var(--e4ec2c0a);
629
- width: var(--3f346a72);
623
+ .ep-tree-wrapper[data-v-819ce9ba] {
624
+ overflow: auto;
625
+ border: 1px solid #ddd;
626
+ }
627
+ .ep-tree-container[data-v-819ce9ba] {
628
+ width: 100%;
629
+ overflow-x: auto;
630
630
  }
631
631
  /*$vite$:1*/
632
632
 
633
- .ep-accordeon-content[data-v-bceaac29] {
634
- max-height: 0;
635
- overflow: hidden;
633
+ .ep-info-box[data-v-64f3d0d8] a {
634
+ text-decoration: underline;
635
+ font-weight: 500;
636
636
  }
637
637
  /*$vite$:1*/
638
638
 
@@ -1,5 +1,10 @@
1
+ import { ButtonBgVariant } from '../Btn';
1
2
  export interface EpConclusionProps {
2
3
  icon?: string | null;
4
+ modal?: boolean;
3
5
  title?: string | null;
4
6
  subtitle?: string | null;
7
+ btnType?: ButtonBgVariant;
8
+ btnRounded?: boolean,
9
+ btnOutlined?: boolean,
5
10
  }
@@ -8,6 +8,7 @@ export interface EpWordDefProps {
8
8
  definition?: string;
9
9
  image?: string;
10
10
  };
11
+ collapse?: boolean;
11
12
  relation: Relation[];
12
13
  variation: string[];
13
14
  cols?: number | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ep-lib-ts",
3
- "version": "1.0.66",
3
+ "version": "1.0.67",
4
4
  "type": "module",
5
5
  "files": ["dist"],
6
6
  "main": "./dist/index.js",