nectiasw 0.0.166 → 0.0.168
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/components/Select/index.d.ts +1 -1
- package/dist/index.es.js +15 -11
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +7 -3
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -38638,12 +38638,12 @@ var hae = { getRawAppData: function() {
|
|
|
38638
38638
|
Ed && window.__SINGLE_SPA_DEVTOOLS__ && (window.__SINGLE_SPA_DEVTOOLS__.exposedMethods = hae);
|
|
38639
38639
|
const rr = {
|
|
38640
38640
|
background: "bg-app",
|
|
38641
|
-
displayleft: "
|
|
38642
|
-
displayright: "
|
|
38641
|
+
displayleft: "absolute left-16 top-7 h-20 float-left",
|
|
38642
|
+
displayright: "absolute right-16 top-7 h-20 float-right",
|
|
38643
38643
|
logo: {
|
|
38644
38644
|
root: "cursor-pointer",
|
|
38645
38645
|
wrapper: "rounded-full border border-solid border-disabled px-6 py-3 bg-white",
|
|
38646
|
-
container: "flex
|
|
38646
|
+
container: "flex items-center justify-center sm:items-stretch sm:justify-start"
|
|
38647
38647
|
},
|
|
38648
38648
|
router: {
|
|
38649
38649
|
routes: "flex space-x-4",
|
|
@@ -38651,16 +38651,16 @@ const rr = {
|
|
|
38651
38651
|
route: "rounded-md px-3 ml-2 py-2 text-sm font-medium"
|
|
38652
38652
|
},
|
|
38653
38653
|
menu: {
|
|
38654
|
-
root: "
|
|
38655
|
-
button: "rounded-full
|
|
38656
|
-
active: "rounded-full
|
|
38654
|
+
root: "absolute right-0 flex items-center pr-3 sm:static sm:inset-auto sm:pr-0 rounded-full border border-solid border-disabled bg-white z-40",
|
|
38655
|
+
button: "rounded-full my-2 p-3 ml-2 text-darkened focus:outline-none focus:ring-1 focus:ring-offset-1 hover:cursor-pointer hover:bg-slate-100",
|
|
38656
|
+
active: "rounded-full my-2 p-3 ml-2 bg-secondary text-white focus:outline-none focus:ring-1 focus:ring-offset-1 hover:cursor-pointer",
|
|
38657
38657
|
headless: "h-6 w-6",
|
|
38658
|
-
engine: "transform transition duration-500 hover:rotate-[-120deg]
|
|
38658
|
+
engine: "transform transition duration-500 hover:rotate-[-120deg]"
|
|
38659
38659
|
},
|
|
38660
38660
|
profile: {
|
|
38661
|
-
image: "h-8 w-8 rounded-full
|
|
38661
|
+
image: "h-8 w-8 rounded-full",
|
|
38662
38662
|
root: "relative ml-9",
|
|
38663
|
-
pick: "relative pl-[0.75rem] pr-[1.12rem]
|
|
38663
|
+
pick: "relative pl-[0.75rem] pr-[1.12rem]",
|
|
38664
38664
|
name: "font-bold text-base h-[1.375rem]",
|
|
38665
38665
|
info: "flex flex-col text-sm font-medium text-darkened",
|
|
38666
38666
|
badge: "flex rounded-full bg-darkened text-sm focus:outline-none focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-gray-800",
|
|
@@ -38937,13 +38937,17 @@ const rr = {
|
|
|
38937
38937
|
}
|
|
38938
38938
|
|
|
38939
38939
|
.arrow-1 {
|
|
38940
|
-
transition:
|
|
38940
|
+
transition:
|
|
38941
|
+
transform 0.6s,
|
|
38942
|
+
filter 0.3s;
|
|
38941
38943
|
position: absolute;
|
|
38942
38944
|
transform: translateX(0px);
|
|
38943
38945
|
filter: opacity(1);
|
|
38944
38946
|
}
|
|
38945
38947
|
.arrow-2 {
|
|
38946
|
-
transition:
|
|
38948
|
+
transition:
|
|
38949
|
+
transform 0.6s,
|
|
38950
|
+
filter 0.3s;
|
|
38947
38951
|
position: absolute;
|
|
38948
38952
|
transform: translateX(15px);
|
|
38949
38953
|
filter: opacity(0);
|