@aaravpos/appointment-barber-booking 1.0.0 → 1.0.2
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 +7 -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,13 @@
|
|
|
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-barber-sidebar-mobile {
|
|
968
971
|
position: fixed;
|
|
969
972
|
z-index: 999;
|
|
970
973
|
inset: 0;
|
|
@@ -975,7 +978,7 @@
|
|
|
975
978
|
flex-direction: column;
|
|
976
979
|
animation: aaravposFadeIn 0.25s ease;
|
|
977
980
|
}
|
|
978
|
-
.aaravpos-sidebar-mobile-content {
|
|
981
|
+
.aaravpos-barber-sidebar-mobile-content {
|
|
979
982
|
flex: 1;
|
|
980
983
|
position: fixed;
|
|
981
984
|
inset: 0;
|
|
@@ -1593,17 +1596,6 @@
|
|
|
1593
1596
|
margin-bottom: 8px;
|
|
1594
1597
|
text-transform: uppercase;
|
|
1595
1598
|
}
|
|
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
1599
|
.aaravpos-professional-grid {
|
|
1608
1600
|
display: grid;
|
|
1609
1601
|
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.2",
|
|
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",
|