@purpur/library 9.0.3 → 9.0.5
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.json +24 -0
- package/CHANGELOG.md +15 -1
- package/dist/components/footer/src/footer-social-link.d.ts +1 -1
- package/dist/components/table/src/cell-types/button-group-cell.d.ts +1 -1
- package/dist/icon/icon.d.ts +1 -1
- package/dist/libraries/library/src/library.d.ts +1 -1
- package/dist/libraries/library/src/tokens.d.ts +1 -1
- package/dist/libraries/tokens/dist/border/variables.d.ts +9 -0
- package/dist/libraries/tokens/dist/border/variables.dark.d.ts +9 -0
- package/dist/libraries/tokens/dist/breakpoint/variables.d.ts +8 -0
- package/dist/libraries/tokens/dist/breakpoint/variables.dark.d.ts +8 -0
- package/dist/libraries/tokens/dist/color/variables.d.ts +252 -0
- package/dist/libraries/tokens/dist/color/variables.dark.d.ts +251 -0
- package/dist/libraries/tokens/dist/dark.d.ts +9 -0
- package/dist/libraries/tokens/dist/filter/variables.d.ts +1 -0
- package/dist/libraries/tokens/dist/filter/variables.dark.d.ts +1 -0
- package/dist/libraries/tokens/dist/gradient/variables.d.ts +9 -0
- package/dist/libraries/tokens/dist/gradient/variables.dark.d.ts +9 -0
- package/dist/libraries/tokens/dist/index.d.ts +9 -0
- package/dist/libraries/tokens/dist/motion/variables.d.ts +11 -0
- package/dist/libraries/tokens/dist/motion/variables.dark.d.ts +11 -0
- package/dist/libraries/tokens/dist/shadow/variables.d.ts +4 -0
- package/dist/libraries/tokens/dist/shadow/variables.dark.d.ts +4 -0
- package/dist/libraries/tokens/dist/spacing/variables.d.ts +23 -0
- package/dist/libraries/tokens/dist/spacing/variables.dark.d.ts +15 -0
- package/dist/libraries/tokens/dist/typography/variables.d.ts +26 -0
- package/dist/libraries/tokens/dist/typography/variables.dark.d.ts +26 -0
- package/dist/logo/logo.types.d.ts +1 -1
- package/package.json +24 -24
- package/scripts/generate.mts +1 -0
- package/src/aliases.ts +1 -0
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@purpur/library",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "9.0.5",
|
|
6
|
+
"tag": "@purpur/library_v9.0.5",
|
|
7
|
+
"date": "Fri, 13 Mar 2026 17:17:31 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"none": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Further improve on the exposed typings"
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"version": "9.0.4",
|
|
18
|
+
"tag": "@purpur/library_v9.0.4",
|
|
19
|
+
"date": "Fri, 13 Mar 2026 13:47:33 GMT",
|
|
20
|
+
"comments": {
|
|
21
|
+
"none": [
|
|
22
|
+
{
|
|
23
|
+
"comment": "Correctly expose the typings for tokens"
|
|
24
|
+
}
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
},
|
|
4
28
|
{
|
|
5
29
|
"version": "9.0.3",
|
|
6
30
|
"tag": "@purpur/library_v9.0.3",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
# Change Log - @purpur/library
|
|
2
2
|
|
|
3
|
-
This log was last generated on Fri, 13 Mar 2026
|
|
3
|
+
This log was last generated on Fri, 13 Mar 2026 17:17:31 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 9.0.5
|
|
6
|
+
Fri, 13 Mar 2026 17:17:31 GMT
|
|
7
|
+
|
|
8
|
+
### Updates
|
|
9
|
+
|
|
10
|
+
- Further improve on the exposed typings
|
|
11
|
+
|
|
12
|
+
## 9.0.4
|
|
13
|
+
Fri, 13 Mar 2026 13:47:33 GMT
|
|
14
|
+
|
|
15
|
+
### Updates
|
|
16
|
+
|
|
17
|
+
- Correctly expose the typings for tokens
|
|
4
18
|
|
|
5
19
|
## 9.0.3
|
|
6
20
|
Fri, 13 Mar 2026 10:25:18 GMT
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { BaseProps } from '../../../libraries/common-types/src/common-types';
|
|
3
|
-
import { IconProps } from '
|
|
3
|
+
import { IconProps } from '../../../icon/icon';
|
|
4
4
|
export type FooterSocialLinkProps = Omit<BaseProps<"a">, "aria-label" | "href" | "children"> & {
|
|
5
5
|
"aria-label": string;
|
|
6
6
|
icon: IconProps["svg"];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as React, ReactElement } from 'react';
|
|
2
2
|
import { ButtonVariant } from '../../../button/src/button';
|
|
3
|
-
import { IconProps } from '
|
|
3
|
+
import { IconProps } from '../../../../icon/icon';
|
|
4
4
|
import { Cell, RowData } from '@tanstack/react-table';
|
|
5
5
|
export type ButtonGroupButtonProp = {
|
|
6
6
|
id: string;
|
package/dist/icon/icon.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { BaseProps } from '
|
|
2
|
+
import { BaseProps } from '../libraries/common-types/src/common-types';
|
|
3
3
|
import { iconList } from './icon-imports';
|
|
4
4
|
export declare type IconName = keyof typeof iconList;
|
|
5
5
|
export declare const sizes: readonly ["xxs", "xs", "sm", "md", "lg", "xl"];
|
|
@@ -54,6 +54,6 @@ export * from '../../../components/text-spacing/src/text-spacing';
|
|
|
54
54
|
export * from '../../../components/toggle/src/toggle';
|
|
55
55
|
export * from '../../../components/tooltip/src/tooltip';
|
|
56
56
|
export * from '../../../components/visually-hidden/src/visually-hidden';
|
|
57
|
-
export * from '
|
|
57
|
+
export * from '../../tokens/dist/index.js';
|
|
58
58
|
export * from '../../theme/src/theme';
|
|
59
59
|
//# sourceMappingURL=library.d.ts.map
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export const purpurBorderRadiusXs: string;
|
|
2
|
+
export const purpurBorderRadiusSm: string;
|
|
3
|
+
export const purpurBorderRadiusMd: string;
|
|
4
|
+
export const purpurBorderRadiusLg: string;
|
|
5
|
+
export const purpurBorderRadiusFull: string;
|
|
6
|
+
export const purpurBorderWidthXs: string;
|
|
7
|
+
export const purpurBorderWidthSm: string;
|
|
8
|
+
export const purpurBorderWidthMd: string;
|
|
9
|
+
export const purpurBorderWidthLg: string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export const purpurBorderRadiusXs: string;
|
|
2
|
+
export const purpurBorderRadiusSm: string;
|
|
3
|
+
export const purpurBorderRadiusMd: string;
|
|
4
|
+
export const purpurBorderRadiusLg: string;
|
|
5
|
+
export const purpurBorderRadiusFull: string;
|
|
6
|
+
export const purpurBorderWidthXs: string;
|
|
7
|
+
export const purpurBorderWidthSm: string;
|
|
8
|
+
export const purpurBorderWidthMd: string;
|
|
9
|
+
export const purpurBorderWidthLg: string;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export const purpurBreakpointSm: string;
|
|
2
|
+
export const purpurBreakpointMd: string;
|
|
3
|
+
export const purpurBreakpointLg: string;
|
|
4
|
+
export const purpurBreakpointXl: string;
|
|
5
|
+
export const purpurBreakpointRelativeSm: string;
|
|
6
|
+
export const purpurBreakpointRelativeMd: string;
|
|
7
|
+
export const purpurBreakpointRelativeLg: string;
|
|
8
|
+
export const purpurBreakpointRelativeXl: string;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export const purpurBreakpointSm: string;
|
|
2
|
+
export const purpurBreakpointMd: string;
|
|
3
|
+
export const purpurBreakpointLg: string;
|
|
4
|
+
export const purpurBreakpointXl: string;
|
|
5
|
+
export const purpurBreakpointRelativeSm: string;
|
|
6
|
+
export const purpurBreakpointRelativeMd: string;
|
|
7
|
+
export const purpurBreakpointRelativeLg: string;
|
|
8
|
+
export const purpurBreakpointRelativeXl: string;
|
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
export const purpurColorPurple50: string;
|
|
2
|
+
export const purpurColorPurple100: string;
|
|
3
|
+
export const purpurColorPurple200: string;
|
|
4
|
+
export const purpurColorPurple300: string;
|
|
5
|
+
export const purpurColorPurple400: string;
|
|
6
|
+
export const purpurColorPurple500: string;
|
|
7
|
+
export const purpurColorPurple550: string;
|
|
8
|
+
export const purpurColorPurple600: string;
|
|
9
|
+
export const purpurColorPurple700: string;
|
|
10
|
+
export const purpurColorPurple800: string;
|
|
11
|
+
export const purpurColorPurple900: string;
|
|
12
|
+
export const purpurColorPurple950: string;
|
|
13
|
+
export const purpurColorBeige50: string;
|
|
14
|
+
export const purpurColorBeige100: string;
|
|
15
|
+
export const purpurColorBeige200: string;
|
|
16
|
+
export const purpurColorBeige300: string;
|
|
17
|
+
export const purpurColorBeige400: string;
|
|
18
|
+
export const purpurColorBeige500: string;
|
|
19
|
+
export const purpurColorBeige600: string;
|
|
20
|
+
export const purpurColorBeige700: string;
|
|
21
|
+
export const purpurColorBeige800: string;
|
|
22
|
+
export const purpurColorBeige900: string;
|
|
23
|
+
export const purpurColorBeige950: string;
|
|
24
|
+
export const purpurColorTeal50: string;
|
|
25
|
+
export const purpurColorTeal100: string;
|
|
26
|
+
export const purpurColorTeal200: string;
|
|
27
|
+
export const purpurColorTeal300: string;
|
|
28
|
+
export const purpurColorTeal400: string;
|
|
29
|
+
export const purpurColorTeal500: string;
|
|
30
|
+
export const purpurColorTeal600: string;
|
|
31
|
+
export const purpurColorTeal700: string;
|
|
32
|
+
export const purpurColorTeal800: string;
|
|
33
|
+
export const purpurColorTeal900: string;
|
|
34
|
+
export const purpurColorTeal950: string;
|
|
35
|
+
export const purpurColorGray50: string;
|
|
36
|
+
export const purpurColorGray100: string;
|
|
37
|
+
export const purpurColorGray150: string;
|
|
38
|
+
export const purpurColorGray200: string;
|
|
39
|
+
export const purpurColorGray300: string;
|
|
40
|
+
export const purpurColorGray400: string;
|
|
41
|
+
export const purpurColorGray500: string;
|
|
42
|
+
export const purpurColorGray600: string;
|
|
43
|
+
export const purpurColorGray700: string;
|
|
44
|
+
export const purpurColorGray800: string;
|
|
45
|
+
export const purpurColorGray850: string;
|
|
46
|
+
export const purpurColorGray900: string;
|
|
47
|
+
export const purpurColorGray950: string;
|
|
48
|
+
export const purpurColorGreen50: string;
|
|
49
|
+
export const purpurColorGreen100: string;
|
|
50
|
+
export const purpurColorGreen200: string;
|
|
51
|
+
export const purpurColorGreen300: string;
|
|
52
|
+
export const purpurColorGreen400: string;
|
|
53
|
+
export const purpurColorGreen500: string;
|
|
54
|
+
export const purpurColorGreen600: string;
|
|
55
|
+
export const purpurColorGreen700: string;
|
|
56
|
+
export const purpurColorGreen800: string;
|
|
57
|
+
export const purpurColorGreen900: string;
|
|
58
|
+
export const purpurColorGreen950: string;
|
|
59
|
+
export const purpurColorRed50: string;
|
|
60
|
+
export const purpurColorRed100: string;
|
|
61
|
+
export const purpurColorRed200: string;
|
|
62
|
+
export const purpurColorRed300: string;
|
|
63
|
+
export const purpurColorRed400: string;
|
|
64
|
+
export const purpurColorRed500: string;
|
|
65
|
+
export const purpurColorRed600: string;
|
|
66
|
+
export const purpurColorRed700: string;
|
|
67
|
+
export const purpurColorRed800: string;
|
|
68
|
+
export const purpurColorRed900: string;
|
|
69
|
+
export const purpurColorRed950: string;
|
|
70
|
+
export const purpurColorOrange50: string;
|
|
71
|
+
export const purpurColorOrange100: string;
|
|
72
|
+
export const purpurColorOrange200: string;
|
|
73
|
+
export const purpurColorOrange300: string;
|
|
74
|
+
export const purpurColorOrange400: string;
|
|
75
|
+
export const purpurColorOrange500: string;
|
|
76
|
+
export const purpurColorOrange600: string;
|
|
77
|
+
export const purpurColorOrange700: string;
|
|
78
|
+
export const purpurColorOrange800: string;
|
|
79
|
+
export const purpurColorOrange900: string;
|
|
80
|
+
export const purpurColorOrange950: string;
|
|
81
|
+
export const purpurColorBlue50: string;
|
|
82
|
+
export const purpurColorBlue100: string;
|
|
83
|
+
export const purpurColorBlue200: string;
|
|
84
|
+
export const purpurColorBlue300: string;
|
|
85
|
+
export const purpurColorBlue400: string;
|
|
86
|
+
export const purpurColorBlue500: string;
|
|
87
|
+
export const purpurColorBlue600: string;
|
|
88
|
+
export const purpurColorBlue700: string;
|
|
89
|
+
export const purpurColorBlue800: string;
|
|
90
|
+
export const purpurColorBlue900: string;
|
|
91
|
+
export const purpurColorBlue950: string;
|
|
92
|
+
export const purpurColorTransparentBlack50: string;
|
|
93
|
+
export const purpurColorTransparentBlack100: string;
|
|
94
|
+
export const purpurColorTransparentBlack150: string;
|
|
95
|
+
export const purpurColorTransparentBlack200: string;
|
|
96
|
+
export const purpurColorTransparentBlack300: string;
|
|
97
|
+
export const purpurColorTransparentBlack400: string;
|
|
98
|
+
export const purpurColorTransparentBlack500: string;
|
|
99
|
+
export const purpurColorTransparentBlack600: string;
|
|
100
|
+
export const purpurColorTransparentBlack700: string;
|
|
101
|
+
export const purpurColorTransparentBlack800: string;
|
|
102
|
+
export const purpurColorTransparentBlack850: string;
|
|
103
|
+
export const purpurColorTransparentBlack900: string;
|
|
104
|
+
export const purpurColorTransparentBlack950: string;
|
|
105
|
+
export const purpurColorTransparentWhite50: string;
|
|
106
|
+
export const purpurColorTransparentWhite100: string;
|
|
107
|
+
export const purpurColorTransparentWhite150: string;
|
|
108
|
+
export const purpurColorTransparentWhite200: string;
|
|
109
|
+
export const purpurColorTransparentWhite300: string;
|
|
110
|
+
export const purpurColorTransparentWhite400: string;
|
|
111
|
+
export const purpurColorTransparentWhite500: string;
|
|
112
|
+
export const purpurColorTransparentWhite600: string;
|
|
113
|
+
export const purpurColorTransparentWhite700: string;
|
|
114
|
+
export const purpurColorTransparentWhite800: string;
|
|
115
|
+
export const purpurColorTransparentWhite850: string;
|
|
116
|
+
export const purpurColorTransparentWhite900: string;
|
|
117
|
+
export const purpurColorTransparentWhite950: string;
|
|
118
|
+
export const purpurColorFunctionalBlack: string;
|
|
119
|
+
export const purpurColorFunctionalWhite: string;
|
|
120
|
+
export const purpurColorFunctionalTransparent: string;
|
|
121
|
+
export const purpurColorBrandDeepPurple: string;
|
|
122
|
+
export const purpurColorBrandCorePurple: string;
|
|
123
|
+
export const purpurColorBrandLightPurple: string;
|
|
124
|
+
export const purpurColorBrandDeepBeige: string;
|
|
125
|
+
export const purpurColorBrandBeige: string;
|
|
126
|
+
export const purpurColorBrandLightBeige: string;
|
|
127
|
+
export const purpurColorBrandOffBlack: string;
|
|
128
|
+
export const purpurColorBrandWhite: string;
|
|
129
|
+
export const purpurColorTextDefault: string;
|
|
130
|
+
export const purpurColorTextMedium: string;
|
|
131
|
+
export const purpurColorTextWeak: string;
|
|
132
|
+
export const purpurColorTextDefaultNegative: string;
|
|
133
|
+
export const purpurColorTextMediumNegative: string;
|
|
134
|
+
export const purpurColorTextWeakNegative: string;
|
|
135
|
+
export const purpurColorTextInteractivePrimary: string;
|
|
136
|
+
export const purpurColorTextInteractivePrimaryHover: string;
|
|
137
|
+
export const purpurColorTextInteractivePrimaryActive: string;
|
|
138
|
+
export const purpurColorTextInteractiveOnPrimary: string;
|
|
139
|
+
export const purpurColorTextInteractiveOnPrimaryNegative: string;
|
|
140
|
+
export const purpurColorTextInteractivePrimaryNegative: string;
|
|
141
|
+
export const purpurColorTextInteractivePrimaryHoverNegative: string;
|
|
142
|
+
export const purpurColorTextInteractivePrimaryActiveNegative: string;
|
|
143
|
+
export const purpurColorTextInteractiveOnExpressive: string;
|
|
144
|
+
export const purpurColorTextInteractiveOnExpressiveNegative: string;
|
|
145
|
+
export const purpurColorTextInteractiveOnExpressiveHover: string;
|
|
146
|
+
export const purpurColorTextInteractiveOnExpressiveHoverNegative: string;
|
|
147
|
+
export const purpurColorTextInteractiveOnExpressiveActive: string;
|
|
148
|
+
export const purpurColorTextInteractiveOnExpressiveActiveNegative: string;
|
|
149
|
+
export const purpurColorTextInteractiveOnDestructive: string;
|
|
150
|
+
export const purpurColorTextInteractiveSelected: string;
|
|
151
|
+
export const purpurColorTextStatusDiscount: string;
|
|
152
|
+
export const purpurColorTextStatusErrorStrong: string;
|
|
153
|
+
export const purpurColorTextStatusErrorStrongNegative: string;
|
|
154
|
+
export const purpurColorTextStatusErrorMedium: string;
|
|
155
|
+
export const purpurColorTextStatusErrorMediumNegative: string;
|
|
156
|
+
export const purpurColorTextStatusSuccessStrong: string;
|
|
157
|
+
export const purpurColorTextStatusSuccessStrongNegative: string;
|
|
158
|
+
export const purpurColorTextStatusSuccessMedium: string;
|
|
159
|
+
export const purpurColorTextStatusSuccessMediumNegative: string;
|
|
160
|
+
export const purpurColorTextStatusWarningStrong: string;
|
|
161
|
+
export const purpurColorTextStatusWarningMedium: string;
|
|
162
|
+
export const purpurColorTextStatusWarningMediumNegative: string;
|
|
163
|
+
export const purpurColorTextStatusInfoStrong: string;
|
|
164
|
+
export const purpurColorTextStatusInfoMedium: string;
|
|
165
|
+
export const purpurColorTextStatusNeutral: string;
|
|
166
|
+
export const purpurColorTextStatusSpecial: string;
|
|
167
|
+
export const purpurColorTextStatusAttention: string;
|
|
168
|
+
export const purpurColorTextStatusBlackFriday: string;
|
|
169
|
+
export const purpurColorTextToneOnTonePrimary: string;
|
|
170
|
+
export const purpurColorTextToneOnToneSecondary: string;
|
|
171
|
+
export const purpurColorTextToneOnToneTertiary: string;
|
|
172
|
+
export const purpurColorBackgroundPrimary: string;
|
|
173
|
+
export const purpurColorBackgroundPrimaryNegative: string;
|
|
174
|
+
export const purpurColorBackgroundSecondary: string;
|
|
175
|
+
export const purpurColorBackgroundSecondaryNegative: string;
|
|
176
|
+
export const purpurColorBackgroundOnImage: string;
|
|
177
|
+
export const purpurColorBackgroundOnImageNegative: string;
|
|
178
|
+
export const purpurColorBackgroundInteractiveAutoFill: string;
|
|
179
|
+
export const purpurColorBackgroundInteractivePrimary: string;
|
|
180
|
+
export const purpurColorBackgroundInteractivePrimaryHover: string;
|
|
181
|
+
export const purpurColorBackgroundInteractivePrimaryActive: string;
|
|
182
|
+
export const purpurColorBackgroundInteractivePrimaryNegative: string;
|
|
183
|
+
export const purpurColorBackgroundInteractivePrimaryHoverNegative: string;
|
|
184
|
+
export const purpurColorBackgroundInteractivePrimaryActiveNegative: string;
|
|
185
|
+
export const purpurColorBackgroundInteractiveExpressive: string;
|
|
186
|
+
export const purpurColorBackgroundInteractiveExpressiveHover: string;
|
|
187
|
+
export const purpurColorBackgroundInteractiveExpressiveActive: string;
|
|
188
|
+
export const purpurColorBackgroundInteractiveExpressiveNegative: string;
|
|
189
|
+
export const purpurColorBackgroundInteractiveExpressiveHoverNegative: string;
|
|
190
|
+
export const purpurColorBackgroundInteractiveExpressiveActiveNegative: string;
|
|
191
|
+
export const purpurColorBackgroundInteractiveDisabled: string;
|
|
192
|
+
export const purpurColorBackgroundInteractiveDisabledNegative: string;
|
|
193
|
+
export const purpurColorBackgroundInteractiveTransparentHover: string;
|
|
194
|
+
export const purpurColorBackgroundInteractiveTransparentHoverNegative: string;
|
|
195
|
+
export const purpurColorBackgroundInteractiveTransparentActive: string;
|
|
196
|
+
export const purpurColorBackgroundInteractiveTransparentActiveNegative: string;
|
|
197
|
+
export const purpurColorBackgroundInteractiveInactive: string;
|
|
198
|
+
export const purpurColorBackgroundInteractiveInactiveNegative: string;
|
|
199
|
+
export const purpurColorBackgroundInteractiveReadOnly: string;
|
|
200
|
+
export const purpurColorBackgroundInteractiveReadOnlyNegative: string;
|
|
201
|
+
export const purpurColorBackgroundInteractiveDestructive: string;
|
|
202
|
+
export const purpurColorBackgroundInteractiveDestructiveHover: string;
|
|
203
|
+
export const purpurColorBackgroundInteractiveDestructiveActive: string;
|
|
204
|
+
export const purpurColorBackgroundStatusInfoMedium: string;
|
|
205
|
+
export const purpurColorBackgroundStatusInfoStrong: string;
|
|
206
|
+
export const purpurColorBackgroundStatusSuccessMedium: string;
|
|
207
|
+
export const purpurColorBackgroundStatusSuccessStrong: string;
|
|
208
|
+
export const purpurColorBackgroundStatusSuccessStrongNegative: string;
|
|
209
|
+
export const purpurColorBackgroundStatusErrorMedium: string;
|
|
210
|
+
export const purpurColorBackgroundStatusErrorStrong: string;
|
|
211
|
+
export const purpurColorBackgroundStatusErrorStrongNegative: string;
|
|
212
|
+
export const purpurColorBackgroundStatusWarningMedium: string;
|
|
213
|
+
export const purpurColorBackgroundStatusWarningStrong: string;
|
|
214
|
+
export const purpurColorBackgroundStatusWarningStrongNegative: string;
|
|
215
|
+
export const purpurColorBackgroundStatusNeutral: string;
|
|
216
|
+
export const purpurColorBackgroundStatusSpecial: string;
|
|
217
|
+
export const purpurColorBackgroundStatusAttention: string;
|
|
218
|
+
export const purpurColorBackgroundStatusBlackFriday: string;
|
|
219
|
+
export const purpurColorBackgroundToneOnTonePrimary: string;
|
|
220
|
+
export const purpurColorBackgroundToneOnToneSecondary: string;
|
|
221
|
+
export const purpurColorBackgroundToneOnToneTertiary: string;
|
|
222
|
+
export const purpurColorBackgroundToneOnToneQuaternary: string;
|
|
223
|
+
export const purpurColorBorderMedium: string;
|
|
224
|
+
export const purpurColorBorderMediumNegative: string;
|
|
225
|
+
export const purpurColorBorderStrong: string;
|
|
226
|
+
export const purpurColorBorderStrongNegative: string;
|
|
227
|
+
export const purpurColorBorderWeak: string;
|
|
228
|
+
export const purpurColorBorderWeakNegative: string;
|
|
229
|
+
export const purpurColorBorderInteractiveFocus: string;
|
|
230
|
+
export const purpurColorBorderInteractivePrimary: string;
|
|
231
|
+
export const purpurColorBorderInteractivePrimaryNegative: string;
|
|
232
|
+
export const purpurColorBorderInteractivePrimaryHover: string;
|
|
233
|
+
export const purpurColorBorderInteractivePrimaryActive: string;
|
|
234
|
+
export const purpurColorBorderInteractivePrimaryHoverNegative: string;
|
|
235
|
+
export const purpurColorBorderInteractivePrimaryActiveNegative: string;
|
|
236
|
+
export const purpurColorBorderInteractiveExpressive: string;
|
|
237
|
+
export const purpurColorBorderInteractiveSelected: string;
|
|
238
|
+
export const purpurColorBorderInteractiveSubtle: string;
|
|
239
|
+
export const purpurColorBorderInteractiveSubtleNegative: string;
|
|
240
|
+
export const purpurColorBorderInteractiveSubtleHover: string;
|
|
241
|
+
export const purpurColorBorderInteractiveSubtleHoverNegative: string;
|
|
242
|
+
export const purpurColorBorderStatusError: string;
|
|
243
|
+
export const purpurColorBorderStatusErrorNegative: string;
|
|
244
|
+
export const purpurColorBorderStatusWarning: string;
|
|
245
|
+
export const purpurColorBorderStatusInfo: string;
|
|
246
|
+
export const purpurColorBorderStatusSuccess: string;
|
|
247
|
+
export const purpurColorBorderStatusSuccessNegative: string;
|
|
248
|
+
export const purpurColorOverlayDefault: string;
|
|
249
|
+
export const purpurColorGradientAiBottom: string;
|
|
250
|
+
export const purpurColorGradientAiBottomNegative: string;
|
|
251
|
+
export const purpurColorGradientAiTop: string;
|
|
252
|
+
export const purpurColorGradientAiTopNegative: string;
|
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
export const purpurColorPurple50: string;
|
|
2
|
+
export const purpurColorPurple100: string;
|
|
3
|
+
export const purpurColorPurple200: string;
|
|
4
|
+
export const purpurColorPurple300: string;
|
|
5
|
+
export const purpurColorPurple400: string;
|
|
6
|
+
export const purpurColorPurple500: string;
|
|
7
|
+
export const purpurColorPurple550: string;
|
|
8
|
+
export const purpurColorPurple600: string;
|
|
9
|
+
export const purpurColorPurple700: string;
|
|
10
|
+
export const purpurColorPurple800: string;
|
|
11
|
+
export const purpurColorPurple900: string;
|
|
12
|
+
export const purpurColorPurple950: string;
|
|
13
|
+
export const purpurColorBeige50: string;
|
|
14
|
+
export const purpurColorBeige100: string;
|
|
15
|
+
export const purpurColorBeige200: string;
|
|
16
|
+
export const purpurColorBeige300: string;
|
|
17
|
+
export const purpurColorBeige400: string;
|
|
18
|
+
export const purpurColorBeige500: string;
|
|
19
|
+
export const purpurColorBeige600: string;
|
|
20
|
+
export const purpurColorBeige700: string;
|
|
21
|
+
export const purpurColorBeige800: string;
|
|
22
|
+
export const purpurColorBeige900: string;
|
|
23
|
+
export const purpurColorBeige950: string;
|
|
24
|
+
export const purpurColorTeal50: string;
|
|
25
|
+
export const purpurColorTeal100: string;
|
|
26
|
+
export const purpurColorTeal200: string;
|
|
27
|
+
export const purpurColorTeal300: string;
|
|
28
|
+
export const purpurColorTeal400: string;
|
|
29
|
+
export const purpurColorTeal500: string;
|
|
30
|
+
export const purpurColorTeal600: string;
|
|
31
|
+
export const purpurColorTeal700: string;
|
|
32
|
+
export const purpurColorTeal800: string;
|
|
33
|
+
export const purpurColorTeal900: string;
|
|
34
|
+
export const purpurColorTeal950: string;
|
|
35
|
+
export const purpurColorGray50: string;
|
|
36
|
+
export const purpurColorGray100: string;
|
|
37
|
+
export const purpurColorGray150: string;
|
|
38
|
+
export const purpurColorGray200: string;
|
|
39
|
+
export const purpurColorGray300: string;
|
|
40
|
+
export const purpurColorGray400: string;
|
|
41
|
+
export const purpurColorGray500: string;
|
|
42
|
+
export const purpurColorGray600: string;
|
|
43
|
+
export const purpurColorGray700: string;
|
|
44
|
+
export const purpurColorGray800: string;
|
|
45
|
+
export const purpurColorGray850: string;
|
|
46
|
+
export const purpurColorGray900: string;
|
|
47
|
+
export const purpurColorGray950: string;
|
|
48
|
+
export const purpurColorGreen50: string;
|
|
49
|
+
export const purpurColorGreen100: string;
|
|
50
|
+
export const purpurColorGreen200: string;
|
|
51
|
+
export const purpurColorGreen300: string;
|
|
52
|
+
export const purpurColorGreen400: string;
|
|
53
|
+
export const purpurColorGreen500: string;
|
|
54
|
+
export const purpurColorGreen600: string;
|
|
55
|
+
export const purpurColorGreen700: string;
|
|
56
|
+
export const purpurColorGreen800: string;
|
|
57
|
+
export const purpurColorGreen900: string;
|
|
58
|
+
export const purpurColorGreen950: string;
|
|
59
|
+
export const purpurColorRed50: string;
|
|
60
|
+
export const purpurColorRed100: string;
|
|
61
|
+
export const purpurColorRed200: string;
|
|
62
|
+
export const purpurColorRed300: string;
|
|
63
|
+
export const purpurColorRed400: string;
|
|
64
|
+
export const purpurColorRed500: string;
|
|
65
|
+
export const purpurColorRed600: string;
|
|
66
|
+
export const purpurColorRed700: string;
|
|
67
|
+
export const purpurColorRed800: string;
|
|
68
|
+
export const purpurColorRed900: string;
|
|
69
|
+
export const purpurColorRed950: string;
|
|
70
|
+
export const purpurColorOrange50: string;
|
|
71
|
+
export const purpurColorOrange100: string;
|
|
72
|
+
export const purpurColorOrange200: string;
|
|
73
|
+
export const purpurColorOrange300: string;
|
|
74
|
+
export const purpurColorOrange400: string;
|
|
75
|
+
export const purpurColorOrange500: string;
|
|
76
|
+
export const purpurColorOrange600: string;
|
|
77
|
+
export const purpurColorOrange700: string;
|
|
78
|
+
export const purpurColorOrange800: string;
|
|
79
|
+
export const purpurColorOrange900: string;
|
|
80
|
+
export const purpurColorOrange950: string;
|
|
81
|
+
export const purpurColorBlue50: string;
|
|
82
|
+
export const purpurColorBlue100: string;
|
|
83
|
+
export const purpurColorBlue200: string;
|
|
84
|
+
export const purpurColorBlue300: string;
|
|
85
|
+
export const purpurColorBlue400: string;
|
|
86
|
+
export const purpurColorBlue500: string;
|
|
87
|
+
export const purpurColorBlue600: string;
|
|
88
|
+
export const purpurColorBlue700: string;
|
|
89
|
+
export const purpurColorBlue800: string;
|
|
90
|
+
export const purpurColorBlue900: string;
|
|
91
|
+
export const purpurColorBlue950: string;
|
|
92
|
+
export const purpurColorTransparentBlack50: string;
|
|
93
|
+
export const purpurColorTransparentBlack100: string;
|
|
94
|
+
export const purpurColorTransparentBlack150: string;
|
|
95
|
+
export const purpurColorTransparentBlack200: string;
|
|
96
|
+
export const purpurColorTransparentBlack300: string;
|
|
97
|
+
export const purpurColorTransparentBlack400: string;
|
|
98
|
+
export const purpurColorTransparentBlack500: string;
|
|
99
|
+
export const purpurColorTransparentBlack600: string;
|
|
100
|
+
export const purpurColorTransparentBlack700: string;
|
|
101
|
+
export const purpurColorTransparentBlack800: string;
|
|
102
|
+
export const purpurColorTransparentBlack850: string;
|
|
103
|
+
export const purpurColorTransparentBlack900: string;
|
|
104
|
+
export const purpurColorTransparentBlack950: string;
|
|
105
|
+
export const purpurColorTransparentWhite50: string;
|
|
106
|
+
export const purpurColorTransparentWhite100: string;
|
|
107
|
+
export const purpurColorTransparentWhite150: string;
|
|
108
|
+
export const purpurColorTransparentWhite200: string;
|
|
109
|
+
export const purpurColorTransparentWhite300: string;
|
|
110
|
+
export const purpurColorTransparentWhite400: string;
|
|
111
|
+
export const purpurColorTransparentWhite500: string;
|
|
112
|
+
export const purpurColorTransparentWhite600: string;
|
|
113
|
+
export const purpurColorTransparentWhite700: string;
|
|
114
|
+
export const purpurColorTransparentWhite800: string;
|
|
115
|
+
export const purpurColorTransparentWhite850: string;
|
|
116
|
+
export const purpurColorTransparentWhite900: string;
|
|
117
|
+
export const purpurColorTransparentWhite950: string;
|
|
118
|
+
export const purpurColorFunctionalBlack: string;
|
|
119
|
+
export const purpurColorFunctionalWhite: string;
|
|
120
|
+
export const purpurColorFunctionalTransparent: string;
|
|
121
|
+
export const purpurColorBrandDeepPurple: string;
|
|
122
|
+
export const purpurColorBrandCorePurple: string;
|
|
123
|
+
export const purpurColorBrandLightPurple: string;
|
|
124
|
+
export const purpurColorBrandDeepBeige: string;
|
|
125
|
+
export const purpurColorBrandBeige: string;
|
|
126
|
+
export const purpurColorBrandLightBeige: string;
|
|
127
|
+
export const purpurColorBrandOffBlack: string;
|
|
128
|
+
export const purpurColorBrandWhite: string;
|
|
129
|
+
export const purpurColorTextDefault: string;
|
|
130
|
+
export const purpurColorTextMedium: string;
|
|
131
|
+
export const purpurColorTextWeak: string;
|
|
132
|
+
export const purpurColorTextDefaultNegative: string;
|
|
133
|
+
export const purpurColorTextMediumNegative: string;
|
|
134
|
+
export const purpurColorTextWeakNegative: string;
|
|
135
|
+
export const purpurColorTextInteractivePrimary: string;
|
|
136
|
+
export const purpurColorTextInteractivePrimaryHover: string;
|
|
137
|
+
export const purpurColorTextInteractivePrimaryActive: string;
|
|
138
|
+
export const purpurColorTextInteractiveOnPrimary: string;
|
|
139
|
+
export const purpurColorTextInteractiveOnPrimaryNegative: string;
|
|
140
|
+
export const purpurColorTextInteractivePrimaryNegative: string;
|
|
141
|
+
export const purpurColorTextInteractivePrimaryHoverNegative: string;
|
|
142
|
+
export const purpurColorTextInteractivePrimaryActiveNegative: string;
|
|
143
|
+
export const purpurColorTextInteractiveOnExpressive: string;
|
|
144
|
+
export const purpurColorTextInteractiveOnExpressiveNegative: string;
|
|
145
|
+
export const purpurColorTextInteractiveOnExpressiveHover: string;
|
|
146
|
+
export const purpurColorTextInteractiveOnExpressiveHoverNegative: string;
|
|
147
|
+
export const purpurColorTextInteractiveOnExpressiveActive: string;
|
|
148
|
+
export const purpurColorTextInteractiveOnExpressiveActiveNegative: string;
|
|
149
|
+
export const purpurColorTextInteractiveOnDestructive: string;
|
|
150
|
+
export const purpurColorTextInteractiveSelected: string;
|
|
151
|
+
export const purpurColorTextStatusDiscount: string;
|
|
152
|
+
export const purpurColorTextStatusErrorStrong: string;
|
|
153
|
+
export const purpurColorTextStatusErrorStrongNegative: string;
|
|
154
|
+
export const purpurColorTextStatusErrorMedium: string;
|
|
155
|
+
export const purpurColorTextStatusErrorMediumNegative: string;
|
|
156
|
+
export const purpurColorTextStatusSuccessStrong: string;
|
|
157
|
+
export const purpurColorTextStatusSuccessStrongNegative: string;
|
|
158
|
+
export const purpurColorTextStatusSuccessMedium: string;
|
|
159
|
+
export const purpurColorTextStatusWarningStrong: string;
|
|
160
|
+
export const purpurColorTextStatusWarningMedium: string;
|
|
161
|
+
export const purpurColorTextStatusWarningMediumNegative: string;
|
|
162
|
+
export const purpurColorTextStatusInfoStrong: string;
|
|
163
|
+
export const purpurColorTextStatusInfoMedium: string;
|
|
164
|
+
export const purpurColorTextStatusNeutral: string;
|
|
165
|
+
export const purpurColorTextStatusSpecial: string;
|
|
166
|
+
export const purpurColorTextStatusAttention: string;
|
|
167
|
+
export const purpurColorTextStatusBlackFriday: string;
|
|
168
|
+
export const purpurColorTextToneOnTonePrimary: string;
|
|
169
|
+
export const purpurColorTextToneOnToneSecondary: string;
|
|
170
|
+
export const purpurColorTextToneOnToneTertiary: string;
|
|
171
|
+
export const purpurColorBackgroundPrimary: string;
|
|
172
|
+
export const purpurColorBackgroundPrimaryNegative: string;
|
|
173
|
+
export const purpurColorBackgroundSecondary: string;
|
|
174
|
+
export const purpurColorBackgroundSecondaryNegative: string;
|
|
175
|
+
export const purpurColorBackgroundOnImage: string;
|
|
176
|
+
export const purpurColorBackgroundOnImageNegative: string;
|
|
177
|
+
export const purpurColorBackgroundInteractiveAutoFill: string;
|
|
178
|
+
export const purpurColorBackgroundInteractivePrimary: string;
|
|
179
|
+
export const purpurColorBackgroundInteractivePrimaryHover: string;
|
|
180
|
+
export const purpurColorBackgroundInteractivePrimaryActive: string;
|
|
181
|
+
export const purpurColorBackgroundInteractivePrimaryNegative: string;
|
|
182
|
+
export const purpurColorBackgroundInteractivePrimaryHoverNegative: string;
|
|
183
|
+
export const purpurColorBackgroundInteractivePrimaryActiveNegative: string;
|
|
184
|
+
export const purpurColorBackgroundInteractiveExpressive: string;
|
|
185
|
+
export const purpurColorBackgroundInteractiveExpressiveHover: string;
|
|
186
|
+
export const purpurColorBackgroundInteractiveExpressiveActive: string;
|
|
187
|
+
export const purpurColorBackgroundInteractiveExpressiveNegative: string;
|
|
188
|
+
export const purpurColorBackgroundInteractiveExpressiveHoverNegative: string;
|
|
189
|
+
export const purpurColorBackgroundInteractiveExpressiveActiveNegative: string;
|
|
190
|
+
export const purpurColorBackgroundInteractiveDisabled: string;
|
|
191
|
+
export const purpurColorBackgroundInteractiveDisabledNegative: string;
|
|
192
|
+
export const purpurColorBackgroundInteractiveTransparentHover: string;
|
|
193
|
+
export const purpurColorBackgroundInteractiveTransparentHoverNegative: string;
|
|
194
|
+
export const purpurColorBackgroundInteractiveTransparentActive: string;
|
|
195
|
+
export const purpurColorBackgroundInteractiveTransparentActiveNegative: string;
|
|
196
|
+
export const purpurColorBackgroundInteractiveInactive: string;
|
|
197
|
+
export const purpurColorBackgroundInteractiveInactiveNegative: string;
|
|
198
|
+
export const purpurColorBackgroundInteractiveReadOnly: string;
|
|
199
|
+
export const purpurColorBackgroundInteractiveReadOnlyNegative: string;
|
|
200
|
+
export const purpurColorBackgroundInteractiveDestructive: string;
|
|
201
|
+
export const purpurColorBackgroundInteractiveDestructiveHover: string;
|
|
202
|
+
export const purpurColorBackgroundInteractiveDestructiveActive: string;
|
|
203
|
+
export const purpurColorBackgroundStatusInfoMedium: string;
|
|
204
|
+
export const purpurColorBackgroundStatusInfoStrong: string;
|
|
205
|
+
export const purpurColorBackgroundStatusSuccessMedium: string;
|
|
206
|
+
export const purpurColorBackgroundStatusSuccessStrong: string;
|
|
207
|
+
export const purpurColorBackgroundStatusSuccessStrongNegative: string;
|
|
208
|
+
export const purpurColorBackgroundStatusErrorMedium: string;
|
|
209
|
+
export const purpurColorBackgroundStatusErrorStrong: string;
|
|
210
|
+
export const purpurColorBackgroundStatusErrorStrongNegative: string;
|
|
211
|
+
export const purpurColorBackgroundStatusWarningMedium: string;
|
|
212
|
+
export const purpurColorBackgroundStatusWarningStrong: string;
|
|
213
|
+
export const purpurColorBackgroundStatusWarningStrongNegative: string;
|
|
214
|
+
export const purpurColorBackgroundStatusNeutral: string;
|
|
215
|
+
export const purpurColorBackgroundStatusSpecial: string;
|
|
216
|
+
export const purpurColorBackgroundStatusAttention: string;
|
|
217
|
+
export const purpurColorBackgroundStatusBlackFriday: string;
|
|
218
|
+
export const purpurColorBackgroundToneOnTonePrimary: string;
|
|
219
|
+
export const purpurColorBackgroundToneOnToneSecondary: string;
|
|
220
|
+
export const purpurColorBackgroundToneOnToneTertiary: string;
|
|
221
|
+
export const purpurColorBackgroundToneOnToneQuaternary: string;
|
|
222
|
+
export const purpurColorBorderMedium: string;
|
|
223
|
+
export const purpurColorBorderMediumNegative: string;
|
|
224
|
+
export const purpurColorBorderStrong: string;
|
|
225
|
+
export const purpurColorBorderStrongNegative: string;
|
|
226
|
+
export const purpurColorBorderWeak: string;
|
|
227
|
+
export const purpurColorBorderWeakNegative: string;
|
|
228
|
+
export const purpurColorBorderInteractiveFocus: string;
|
|
229
|
+
export const purpurColorBorderInteractivePrimary: string;
|
|
230
|
+
export const purpurColorBorderInteractivePrimaryNegative: string;
|
|
231
|
+
export const purpurColorBorderInteractivePrimaryHover: string;
|
|
232
|
+
export const purpurColorBorderInteractivePrimaryActive: string;
|
|
233
|
+
export const purpurColorBorderInteractivePrimaryHoverNegative: string;
|
|
234
|
+
export const purpurColorBorderInteractivePrimaryActiveNegative: string;
|
|
235
|
+
export const purpurColorBorderInteractiveExpressive: string;
|
|
236
|
+
export const purpurColorBorderInteractiveSelected: string;
|
|
237
|
+
export const purpurColorBorderInteractiveSubtle: string;
|
|
238
|
+
export const purpurColorBorderInteractiveSubtleNegative: string;
|
|
239
|
+
export const purpurColorBorderInteractiveSubtleHover: string;
|
|
240
|
+
export const purpurColorBorderInteractiveSubtleHoverNegative: string;
|
|
241
|
+
export const purpurColorBorderStatusError: string;
|
|
242
|
+
export const purpurColorBorderStatusErrorNegative: string;
|
|
243
|
+
export const purpurColorBorderStatusWarning: string;
|
|
244
|
+
export const purpurColorBorderStatusInfo: string;
|
|
245
|
+
export const purpurColorBorderStatusSuccess: string;
|
|
246
|
+
export const purpurColorBorderStatusSuccessNegative: string;
|
|
247
|
+
export const purpurColorOverlayDefault: string;
|
|
248
|
+
export const purpurColorGradientAiBottom: string;
|
|
249
|
+
export const purpurColorGradientAiBottomNegative: string;
|
|
250
|
+
export const purpurColorGradientAiTop: string;
|
|
251
|
+
export const purpurColorGradientAiTopNegative: string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './border/variables.dark';
|
|
2
|
+
export * from './breakpoint/variables.dark';
|
|
3
|
+
export * from './color/variables.dark';
|
|
4
|
+
export * from './filter/variables.dark';
|
|
5
|
+
export * from './gradient/variables.dark';
|
|
6
|
+
export * from './motion/variables.dark';
|
|
7
|
+
export * from './shadow/variables.dark';
|
|
8
|
+
export * from './spacing/variables.dark';
|
|
9
|
+
export * from './typography/variables.dark';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const purpurFilterBlurOnImage: string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const purpurFilterBlurOnImage: string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export const purpurGradientAiTextInteractivePrimary: string;
|
|
2
|
+
export const purpurGradientAiTextInteractivePrimaryNegative: string;
|
|
3
|
+
export const purpurGradientAiBackgroundInteractiveExpressive: string;
|
|
4
|
+
export const purpurGradientAiBackgroundInteractiveExpressiveNegative: string;
|
|
5
|
+
export const purpurGradientAiBackgroundInteractivePrimary: string;
|
|
6
|
+
export const purpurGradientAiBackgroundInteractivePrimaryNegative: string;
|
|
7
|
+
export const purpurGradientAiBackgroundPrimaryNegative: string;
|
|
8
|
+
export const purpurGradientAiBorderInteractivePrimary: string;
|
|
9
|
+
export const purpurGradientAiBorderInteractivePrimaryNegative: string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export const purpurGradientAiTextInteractivePrimary: string;
|
|
2
|
+
export const purpurGradientAiTextInteractivePrimaryNegative: string;
|
|
3
|
+
export const purpurGradientAiBackgroundInteractiveExpressive: string;
|
|
4
|
+
export const purpurGradientAiBackgroundInteractiveExpressiveNegative: string;
|
|
5
|
+
export const purpurGradientAiBackgroundInteractivePrimary: string;
|
|
6
|
+
export const purpurGradientAiBackgroundInteractivePrimaryNegative: string;
|
|
7
|
+
export const purpurGradientAiBackgroundPrimaryNegative: string;
|
|
8
|
+
export const purpurGradientAiBorderInteractivePrimary: string;
|
|
9
|
+
export const purpurGradientAiBorderInteractivePrimaryNegative: string;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './border/variables';
|
|
2
|
+
export * from './breakpoint/variables';
|
|
3
|
+
export * from './color/variables';
|
|
4
|
+
export * from './filter/variables';
|
|
5
|
+
export * from './gradient/variables';
|
|
6
|
+
export * from './motion/variables';
|
|
7
|
+
export * from './shadow/variables';
|
|
8
|
+
export * from './spacing/variables';
|
|
9
|
+
export * from './typography/variables';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export const purpurMotionDuration100: string;
|
|
2
|
+
export const purpurMotionDuration150: string;
|
|
3
|
+
export const purpurMotionDuration200: string;
|
|
4
|
+
export const purpurMotionDuration300: string;
|
|
5
|
+
export const purpurMotionDuration400: string;
|
|
6
|
+
export const purpurMotionDuration500: string;
|
|
7
|
+
export const purpurMotionDuration1500: string;
|
|
8
|
+
export const purpurMotionDuration2000: string;
|
|
9
|
+
export const purpurMotionEasingEaseIn: string;
|
|
10
|
+
export const purpurMotionEasingEaseOut: string;
|
|
11
|
+
export const purpurMotionEasingEaseInOut: string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export const purpurMotionDuration100: string;
|
|
2
|
+
export const purpurMotionDuration150: string;
|
|
3
|
+
export const purpurMotionDuration200: string;
|
|
4
|
+
export const purpurMotionDuration300: string;
|
|
5
|
+
export const purpurMotionDuration400: string;
|
|
6
|
+
export const purpurMotionDuration500: string;
|
|
7
|
+
export const purpurMotionDuration1500: string;
|
|
8
|
+
export const purpurMotionDuration2000: string;
|
|
9
|
+
export const purpurMotionEasingEaseIn: string;
|
|
10
|
+
export const purpurMotionEasingEaseOut: string;
|
|
11
|
+
export const purpurMotionEasingEaseInOut: string;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
export const purpurSpacing0: string;
|
|
2
|
+
export const purpurSpacing10: string;
|
|
3
|
+
export const purpurSpacing25: string;
|
|
4
|
+
export const purpurSpacing50: string;
|
|
5
|
+
export const purpurSpacing100: string;
|
|
6
|
+
export const purpurSpacing150: string;
|
|
7
|
+
export const purpurSpacing200: string;
|
|
8
|
+
export const purpurSpacing250: string;
|
|
9
|
+
export const purpurSpacing300: string;
|
|
10
|
+
export const purpurSpacing400: string;
|
|
11
|
+
export const purpurSpacing600: string;
|
|
12
|
+
export const purpurSpacing800: string;
|
|
13
|
+
export const purpurSpacing1000: string;
|
|
14
|
+
export const purpurSpacing1200: string;
|
|
15
|
+
export const purpurSpacing1600: string;
|
|
16
|
+
export const purpurSpacingGutterSm: string;
|
|
17
|
+
export const purpurSpacingGutterMd: string;
|
|
18
|
+
export const purpurSpacingGutterLg: string;
|
|
19
|
+
export const purpurSpacingGutterXl: string;
|
|
20
|
+
export const purpurSpacingPagePaddingSm: string;
|
|
21
|
+
export const purpurSpacingPagePaddingMd: string;
|
|
22
|
+
export const purpurSpacingPagePaddingLg: string;
|
|
23
|
+
export const purpurSpacingPagePaddingXl: string;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export const purpurSpacing0: string;
|
|
2
|
+
export const purpurSpacing10: string;
|
|
3
|
+
export const purpurSpacing25: string;
|
|
4
|
+
export const purpurSpacing50: string;
|
|
5
|
+
export const purpurSpacing100: string;
|
|
6
|
+
export const purpurSpacing150: string;
|
|
7
|
+
export const purpurSpacing200: string;
|
|
8
|
+
export const purpurSpacing250: string;
|
|
9
|
+
export const purpurSpacing300: string;
|
|
10
|
+
export const purpurSpacing400: string;
|
|
11
|
+
export const purpurSpacing600: string;
|
|
12
|
+
export const purpurSpacing800: string;
|
|
13
|
+
export const purpurSpacing1000: string;
|
|
14
|
+
export const purpurSpacing1200: string;
|
|
15
|
+
export const purpurSpacing1600: string;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export const purpurTypographyFamilyDefault: string;
|
|
2
|
+
export const purpurTypographyFamilyDisplay: string;
|
|
3
|
+
export const purpurTypographyWeightNormal: string;
|
|
4
|
+
export const purpurTypographyWeightMedium: string;
|
|
5
|
+
export const purpurTypographyWeightBold: string;
|
|
6
|
+
export const purpurTypographyLineHeightTight: string;
|
|
7
|
+
export const purpurTypographyLineHeightSnug: string;
|
|
8
|
+
export const purpurTypographyLineHeightDefault: string;
|
|
9
|
+
export const purpurTypographyLineHeightLoose: string;
|
|
10
|
+
export const purpurTypographyLineHeightLooser: string;
|
|
11
|
+
export const purpurTypographyScale50: string;
|
|
12
|
+
export const purpurTypographyScale75: string;
|
|
13
|
+
export const purpurTypographyScale100: string;
|
|
14
|
+
export const purpurTypographyScale150: string;
|
|
15
|
+
export const purpurTypographyScale200: string;
|
|
16
|
+
export const purpurTypographyScale300: string;
|
|
17
|
+
export const purpurTypographyScale400: string;
|
|
18
|
+
export const purpurTypographyScale500: string;
|
|
19
|
+
export const purpurTypographyScale600: string;
|
|
20
|
+
export const purpurTypographyScale650: string;
|
|
21
|
+
export const purpurTypographyScale700: string;
|
|
22
|
+
export const purpurTypographyScale800: string;
|
|
23
|
+
export const purpurTypographyScale850: string;
|
|
24
|
+
export const purpurTypographyScale900: string;
|
|
25
|
+
export const purpurTypographyScale1000: string;
|
|
26
|
+
export const purpurTypographyScale1100: string;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export const purpurTypographyFamilyDefault: string;
|
|
2
|
+
export const purpurTypographyFamilyDisplay: string;
|
|
3
|
+
export const purpurTypographyWeightNormal: string;
|
|
4
|
+
export const purpurTypographyWeightMedium: string;
|
|
5
|
+
export const purpurTypographyWeightBold: string;
|
|
6
|
+
export const purpurTypographyLineHeightTight: string;
|
|
7
|
+
export const purpurTypographyLineHeightSnug: string;
|
|
8
|
+
export const purpurTypographyLineHeightDefault: string;
|
|
9
|
+
export const purpurTypographyLineHeightLoose: string;
|
|
10
|
+
export const purpurTypographyLineHeightLooser: string;
|
|
11
|
+
export const purpurTypographyScale50: string;
|
|
12
|
+
export const purpurTypographyScale75: string;
|
|
13
|
+
export const purpurTypographyScale100: string;
|
|
14
|
+
export const purpurTypographyScale150: string;
|
|
15
|
+
export const purpurTypographyScale200: string;
|
|
16
|
+
export const purpurTypographyScale300: string;
|
|
17
|
+
export const purpurTypographyScale400: string;
|
|
18
|
+
export const purpurTypographyScale500: string;
|
|
19
|
+
export const purpurTypographyScale600: string;
|
|
20
|
+
export const purpurTypographyScale650: string;
|
|
21
|
+
export const purpurTypographyScale700: string;
|
|
22
|
+
export const purpurTypographyScale800: string;
|
|
23
|
+
export const purpurTypographyScale850: string;
|
|
24
|
+
export const purpurTypographyScale900: string;
|
|
25
|
+
export const purpurTypographyScale1000: string;
|
|
26
|
+
export const purpurTypographyScale1100: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@purpur/library",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.5",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css",
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
"./heading/mixins": "./dist/scss/heading.mixins.scss",
|
|
82
82
|
"./*": {
|
|
83
83
|
"require": "./dist/*.cjs.js",
|
|
84
|
-
"types": "./dist/*.d.ts",
|
|
84
|
+
"types": "./dist/libraries/library/src/*.d.ts",
|
|
85
85
|
"default": "./dist/*.es.js"
|
|
86
86
|
}
|
|
87
87
|
},
|
|
@@ -107,69 +107,69 @@
|
|
|
107
107
|
"vite": "^7.2.2",
|
|
108
108
|
"shx": "~0.4.0",
|
|
109
109
|
"@purpur/accordion": "8.21.0",
|
|
110
|
-
"@purpur/action": "8.21.0",
|
|
111
|
-
"@purpur/autocomplete": "8.21.0",
|
|
112
110
|
"@purpur/alert-badge": "8.21.0",
|
|
111
|
+
"@purpur/autocomplete": "8.21.0",
|
|
112
|
+
"@purpur/action": "8.21.0",
|
|
113
113
|
"@purpur/badge": "8.21.0",
|
|
114
114
|
"@purpur/breadcrumbs": "8.21.0",
|
|
115
|
+
"@purpur/card": "8.21.0",
|
|
115
116
|
"@purpur/button": "8.21.0",
|
|
116
117
|
"@purpur/calendar": "8.21.0",
|
|
117
|
-
"@purpur/checkbox": "8.21.0",
|
|
118
118
|
"@purpur/chip-group": "8.21.0",
|
|
119
|
-
"@purpur/
|
|
120
|
-
"@purpur/card": "8.21.0",
|
|
119
|
+
"@purpur/checkbox": "8.21.0",
|
|
121
120
|
"@purpur/common-types": "8.21.0",
|
|
122
|
-
"@purpur/component-rig": "1.0.0",
|
|
123
121
|
"@purpur/container": "8.21.0",
|
|
124
|
-
"@purpur/
|
|
122
|
+
"@purpur/color-dot": "8.21.0",
|
|
123
|
+
"@purpur/component-rig": "1.0.0",
|
|
125
124
|
"@purpur/countdown": "8.21.0",
|
|
125
|
+
"@purpur/content-block": "8.21.0",
|
|
126
126
|
"@purpur/counter-badge": "8.21.0",
|
|
127
|
-
"@purpur/date-picker": "8.21.0",
|
|
128
127
|
"@purpur/cta-link": "8.21.0",
|
|
128
|
+
"@purpur/date-picker": "8.21.0",
|
|
129
129
|
"@purpur/date-field": "8.21.0",
|
|
130
|
-
"@purpur/drawer": "8.21.0",
|
|
131
130
|
"@purpur/dismissable-chip-group": "8.21.0",
|
|
132
|
-
"@purpur/
|
|
133
|
-
"@purpur/footer": "8.21.0",
|
|
131
|
+
"@purpur/drawer": "8.21.0",
|
|
134
132
|
"@purpur/field-error-text": "8.21.0",
|
|
133
|
+
"@purpur/field-helper-text": "8.21.0",
|
|
135
134
|
"@purpur/grid": "8.21.0",
|
|
136
|
-
"@purpur/
|
|
135
|
+
"@purpur/footer": "8.21.0",
|
|
137
136
|
"@purpur/heading": "8.21.0",
|
|
138
|
-
"@purpur/illustrative-icon": "8.21.0",
|
|
139
137
|
"@purpur/icon": "8.21.0",
|
|
138
|
+
"@purpur/illustrative-icon": "8.21.0",
|
|
139
|
+
"@purpur/hero-banner": "8.21.0",
|
|
140
140
|
"@purpur/label": "8.21.0",
|
|
141
141
|
"@purpur/link": "8.21.0",
|
|
142
|
-
"@purpur/logo": "8.21.0",
|
|
143
142
|
"@purpur/listbox": "8.21.0",
|
|
144
|
-
"@purpur/
|
|
143
|
+
"@purpur/logo": "8.21.0",
|
|
145
144
|
"@purpur/notification-banner": "8.21.0",
|
|
146
|
-
"@purpur/
|
|
145
|
+
"@purpur/modal": "8.21.0",
|
|
147
146
|
"@purpur/notification": "8.21.0",
|
|
147
|
+
"@purpur/pagination": "8.21.0",
|
|
148
|
+
"@purpur/paragraph": "8.21.0",
|
|
148
149
|
"@purpur/password-field": "8.21.0",
|
|
149
150
|
"@purpur/popover": "8.21.0",
|
|
150
|
-
"@purpur/paragraph": "8.21.0",
|
|
151
|
-
"@purpur/promotion-card": "8.21.0",
|
|
152
151
|
"@purpur/product-card": "8.21.0",
|
|
152
|
+
"@purpur/promotion-card": "8.21.0",
|
|
153
153
|
"@purpur/quantity-selector": "8.21.0",
|
|
154
154
|
"@purpur/radio-button-group": "8.21.0",
|
|
155
|
+
"@purpur/radio-card-group": "8.21.0",
|
|
155
156
|
"@purpur/rich-text": "8.21.0",
|
|
156
157
|
"@purpur/search-field": "8.21.0",
|
|
157
|
-
"@purpur/radio-card-group": "8.21.0",
|
|
158
158
|
"@purpur/select": "8.21.0",
|
|
159
|
+
"@purpur/skeleton": "8.21.0",
|
|
159
160
|
"@purpur/spacer": "8.21.0",
|
|
160
161
|
"@purpur/slider": "8.21.0",
|
|
161
162
|
"@purpur/spinner": "8.21.0",
|
|
162
|
-
"@purpur/skeleton": "8.21.0",
|
|
163
163
|
"@purpur/stepper": "8.21.0",
|
|
164
164
|
"@purpur/tabs": "8.21.0",
|
|
165
165
|
"@purpur/table": "8.21.0",
|
|
166
166
|
"@purpur/text-area": "8.21.0",
|
|
167
167
|
"@purpur/text-field": "8.21.0",
|
|
168
168
|
"@purpur/text-spacing": "8.21.0",
|
|
169
|
-
"@purpur/theme": "8.21.0",
|
|
170
|
-
"@purpur/toggle": "8.21.0",
|
|
171
169
|
"@purpur/tokens": "8.21.0",
|
|
170
|
+
"@purpur/toggle": "8.21.0",
|
|
172
171
|
"@purpur/tooltip": "8.21.0",
|
|
172
|
+
"@purpur/theme": "8.21.0",
|
|
173
173
|
"@purpur/visually-hidden": "8.21.0"
|
|
174
174
|
},
|
|
175
175
|
"peerDependencies": {
|
package/scripts/generate.mts
CHANGED
|
@@ -144,6 +144,7 @@ const internalLibs = [
|
|
|
144
144
|
},
|
|
145
145
|
{ name: "@purpur/theme", folder: "libraries/theme", source: "src/theme.ts" },
|
|
146
146
|
{ name: "@purpur/action", folder: "libraries/action", source: "src/action.tsx" },
|
|
147
|
+
{ name: "@purpur/tokens", folder: "libraries/tokens", source: "dist/index.js" },
|
|
147
148
|
];
|
|
148
149
|
|
|
149
150
|
for (const lib of internalLibs) {
|
package/src/aliases.ts
CHANGED
|
@@ -260,4 +260,5 @@ export const aliases = [
|
|
|
260
260
|
},
|
|
261
261
|
{ find: /^@purpur\/theme$/, replacement: resolve(__dirname, "../../theme/src/theme.ts") },
|
|
262
262
|
{ find: /^@purpur\/action$/, replacement: resolve(__dirname, "../../action/src/action.tsx") },
|
|
263
|
+
{ find: /^@purpur\/tokens$/, replacement: resolve(__dirname, "../../tokens/dist/index.js") },
|
|
263
264
|
];
|