@sunggang/ui-lib 0.2.96 → 0.2.97
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/BaseCkeditor.esm.js +5 -0
- package/index.esm.css +12 -12
- package/index.esm.js +5 -0
- package/index.esm2.js +509 -1989
- package/index.esm3.js +5 -0
- package/package.json +3 -1
- package/src/lib/Form/demo.d.ts +5 -25
- package/src/lib/Form/index.d.ts +2 -2
- package/src/lib/Form/types.d.ts +35 -5
package/BaseCkeditor.esm.js
CHANGED
|
@@ -17,6 +17,11 @@ import 'react-date-range';
|
|
|
17
17
|
import 'react-date-range/dist/locale/index.js';
|
|
18
18
|
import 'date-fns/addDays/index.js';
|
|
19
19
|
import 'date-fns/format/index.js';
|
|
20
|
+
import '@emotion/react';
|
|
21
|
+
import '@mui/material/Checkbox';
|
|
22
|
+
import '@mui/material/Radio';
|
|
23
|
+
import '@mui/material/RadioGroup';
|
|
24
|
+
import '@mui/material/FormControlLabel';
|
|
20
25
|
import '@tanstack/react-table';
|
|
21
26
|
import '@radix-ui/react-dropdown-menu';
|
|
22
27
|
import '@radix-ui/react-icons';
|
package/index.esm.css
CHANGED
|
@@ -700,9 +700,6 @@ video {
|
|
|
700
700
|
.z-\[9999\] {
|
|
701
701
|
z-index: 9999;
|
|
702
702
|
}
|
|
703
|
-
.m-2 {
|
|
704
|
-
margin: 0.5rem;
|
|
705
|
-
}
|
|
706
703
|
.m-4 {
|
|
707
704
|
margin: 1rem;
|
|
708
705
|
}
|
|
@@ -862,6 +859,10 @@ video {
|
|
|
862
859
|
.h-\[22px\] {
|
|
863
860
|
height: 22px;
|
|
864
861
|
}
|
|
862
|
+
.h-fit {
|
|
863
|
+
height: -moz-fit-content;
|
|
864
|
+
height: fit-content;
|
|
865
|
+
}
|
|
865
866
|
.h-full {
|
|
866
867
|
height: 100%;
|
|
867
868
|
}
|
|
@@ -1810,6 +1811,10 @@ video {
|
|
|
1810
1811
|
--tw-text-opacity: 1;
|
|
1811
1812
|
color: rgb(34 197 94 / var(--tw-text-opacity, 1));
|
|
1812
1813
|
}
|
|
1814
|
+
.text-green-600 {
|
|
1815
|
+
--tw-text-opacity: 1;
|
|
1816
|
+
color: rgb(22 163 74 / var(--tw-text-opacity, 1));
|
|
1817
|
+
}
|
|
1813
1818
|
.text-indigo-500 {
|
|
1814
1819
|
--tw-text-opacity: 1;
|
|
1815
1820
|
color: rgb(99 102 241 / var(--tw-text-opacity, 1));
|
|
@@ -1825,6 +1830,10 @@ video {
|
|
|
1825
1830
|
--tw-text-opacity: 1;
|
|
1826
1831
|
color: rgb(249 115 22 / var(--tw-text-opacity, 1));
|
|
1827
1832
|
}
|
|
1833
|
+
.text-orange-600 {
|
|
1834
|
+
--tw-text-opacity: 1;
|
|
1835
|
+
color: rgb(234 88 12 / var(--tw-text-opacity, 1));
|
|
1836
|
+
}
|
|
1828
1837
|
.text-pink-500 {
|
|
1829
1838
|
--tw-text-opacity: 1;
|
|
1830
1839
|
color: rgb(236 72 153 / var(--tw-text-opacity, 1));
|
|
@@ -2113,11 +2122,6 @@ video {
|
|
|
2113
2122
|
border-bottom-right-radius: calc(var(--radius) - 2px);
|
|
2114
2123
|
}
|
|
2115
2124
|
|
|
2116
|
-
.checked\:bg-\[\#3abff8\]:checked {
|
|
2117
|
-
--tw-bg-opacity: 1;
|
|
2118
|
-
background-color: rgb(58 191 248 / var(--tw-bg-opacity, 1));
|
|
2119
|
-
}
|
|
2120
|
-
|
|
2121
2125
|
.focus-within\:relative:focus-within {
|
|
2122
2126
|
position: relative;
|
|
2123
2127
|
}
|
|
@@ -2774,10 +2778,6 @@ video {
|
|
|
2774
2778
|
flex-direction: row;
|
|
2775
2779
|
}
|
|
2776
2780
|
|
|
2777
|
-
.sm\:flex-nowrap {
|
|
2778
|
-
flex-wrap: nowrap;
|
|
2779
|
-
}
|
|
2780
|
-
|
|
2781
2781
|
.sm\:space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
2782
2782
|
--tw-space-x-reverse: 0;
|
|
2783
2783
|
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
package/index.esm.js
CHANGED
|
@@ -17,6 +17,11 @@ import 'react-date-range';
|
|
|
17
17
|
import 'react-date-range/dist/locale/index.js';
|
|
18
18
|
import 'date-fns/addDays/index.js';
|
|
19
19
|
import 'date-fns/format/index.js';
|
|
20
|
+
import '@emotion/react';
|
|
21
|
+
import '@mui/material/Checkbox';
|
|
22
|
+
import '@mui/material/Radio';
|
|
23
|
+
import '@mui/material/RadioGroup';
|
|
24
|
+
import '@mui/material/FormControlLabel';
|
|
20
25
|
import '@tanstack/react-table';
|
|
21
26
|
import '@radix-ui/react-dropdown-menu';
|
|
22
27
|
import '@radix-ui/react-icons';
|