@pathscale/ui 1.1.72 → 1.1.74
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/auth-card/AuthCard.d.ts +12 -0
- package/dist/components/auth-card/AuthCard.js +96 -0
- package/dist/components/auth-card/index.d.ts +1 -0
- package/dist/components/auth-card/index.js +3 -0
- package/dist/components/auth-error-message/AuthErrorMessage.d.ts +7 -0
- package/dist/components/auth-error-message/AuthErrorMessage.js +35 -0
- package/dist/components/auth-error-message/index.d.ts +1 -0
- package/dist/components/auth-error-message/index.js +3 -0
- package/dist/components/auth-field-group/AuthFieldGroup.d.ts +8 -0
- package/dist/components/auth-field-group/AuthFieldGroup.js +33 -0
- package/dist/components/auth-field-group/index.d.ts +1 -0
- package/dist/components/auth-field-group/index.js +3 -0
- package/dist/components/auth-footer-links/AuthFooterLinks.d.ts +15 -0
- package/dist/components/auth-footer-links/AuthFooterLinks.js +74 -0
- package/dist/components/auth-footer-links/index.d.ts +1 -0
- package/dist/components/auth-footer-links/index.js +3 -0
- package/dist/components/auth-form/AuthForm.d.ts +9 -0
- package/dist/components/auth-form/AuthForm.js +36 -0
- package/dist/components/auth-form/index.d.ts +1 -0
- package/dist/components/auth-form/index.js +3 -0
- package/dist/components/auth-powered-by/AuthPoweredBy.d.ts +11 -0
- package/dist/components/auth-powered-by/AuthPoweredBy.js +70 -0
- package/dist/components/auth-powered-by/index.d.ts +1 -0
- package/dist/components/auth-powered-by/index.js +3 -0
- package/dist/components/auth-submit-button/AuthSubmitButton.d.ts +11 -0
- package/dist/components/auth-submit-button/AuthSubmitButton.js +51 -0
- package/dist/components/auth-submit-button/index.d.ts +1 -0
- package/dist/components/auth-submit-button/index.js +3 -0
- package/dist/components/auth-success-message/AuthSuccessMessage.d.ts +7 -0
- package/dist/components/auth-success-message/AuthSuccessMessage.js +36 -0
- package/dist/components/auth-success-message/index.d.ts +1 -0
- package/dist/components/auth-success-message/index.js +3 -0
- package/dist/components/glass-panel/GlassPanel.classes.d.ts +1 -0
- package/dist/components/glass-panel/GlassPanel.classes.js +1 -0
- package/dist/components/glass-panel/GlassPanel.css +92 -8
- package/dist/components/glass-panel/GlassPanel.d.ts +3 -1
- package/dist/components/glass-panel/GlassPanel.js +44 -17
- package/dist/components/glass-panel/index.d.ts +1 -1
- package/dist/components/password-field/PasswordField.d.ts +20 -0
- package/dist/components/password-field/PasswordField.js +111 -0
- package/dist/components/password-field/index.d.ts +1 -0
- package/dist/components/password-field/index.js +3 -0
- package/dist/components/password-requirements/PasswordRequirements.d.ts +12 -0
- package/dist/components/password-requirements/PasswordRequirements.js +79 -0
- package/dist/components/password-requirements/index.d.ts +1 -0
- package/dist/components/password-requirements/index.js +3 -0
- package/dist/components/password-rules/index.d.ts +1 -0
- package/dist/components/password-rules/index.js +4 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +24 -1
- package/dist/passwordRules.d.ts +20 -0
- package/dist/passwordRules.js +40 -0
- package/dist/purge-manifest.json +2504 -2501
- package/dist/styles/icons/generated-icons.css +1 -129
- package/package.json +4 -11
|
@@ -1,129 +1 @@
|
|
|
1
|
-
|
|
2
|
-
.iconify {
|
|
3
|
-
display: inline-block;
|
|
4
|
-
width: 1em;
|
|
5
|
-
height: 1em;
|
|
6
|
-
background-color: currentColor;
|
|
7
|
-
-webkit-mask-repeat: no-repeat;
|
|
8
|
-
mask-repeat: no-repeat;
|
|
9
|
-
-webkit-mask-size: 100% 100%;
|
|
10
|
-
mask-size: 100% 100%;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.iconify-color {
|
|
14
|
-
display: inline-block;
|
|
15
|
-
width: 1em;
|
|
16
|
-
height: 1em;
|
|
17
|
-
background-repeat: no-repeat;
|
|
18
|
-
background-size: 100% 100%;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.icon-[mdi--close] {
|
|
22
|
-
--svg: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M19%206.41%2017.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22%2F%3E%3C%2Fsvg%3E");
|
|
23
|
-
}
|
|
24
|
-
.icon-[mdi--close].iconify {
|
|
25
|
-
-webkit-mask-image: var(--svg);
|
|
26
|
-
mask-image: var(--svg);
|
|
27
|
-
}
|
|
28
|
-
.icon-[mdi--close].iconify-color {
|
|
29
|
-
background-image: var(--svg);
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.icon-[mdi--firefox] {
|
|
33
|
-
--svg: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M6.85%206.74q.015%200%200%200M21.28%208.6c-.43-1.05-1.32-2.18-2.01-2.54.56%201.11.89%202.22%201.02%203.04v.02c-1.13-2.82-3.05-3.96-4.62-6.44-.08-.12-.17-.25-.24-.38-.04-.07-.07-.14-.11-.21-.06-.13-.12-.26-.15-.4%200-.01-.01-.02-.02-.02h-.03c-2.22%201.3-3.15%203.59-3.38%205.04-.69.04-1.37.21-1.99.51-.12.05-.17.19-.13.31.05.14.21.21.34.15.54-.26%201.14-.41%201.74-.45h.05c.08-.01.17-.01.25-.01.5-.01.97.06%201.44.2l.06.02c.1.02.17.06.25.06.05.04.11.06.16.08l.14.06c.07.03.14.06.2.09.03.02.06.03.09.05.07.04.16.07.2.11.04.02.08.05.12.07.73.45%201.34%201.07%201.75%201.81-.53-.37-1.49-.74-2.41-.58%203.6%201.81%202.63%208-2.36%207.76-.44-.01-.88-.1-1.3-.25-.1-.03-.2-.07-.29-.12-.05-.02-.12-.05-.17-.08-1.23-.63-2.24-1.82-2.38-3.27%200%200%20.5-1.73%203.33-1.73.31%200%201.17-.86%201.2-1.1%200-.09-1.74-.78-2.42-1.45-.37-.36-.54-.53-.69-.66-.08-.07-.17-.13-.26-.19a4.63%204.63%200%200%201-.03-2.45C7.6%206.12%206.8%206.86%206.22%207.5c-.4-.5-.37-2.15-.35-2.5-.01%200-.3.16-.33.18-.35.25-.68.53-.98.82-.35.37-.66.74-.94%201.14-.62.91-1.12%201.95-1.34%203.04%200%20.01-.1.41-.17.92l-.03.23c-.02.17-.04.32-.08.58v.41c0%205.53%204.5%2010.01%2010%2010.01%204.97%200%209.08-3.59%209.88-8.33.02-.11.03-.24.05-.37.2-1.72-.02-3.52-.65-5.03%22%2F%3E%3C%2Fsvg%3E");
|
|
34
|
-
}
|
|
35
|
-
.icon-[mdi--firefox].iconify {
|
|
36
|
-
-webkit-mask-image: var(--svg);
|
|
37
|
-
mask-image: var(--svg);
|
|
38
|
-
}
|
|
39
|
-
.icon-[mdi--firefox].iconify-color {
|
|
40
|
-
background-image: var(--svg);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.icon-[mdi--inbox-outline] {
|
|
44
|
-
--svg: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M19%203H5a2%202%200%200%200-2%202v14a2%202%200%200%200%202%202h14a2%202%200%200%200%202-2V5a2%202%200%200%200-2-2M5%2019v-2h3.13a4.13%204.13%200%200%200%201.27%202m9.6%200h-4.4a4.13%204.13%200%200%200%201.27-2H19m0-2h-5v1a2%202%200%200%201-4%200v-1H5V5h14Z%22%2F%3E%3C%2Fsvg%3E");
|
|
45
|
-
}
|
|
46
|
-
.icon-[mdi--inbox-outline].iconify {
|
|
47
|
-
-webkit-mask-image: var(--svg);
|
|
48
|
-
mask-image: var(--svg);
|
|
49
|
-
}
|
|
50
|
-
.icon-[mdi--inbox-outline].iconify-color {
|
|
51
|
-
background-image: var(--svg);
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.icon-[mdi--loading] {
|
|
55
|
-
--svg: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M12%204V2A10%2010%200%200%200%202%2012h2a8%208%200%200%201%208-8%22%2F%3E%3C%2Fsvg%3E");
|
|
56
|
-
}
|
|
57
|
-
.icon-[mdi--loading].iconify {
|
|
58
|
-
-webkit-mask-image: var(--svg);
|
|
59
|
-
mask-image: var(--svg);
|
|
60
|
-
}
|
|
61
|
-
.icon-[mdi--loading].iconify-color {
|
|
62
|
-
background-image: var(--svg);
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.icon-[mdi--palette] {
|
|
66
|
-
--svg: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M17.5%2012a1.5%201.5%200%200%201-1.5-1.5A1.5%201.5%200%200%201%2017.5%209a1.5%201.5%200%200%201%201.5%201.5%201.5%201.5%200%200%201-1.5%201.5m-3-4A1.5%201.5%200%200%201%2013%206.5%201.5%201.5%200%200%201%2014.5%205%201.5%201.5%200%200%201%2016%206.5%201.5%201.5%200%200%201%2014.5%208m-5%200A1.5%201.5%200%200%201%208%206.5%201.5%201.5%200%200%201%209.5%205%201.5%201.5%200%200%201%2011%206.5%201.5%201.5%200%200%201%209.5%208m-3%204A1.5%201.5%200%200%201%205%2010.5%201.5%201.5%200%200%201%206.5%209%201.5%201.5%200%200%201%208%2010.5%201.5%201.5%200%200%201%206.5%2012M12%203a9%209%200%200%200-9%209%209%209%200%200%200%209%209%201.5%201.5%200%200%200%201.5-1.5c0-.39-.15-.74-.39-1-.23-.27-.38-.62-.38-1a1.5%201.5%200%200%201%201.5-1.5H16a5%205%200%200%200%205-5c0-4.42-4.03-8-9-8%22%2F%3E%3C%2Fsvg%3E");
|
|
67
|
-
}
|
|
68
|
-
.icon-[mdi--palette].iconify {
|
|
69
|
-
-webkit-mask-image: var(--svg);
|
|
70
|
-
mask-image: var(--svg);
|
|
71
|
-
}
|
|
72
|
-
.icon-[mdi--palette].iconify-color {
|
|
73
|
-
background-image: var(--svg);
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.icon-[lucide--arrow-down] {
|
|
77
|
-
--svg: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22M12%205v14m7-7-7%207-7-7%22%2F%3E%3C%2Fsvg%3E");
|
|
78
|
-
}
|
|
79
|
-
.icon-[lucide--arrow-down].iconify {
|
|
80
|
-
-webkit-mask-image: var(--svg);
|
|
81
|
-
mask-image: var(--svg);
|
|
82
|
-
}
|
|
83
|
-
.icon-[lucide--arrow-down].iconify-color {
|
|
84
|
-
background-image: var(--svg);
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
.icon-[lucide--arrow-up] {
|
|
88
|
-
--svg: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22m5%2012%207-7%207%207m-7%207V5%22%2F%3E%3C%2Fsvg%3E");
|
|
89
|
-
}
|
|
90
|
-
.icon-[lucide--arrow-up].iconify {
|
|
91
|
-
-webkit-mask-image: var(--svg);
|
|
92
|
-
mask-image: var(--svg);
|
|
93
|
-
}
|
|
94
|
-
.icon-[lucide--arrow-up].iconify-color {
|
|
95
|
-
background-image: var(--svg);
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.icon-[lucide--arrow-up-down] {
|
|
99
|
-
--svg: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22m21%2016-4%204-4-4m4%204V4M3%208l4-4%204%204M7%204v16%22%2F%3E%3C%2Fsvg%3E");
|
|
100
|
-
}
|
|
101
|
-
.icon-[lucide--arrow-up-down].iconify {
|
|
102
|
-
-webkit-mask-image: var(--svg);
|
|
103
|
-
mask-image: var(--svg);
|
|
104
|
-
}
|
|
105
|
-
.icon-[lucide--arrow-up-down].iconify-color {
|
|
106
|
-
background-image: var(--svg);
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
.icon-[lucide--chevron-down] {
|
|
110
|
-
--svg: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22m6%209%206%206%206-6%22%2F%3E%3C%2Fsvg%3E");
|
|
111
|
-
}
|
|
112
|
-
.icon-[lucide--chevron-down].iconify {
|
|
113
|
-
-webkit-mask-image: var(--svg);
|
|
114
|
-
mask-image: var(--svg);
|
|
115
|
-
}
|
|
116
|
-
.icon-[lucide--chevron-down].iconify-color {
|
|
117
|
-
background-image: var(--svg);
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.icon-[lucide--chevron-right] {
|
|
121
|
-
--svg: url("data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22currentColor%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%20d%3D%22m9%2018%206-6-6-6%22%2F%3E%3C%2Fsvg%3E");
|
|
122
|
-
}
|
|
123
|
-
.icon-[lucide--chevron-right].iconify {
|
|
124
|
-
-webkit-mask-image: var(--svg);
|
|
125
|
-
mask-image: var(--svg);
|
|
126
|
-
}
|
|
127
|
-
.icon-[lucide--chevron-right].iconify-color {
|
|
128
|
-
background-image: var(--svg);
|
|
129
|
-
}
|
|
1
|
+
.iconify{background-color:currentColor;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%}.iconify,.iconify-color{display:inline-block;height:1em;width:1em}.iconify-color{background-repeat:no-repeat;background-size:100% 100%}.icon-[mdi--close]{--svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E")}.icon-[mdi--close].iconify{-webkit-mask-image:var(--svg);mask-image:var(--svg)}.icon-[mdi--close].iconify-color{background-image:var(--svg)}.icon-[mdi--firefox]{--svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M6.85 6.74q.015 0 0 0M21.28 8.6c-.43-1.05-1.32-2.18-2.01-2.54.56 1.11.89 2.22 1.02 3.04v.02c-1.13-2.82-3.05-3.96-4.62-6.44-.08-.12-.17-.25-.24-.38-.04-.07-.07-.14-.11-.21-.06-.13-.12-.26-.15-.4 0-.01-.01-.02-.02-.02h-.03c-2.22 1.3-3.15 3.59-3.38 5.04-.69.04-1.37.21-1.99.51-.12.05-.17.19-.13.31.05.14.21.21.34.15.54-.26 1.14-.41 1.74-.45h.05c.08-.01.17-.01.25-.01.5-.01.97.06 1.44.2l.06.02c.1.02.17.06.25.06.05.04.11.06.16.08l.14.06c.07.03.14.06.2.09.03.02.06.03.09.05.07.04.16.07.2.11.04.02.08.05.12.07.73.45 1.34 1.07 1.75 1.81-.53-.37-1.49-.74-2.41-.58 3.6 1.81 2.63 8-2.36 7.76-.44-.01-.88-.1-1.3-.25-.1-.03-.2-.07-.29-.12-.05-.02-.12-.05-.17-.08-1.23-.63-2.24-1.82-2.38-3.27 0 0 .5-1.73 3.33-1.73.31 0 1.17-.86 1.2-1.1 0-.09-1.74-.78-2.42-1.45-.37-.36-.54-.53-.69-.66-.08-.07-.17-.13-.26-.19a4.63 4.63 0 0 1-.03-2.45C7.6 6.12 6.8 6.86 6.22 7.5c-.4-.5-.37-2.15-.35-2.5-.01 0-.3.16-.33.18-.35.25-.68.53-.98.82-.35.37-.66.74-.94 1.14-.62.91-1.12 1.95-1.34 3.04 0 .01-.1.41-.17.92l-.03.23c-.02.17-.04.32-.08.58v.41c0 5.53 4.5 10.01 10 10.01 4.97 0 9.08-3.59 9.88-8.33.02-.11.03-.24.05-.37.2-1.72-.02-3.52-.65-5.03'/%3E%3C/svg%3E")}.icon-[mdi--firefox].iconify{-webkit-mask-image:var(--svg);mask-image:var(--svg)}.icon-[mdi--firefox].iconify-color{background-image:var(--svg)}.icon-[mdi--inbox-outline]{--svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2M5 19v-2h3.13a4.13 4.13 0 0 0 1.27 2m9.6 0h-4.4a4.13 4.13 0 0 0 1.27-2H19m0-2h-5v1a2 2 0 0 1-4 0v-1H5V5h14Z'/%3E%3C/svg%3E")}.icon-[mdi--inbox-outline].iconify{-webkit-mask-image:var(--svg);mask-image:var(--svg)}.icon-[mdi--inbox-outline].iconify-color{background-image:var(--svg)}.icon-[mdi--loading]{--svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 4V2A10 10 0 0 0 2 12h2a8 8 0 0 1 8-8'/%3E%3C/svg%3E")}.icon-[mdi--loading].iconify{-webkit-mask-image:var(--svg);mask-image:var(--svg)}.icon-[mdi--loading].iconify-color{background-image:var(--svg)}.icon-[mdi--palette]{--svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M17.5 12a1.5 1.5 0 0 1-1.5-1.5A1.5 1.5 0 0 1 17.5 9a1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5m-3-4A1.5 1.5 0 0 1 13 6.5 1.5 1.5 0 0 1 14.5 5 1.5 1.5 0 0 1 16 6.5 1.5 1.5 0 0 1 14.5 8m-5 0A1.5 1.5 0 0 1 8 6.5 1.5 1.5 0 0 1 9.5 5 1.5 1.5 0 0 1 11 6.5 1.5 1.5 0 0 1 9.5 8m-3 4A1.5 1.5 0 0 1 5 10.5 1.5 1.5 0 0 1 6.5 9 1.5 1.5 0 0 1 8 10.5 1.5 1.5 0 0 1 6.5 12M12 3a9 9 0 0 0-9 9 9 9 0 0 0 9 9 1.5 1.5 0 0 0 1.5-1.5c0-.39-.15-.74-.39-1-.23-.27-.38-.62-.38-1a1.5 1.5 0 0 1 1.5-1.5H16a5 5 0 0 0 5-5c0-4.42-4.03-8-9-8'/%3E%3C/svg%3E")}.icon-[mdi--palette].iconify{-webkit-mask-image:var(--svg);mask-image:var(--svg)}.icon-[mdi--palette].iconify-color{background-image:var(--svg)}.icon-[lucide--arrow-down]{--svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 5v14m7-7-7 7-7-7'/%3E%3C/svg%3E")}.icon-[lucide--arrow-down].iconify{-webkit-mask-image:var(--svg);mask-image:var(--svg)}.icon-[lucide--arrow-down].iconify-color{background-image:var(--svg)}.icon-[lucide--arrow-up]{--svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m5 12 7-7 7 7m-7 7V5'/%3E%3C/svg%3E")}.icon-[lucide--arrow-up].iconify{-webkit-mask-image:var(--svg);mask-image:var(--svg)}.icon-[lucide--arrow-up].iconify-color{background-image:var(--svg)}.icon-[lucide--arrow-up-down]{--svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m21 16-4 4-4-4m4 4V4M3 8l4-4 4 4M7 4v16'/%3E%3C/svg%3E")}.icon-[lucide--arrow-up-down].iconify{-webkit-mask-image:var(--svg);mask-image:var(--svg)}.icon-[lucide--arrow-up-down].iconify-color{background-image:var(--svg)}.icon-[lucide--check]{--svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")}.icon-[lucide--check].iconify{-webkit-mask-image:var(--svg);mask-image:var(--svg)}.icon-[lucide--check].iconify-color{background-image:var(--svg)}.icon-[lucide--chevron-down]{--svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E")}.icon-[lucide--chevron-down].iconify{-webkit-mask-image:var(--svg);mask-image:var(--svg)}.icon-[lucide--chevron-down].iconify-color{background-image:var(--svg)}.icon-[lucide--chevron-right]{--svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m9 18 6-6-6-6'/%3E%3C/svg%3E")}.icon-[lucide--chevron-right].iconify{-webkit-mask-image:var(--svg);mask-image:var(--svg)}.icon-[lucide--chevron-right].iconify-color{background-image:var(--svg)}.icon-[lucide--eye]{--svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/g%3E%3C/svg%3E")}.icon-[lucide--eye].iconify{-webkit-mask-image:var(--svg);mask-image:var(--svg)}.icon-[lucide--eye].iconify-color{background-image:var(--svg)}.icon-[lucide--eye-off]{--svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.8 10.8 0 0 1-1.444 2.49m-6.41-.679a3 3 0 0 1-4.242-4.242'/%3E%3Cpath d='M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143M2 2l20 20'/%3E%3C/g%3E%3C/svg%3E")}.icon-[lucide--eye-off].iconify{-webkit-mask-image:var(--svg);mask-image:var(--svg)}.icon-[lucide--eye-off].iconify-color{background-image:var(--svg)}.icon-[lucide--minus]{--svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 12h14'/%3E%3C/svg%3E")}.icon-[lucide--minus].iconify{-webkit-mask-image:var(--svg);mask-image:var(--svg)}.icon-[lucide--minus].iconify-color{background-image:var(--svg)}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pathscale/ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.74",
|
|
4
4
|
"author": "pathscale",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -8,14 +8,9 @@
|
|
|
8
8
|
},
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"description": "Highly opinionated SolidJS component library — batteries and kitchen sink included, but optimized and shiny.",
|
|
11
|
-
"files": [
|
|
12
|
-
"dist"
|
|
13
|
-
],
|
|
11
|
+
"files": ["dist"],
|
|
14
12
|
"homepage": "https://github.com/pathscale/ui",
|
|
15
|
-
"keywords": [
|
|
16
|
-
"solid",
|
|
17
|
-
"solidjs"
|
|
18
|
-
],
|
|
13
|
+
"keywords": ["solid", "solidjs"],
|
|
19
14
|
"bugs": {
|
|
20
15
|
"url": "https://github.com/pathscale/ui/issues"
|
|
21
16
|
},
|
|
@@ -129,8 +124,6 @@
|
|
|
129
124
|
"playground:build": "cd playground && bun run build",
|
|
130
125
|
"playground:preview": "cd playground && bun run preview"
|
|
131
126
|
},
|
|
132
|
-
"sideEffects": [
|
|
133
|
-
"**/*.css"
|
|
134
|
-
],
|
|
127
|
+
"sideEffects": ["**/*.css"],
|
|
135
128
|
"type": "module"
|
|
136
129
|
}
|