@aaravpos/appointment-barber-booking 1.0.0 → 1.0.1
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/index.cjs +26 -26
- package/dist/index.js +733 -743
- package/dist/styles.css +10 -15
- package/package.json +2 -1
package/dist/styles.css
CHANGED
|
@@ -943,7 +943,7 @@
|
|
|
943
943
|
align-items: center;
|
|
944
944
|
justify-content: center;
|
|
945
945
|
}
|
|
946
|
-
.aaravpos-sidebar {
|
|
946
|
+
.aaravpos-barber-sidebar {
|
|
947
947
|
flex-direction: column;
|
|
948
948
|
background: var(--surface-bg, #ffffff);
|
|
949
949
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
|
@@ -961,10 +961,16 @@
|
|
|
961
961
|
border-radius: 8px;
|
|
962
962
|
display: flex;
|
|
963
963
|
}
|
|
964
|
-
.aaravpos-
|
|
964
|
+
.aaravpos-barber-sidebar .show {
|
|
965
965
|
transform: translateX(0);
|
|
966
966
|
}
|
|
967
|
-
.aaravpos-sidebar
|
|
967
|
+
.aaravpos-barber-sidebar .hide {
|
|
968
|
+
transform: translateX(100%);
|
|
969
|
+
}
|
|
970
|
+
.aaravpos-layout-wrapper.with-sidebar .aaravpos-barber-sidebar {
|
|
971
|
+
transform: translateX(0);
|
|
972
|
+
}
|
|
973
|
+
.aaravpos-barber-sidebar-mobile {
|
|
968
974
|
position: fixed;
|
|
969
975
|
z-index: 999;
|
|
970
976
|
inset: 0;
|
|
@@ -975,7 +981,7 @@
|
|
|
975
981
|
flex-direction: column;
|
|
976
982
|
animation: aaravposFadeIn 0.25s ease;
|
|
977
983
|
}
|
|
978
|
-
.aaravpos-sidebar-mobile-content {
|
|
984
|
+
.aaravpos-barber-sidebar-mobile-content {
|
|
979
985
|
flex: 1;
|
|
980
986
|
position: fixed;
|
|
981
987
|
inset: 0;
|
|
@@ -1593,17 +1599,6 @@
|
|
|
1593
1599
|
margin-bottom: 8px;
|
|
1594
1600
|
text-transform: uppercase;
|
|
1595
1601
|
}
|
|
1596
|
-
.aaravpos-professional-description {
|
|
1597
|
-
max-width: 360px;
|
|
1598
|
-
}
|
|
1599
|
-
.aaravpos-professional-description p {
|
|
1600
|
-
font-size: 10px;
|
|
1601
|
-
line-height: 1.5;
|
|
1602
|
-
letter-spacing: 1px;
|
|
1603
|
-
text-transform: uppercase;
|
|
1604
|
-
color: #555555;
|
|
1605
|
-
margin: 0;
|
|
1606
|
-
}
|
|
1607
1602
|
.aaravpos-professional-grid {
|
|
1608
1603
|
display: grid;
|
|
1609
1604
|
grid-template-columns: repeat(5, 1fr);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aaravpos/appointment-barber-booking",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "A React component library built with Tailwind CSS v4 and TypeScript",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "pnpm@10.33.0",
|
|
@@ -65,6 +65,7 @@
|
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@reduxjs/toolkit": "2.11.2",
|
|
67
67
|
"@tailwindcss/postcss": "4.2.4",
|
|
68
|
+
"critters": "0.0.25",
|
|
68
69
|
"libphonenumber-js": "1.13.1",
|
|
69
70
|
"lodash": "4.18.1",
|
|
70
71
|
"lucide-react": "1.14.0",
|