@servicetitan/anvil2 1.49.2 → 1.49.4
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/CHANGELOG.md +18 -0
- package/dist/{Combobox-RjBDpgFV.js → Combobox-BO-k4QZE.js} +2 -2
- package/dist/{Combobox-RjBDpgFV.js.map → Combobox-BO-k4QZE.js.map} +1 -1
- package/dist/Combobox.js +1 -1
- package/dist/{DataTable-BkNCMaVu.js → DataTable--vA-HttA.js} +2 -2
- package/dist/{DataTable-BkNCMaVu.js.map → DataTable--vA-HttA.js.map} +1 -1
- package/dist/{Dialog-CxH4Vnbb.js → Dialog-3ptbLquZ.js} +39 -19
- package/dist/Dialog-3ptbLquZ.js.map +1 -0
- package/dist/Dialog.css +33 -27
- package/dist/Dialog.js +1 -1
- package/dist/{Drawer-BLfDJU-e.js → Drawer-plkbENfI.js} +38 -19
- package/dist/Drawer-plkbENfI.js.map +1 -0
- package/dist/Drawer.css +35 -25
- package/dist/Drawer.js +1 -1
- package/dist/DrawerContext-D4tWTLVf.js.map +1 -1
- package/dist/{Page-CGZQ-nsg.js → Page-Bc8ko-eM.js} +2 -2
- package/dist/{Page-CGZQ-nsg.js.map → Page-Bc8ko-eM.js.map} +1 -1
- package/dist/Page.js +1 -1
- package/dist/{SelectTrigger-qvoGCkb1.js → SelectTrigger-DdsBqEtU.js} +2 -2
- package/dist/{SelectTrigger-qvoGCkb1.js.map → SelectTrigger-DdsBqEtU.js.map} +1 -1
- package/dist/SelectTrigger.js +1 -1
- package/dist/{SelectTriggerBase-C4gebtca.js → SelectTriggerBase-BkVt3IP4.js} +14 -6
- package/dist/SelectTriggerBase-BkVt3IP4.js.map +1 -0
- package/dist/Table.js +1 -1
- package/dist/Toast.js +2 -2
- package/dist/{Toaster-Dg7M4W4U.js → Toaster-Dx0cFQwb.js} +21 -21
- package/dist/{Toaster-Dg7M4W4U.js.map → Toaster-Dx0cFQwb.js.map} +1 -1
- package/dist/{Toaster-BxbR-XcR.js → Toaster-nFhRAJc8.js} +2 -2
- package/dist/{Toaster-BxbR-XcR.js.map → Toaster-nFhRAJc8.js.map} +1 -1
- package/dist/Toaster.css +56 -53
- package/dist/{Toolbar-is5509wJ.js → Toolbar-DuuaM0Cz.js} +3 -3
- package/dist/{Toolbar-is5509wJ.js.map → Toolbar-DuuaM0Cz.js.map} +1 -1
- package/dist/Toolbar.js +1 -1
- package/dist/beta.js +2 -2
- package/dist/components/Dialog/Dialog.d.ts +3 -1
- package/dist/components/Dialog/DialogContent.d.ts +22 -2
- package/dist/components/Dialog/internal/DialogContext.d.ts +1 -0
- package/dist/components/Drawer/Drawer.d.ts +3 -1
- package/dist/components/Drawer/DrawerContent.d.ts +22 -3
- package/dist/components/Drawer/internal/DrawerContext.d.ts +4 -0
- package/dist/index.js +7 -7
- package/package.json +14 -5
- package/dist/Dialog-CxH4Vnbb.js.map +0 -1
- package/dist/Drawer-BLfDJU-e.js.map +0 -1
- package/dist/SelectTriggerBase-C4gebtca.js.map +0 -1
package/dist/Drawer.css
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
@layer starter, reset, base, state, application;
|
|
2
2
|
@layer base {
|
|
3
|
-
.
|
|
3
|
+
._drawer_k2741_2 {
|
|
4
4
|
border: none;
|
|
5
5
|
background: transparent;
|
|
6
6
|
padding-block: 0;
|
|
7
7
|
padding-inline: 0;
|
|
8
8
|
outline: none;
|
|
9
|
-
animation: _close-
|
|
9
|
+
animation: _close-drawer_k2741_1 2s forwards;
|
|
10
10
|
transition: width 200ms;
|
|
11
11
|
width: 35rem;
|
|
12
12
|
height: 100%;
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
--xpos: 10rem;
|
|
22
22
|
--drawer-padding: 1.5rem;
|
|
23
23
|
}
|
|
24
|
-
.
|
|
25
|
-
animation: _open-
|
|
24
|
+
._drawer_k2741_2[open] {
|
|
25
|
+
animation: _open-drawer_k2741_1 300ms forwards;
|
|
26
26
|
}
|
|
27
|
-
.
|
|
28
|
-
animation: _open-
|
|
27
|
+
._drawer_k2741_2[open]::backdrop {
|
|
28
|
+
animation: _open-backdrop_k2741_1 200ms forwards;
|
|
29
29
|
}
|
|
30
|
-
.
|
|
30
|
+
._drawer_k2741_2 ._container_k2741_29 {
|
|
31
31
|
font-family: var(--font-family-base, "Nunito Sans", sans-serif);
|
|
32
32
|
font-size: 100%;
|
|
33
33
|
color: var(--foreground-color, #141414);
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
overflow: auto;
|
|
40
40
|
overscroll-behavior: contain;
|
|
41
41
|
}
|
|
42
|
-
.
|
|
42
|
+
._drawer_k2741_2 ._container_k2741_29 ._content_k2741_41 {
|
|
43
43
|
flex-grow: 1;
|
|
44
44
|
font-size: 1rem;
|
|
45
45
|
padding: var(--drawer-padding);
|
|
46
46
|
isolation: isolate;
|
|
47
47
|
}
|
|
48
|
-
.
|
|
48
|
+
._header_k2741_47 {
|
|
49
49
|
position: sticky;
|
|
50
50
|
inset-block-start: 0;
|
|
51
51
|
display: flex;
|
|
@@ -57,18 +57,18 @@
|
|
|
57
57
|
font-size: 1rem;
|
|
58
58
|
z-index: 1;
|
|
59
59
|
}
|
|
60
|
-
.
|
|
60
|
+
._header_k2741_47 h1 {
|
|
61
61
|
margin-block: 0;
|
|
62
62
|
margin-inline: 0;
|
|
63
63
|
}
|
|
64
|
-
.
|
|
64
|
+
._header_k2741_47 ._close-container_k2741_63 {
|
|
65
65
|
display: flex;
|
|
66
66
|
justify-content: center;
|
|
67
67
|
align-items: center;
|
|
68
68
|
width: 1.5625rem;
|
|
69
69
|
height: 1.5625rem;
|
|
70
70
|
}
|
|
71
|
-
.
|
|
71
|
+
._footer_k2741_70 {
|
|
72
72
|
display: flex;
|
|
73
73
|
gap: 0.75rem;
|
|
74
74
|
justify-content: flex-end;
|
|
@@ -81,29 +81,39 @@
|
|
|
81
81
|
}
|
|
82
82
|
@layer state {
|
|
83
83
|
@media (prefers-reduced-motion: reduce) {
|
|
84
|
-
.
|
|
84
|
+
._drawer_k2741_2 {
|
|
85
85
|
--xpos: 0;
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
|
-
.
|
|
89
|
-
animation: _close-
|
|
88
|
+
._drawer_k2741_2._remove_k2741_87[open] {
|
|
89
|
+
animation: _close-drawer_k2741_1 300ms forwards;
|
|
90
90
|
}
|
|
91
|
-
.
|
|
92
|
-
animation: _close-
|
|
91
|
+
._drawer_k2741_2._remove_k2741_87[open]::backdrop {
|
|
92
|
+
animation: _close-backdrop_k2741_1 200ms forwards;
|
|
93
93
|
}
|
|
94
|
-
.
|
|
94
|
+
._drawer_k2741_2::backdrop {
|
|
95
95
|
background: #040404;
|
|
96
96
|
}
|
|
97
|
-
.
|
|
97
|
+
._drawer_k2741_2._large_k2741_96 {
|
|
98
98
|
width: 48rem;
|
|
99
99
|
}
|
|
100
|
-
.
|
|
100
|
+
._drawer_k2741_2 ._content_k2741_41._sticky_k2741_99 {
|
|
101
|
+
position: sticky;
|
|
102
|
+
flex-grow: 0;
|
|
103
|
+
z-index: 1;
|
|
104
|
+
background-color: var(--background-color, #ffffff);
|
|
105
|
+
padding-block-end: 0.25rem;
|
|
106
|
+
}
|
|
107
|
+
._drawer_k2741_2 ._content_k2741_41._sticky_k2741_99 + ._content_k2741_41 {
|
|
108
|
+
padding-block-start: 0.25rem;
|
|
109
|
+
}
|
|
110
|
+
._drawer_k2741_2 ._footer_k2741_70._sticky_k2741_99 {
|
|
101
111
|
position: sticky;
|
|
102
112
|
inset-block-end: 0;
|
|
103
113
|
}
|
|
104
114
|
}
|
|
105
115
|
@layer application {
|
|
106
|
-
.
|
|
116
|
+
._drawer_k2741_2 ._header_k2741_47 ._close-button_k2741_115 {
|
|
107
117
|
color: var(--foreground-color, #141414);
|
|
108
118
|
}
|
|
109
119
|
}
|
|
@@ -111,7 +121,7 @@
|
|
|
111
121
|
overflow: hidden;
|
|
112
122
|
}
|
|
113
123
|
|
|
114
|
-
@keyframes _open-
|
|
124
|
+
@keyframes _open-drawer_k2741_1 {
|
|
115
125
|
from {
|
|
116
126
|
opacity: 0;
|
|
117
127
|
transform: translateX(var(--xpos));
|
|
@@ -121,7 +131,7 @@
|
|
|
121
131
|
transform: translateX(0%);
|
|
122
132
|
}
|
|
123
133
|
}
|
|
124
|
-
@keyframes _close-
|
|
134
|
+
@keyframes _close-drawer_k2741_1 {
|
|
125
135
|
from {
|
|
126
136
|
opacity: 1;
|
|
127
137
|
transform: translateX(0%);
|
|
@@ -131,7 +141,7 @@
|
|
|
131
141
|
transform: translateX(var(--xpos));
|
|
132
142
|
}
|
|
133
143
|
}
|
|
134
|
-
@keyframes _open-
|
|
144
|
+
@keyframes _open-backdrop_k2741_1 {
|
|
135
145
|
from {
|
|
136
146
|
opacity: 0;
|
|
137
147
|
}
|
|
@@ -139,7 +149,7 @@
|
|
|
139
149
|
opacity: 0.6;
|
|
140
150
|
}
|
|
141
151
|
}
|
|
142
|
-
@keyframes _close-
|
|
152
|
+
@keyframes _close-backdrop_k2741_1 {
|
|
143
153
|
from {
|
|
144
154
|
opacity: 0.6;
|
|
145
155
|
}
|
package/dist/Drawer.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { D as Drawer, a as DrawerCancelButton, d as DrawerContent, b as DrawerFooter, c as DrawerHeader, D as default } from './Drawer-
|
|
1
|
+
export { D as Drawer, a as DrawerCancelButton, d as DrawerContent, b as DrawerFooter, c as DrawerHeader, D as default } from './Drawer-plkbENfI.js';
|
|
2
2
|
//# sourceMappingURL=Drawer.js.map
|