@yahoo/uds 0.1.15 → 0.1.16
Sign up to get free protection for your applications and to get access to all the features.
- package/cli/commands/expo/_setup.ts +5 -4
- package/cli/commands/expo/build.ts +2 -1
- package/cli/commands/expo/dev.ts +3 -1
- package/cli/commands/expo/expo.ts +6 -6
- package/cli/commands/expo/launch.ts +1 -0
- package/cli/commands/expo/update.ts +1 -0
- package/cli/commands/purge.ts +1 -0
- package/cli/commands/sync.ts +1 -0
- package/cli/commands/uds.ts +1 -0
- package/cli/env.d.ts +3 -0
- package/cli/utils/configWorker.ts +3 -1
- package/cli/utils/getCommandHelp.ts +3 -4
- package/cli/utils/purgeCSS.ts +17 -18
- package/cli/utils/setupConfigWorker.ts +3 -5
- package/dist/fixtures/index.cjs +1 -1
- package/dist/fixtures/index.d.cts +1 -3
- package/dist/fixtures/index.d.ts +1 -3
- package/dist/fixtures/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +67 -5
- package/dist/index.d.ts +67 -5
- package/dist/index.js +1 -1
- package/dist/{index.native-dgGFONLf.d.cts → index.native-fciGC1AQ.d.cts} +1 -1
- package/dist/{index.native-TvtXtTXg.d.ts → index.native-hIYZ_ma-.d.ts} +1 -1
- package/dist/index.native.d.cts +3 -3
- package/dist/index.native.d.ts +3 -3
- package/dist/tailwindPlugin.d.cts +1 -1
- package/dist/tailwindPlugin.d.ts +1 -1
- package/dist/tailwindPurge.cjs +2 -2
- package/dist/tailwindPurge.d.cts +4 -4
- package/dist/tailwindPurge.d.ts +4 -4
- package/dist/tailwindPurge.js +2 -2
- package/dist/tokens/index.d.cts +3 -3
- package/dist/tokens/index.d.ts +3 -3
- package/dist/tokens/index.native.d.cts +2 -2
- package/dist/tokens/index.native.d.ts +2 -2
- package/dist/tokens/parseTokens.d.cts +1 -1
- package/dist/tokens/parseTokens.d.ts +1 -1
- package/dist/tokens/parseTokens.native.d.cts +1 -1
- package/dist/tokens/parseTokens.native.d.ts +1 -1
- package/dist/{types-8OHfDki5.d.ts → types-_E6o7OhU.d.cts} +2 -2
- package/dist/{types-8OHfDki5.d.cts → types-_E6o7OhU.d.ts} +2 -2
- package/package.json +2 -1
- package/cli/eslint.config.mjs +0 -8
@@ -1,9 +1,10 @@
|
|
1
|
-
import { EasJsonAccessor, EasJsonUtils, Platform } from '@expo/eas-json';
|
2
|
-
import { type Props, print } from 'bluebun';
|
3
|
-
import { $, semver, which } from 'bun';
|
4
1
|
import fs from 'node:fs';
|
5
2
|
import os from 'node:os';
|
6
3
|
|
4
|
+
import { EasJsonAccessor, EasJsonUtils, Platform } from '@expo/eas-json';
|
5
|
+
import { print, type Props } from 'bluebun';
|
6
|
+
import { $, semver, which } from 'bun';
|
7
|
+
|
7
8
|
export interface MobileProps extends Props {
|
8
9
|
options: {
|
9
10
|
profile: string;
|
@@ -258,7 +259,7 @@ export async function setup({
|
|
258
259
|
const output = {
|
259
260
|
name: outputName,
|
260
261
|
dir: outputDir,
|
261
|
-
prebuildsDir
|
262
|
+
prebuildsDir,
|
262
263
|
fileBase: outputFileBase,
|
263
264
|
artifact: isIOS ? `${outputFileBase}.tar.gz` : `${outputFileBase}.zip`,
|
264
265
|
app: isIOS ? `${outputFileBase}.app` : 'todo fix android',
|
package/cli/commands/expo/dev.ts
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
import { Props } from 'bluebun';
|
2
2
|
import { $, sleep } from 'bun';
|
3
|
-
|
3
|
+
|
4
|
+
import { type MobileProps, setup } from './_setup';
|
4
5
|
|
5
6
|
interface MobileStartProps extends Props {
|
6
7
|
options: MobileProps['options'] & {
|
@@ -83,6 +84,7 @@ export default {
|
|
83
84
|
console.write('Starting Metro server...');
|
84
85
|
await $`expo start --${platform} --dev-client --localhost --scheme ${scheme} ${extrArgsString}`;
|
85
86
|
} catch (err) {
|
87
|
+
console.error(err);
|
86
88
|
throw err;
|
87
89
|
}
|
88
90
|
},
|
@@ -1,19 +1,19 @@
|
|
1
|
-
import { type Props } from 'bluebun';
|
2
1
|
import { getCommandHelp } from '../../utils/getCommandHelp';
|
2
|
+
import { type MobileProps } from './_setup';
|
3
3
|
|
4
4
|
export default {
|
5
5
|
name: 'expo',
|
6
6
|
description: '',
|
7
|
-
run: async (props:
|
7
|
+
run: async (props: MobileProps) => {
|
8
8
|
switch (props?.first) {
|
9
9
|
case 'build':
|
10
|
-
return
|
10
|
+
return (await import('./build')).default.run(props);
|
11
11
|
case 'dev':
|
12
|
-
return
|
12
|
+
return (await import('./dev')).default.run(props);
|
13
13
|
case 'launch':
|
14
|
-
return
|
14
|
+
return (await import('./launch')).default.run(props);
|
15
15
|
case 'update':
|
16
|
-
return
|
16
|
+
return (await import('./update')).default.run(props);
|
17
17
|
default: {
|
18
18
|
await getCommandHelp(props);
|
19
19
|
break;
|
package/cli/commands/purge.ts
CHANGED
package/cli/commands/sync.ts
CHANGED
package/cli/commands/uds.ts
CHANGED
package/cli/env.d.ts
CHANGED
@@ -1,8 +1,10 @@
|
|
1
1
|
// prevents TS errors
|
2
2
|
declare var self: Worker;
|
3
|
-
|
3
|
+
|
4
4
|
import { $ } from 'bun';
|
5
5
|
|
6
|
+
import { ConfigWorkerThreadMessage } from './types';
|
7
|
+
|
6
8
|
self.onmessage = async ({ data }: ConfigWorkerThreadMessage) => {
|
7
9
|
if (data.type === 'init') {
|
8
10
|
try {
|
@@ -1,13 +1,12 @@
|
|
1
1
|
import {
|
2
|
-
CommandTree,
|
3
|
-
InitialProps,
|
4
|
-
Props,
|
5
2
|
bold,
|
6
3
|
calcWidestCommandName,
|
4
|
+
CommandTree,
|
7
5
|
commandTree,
|
8
6
|
cyan,
|
9
7
|
gray,
|
10
8
|
print,
|
9
|
+
Props,
|
11
10
|
white,
|
12
11
|
} from 'bluebun';
|
13
12
|
|
@@ -35,7 +34,7 @@ async function formatHelp(initialProps: Props) {
|
|
35
34
|
function generateHelp(cmdTree: CommandTree, prefix: string): string[] {
|
36
35
|
return Object.keys(cmdTree).flatMap((key) => {
|
37
36
|
const command = cmdTree[key];
|
38
|
-
|
37
|
+
const lines: string[] = [];
|
39
38
|
|
40
39
|
const fullName = `${prefix} ${command.name === name ? '' : command.name}`.trim();
|
41
40
|
lines.push(`${cyan(fullName).padEnd(widest)} ${gray(command.description)}`);
|
package/cli/utils/purgeCSS.ts
CHANGED
@@ -1,19 +1,20 @@
|
|
1
|
-
import
|
1
|
+
import path from 'node:path';
|
2
|
+
|
2
3
|
import {
|
3
4
|
componentsDependencies,
|
4
5
|
componentToVariants,
|
6
|
+
variantsList,
|
5
7
|
variantToTailwindClass,
|
6
|
-
varitantsList,
|
7
8
|
} from '@yahoo/uds/tailwindPurge';
|
9
|
+
import { spinStart } from 'bluebun';
|
8
10
|
import FastGlob from 'fast-glob';
|
9
|
-
import path from 'node:path';
|
10
11
|
import { Project } from 'ts-morph';
|
11
12
|
|
12
|
-
type
|
13
|
+
type SafeList = string;
|
13
14
|
type ImportsList = string[];
|
14
15
|
type Files = string[];
|
15
16
|
|
16
|
-
// TODO: use CLI args
|
17
|
+
// TODO: use CLI args to power the output file path
|
17
18
|
const OUTPUT_FILE_PATH = Bun.file(`${Bun.env.PWD}/dist/safelist.js`);
|
18
19
|
|
19
20
|
const getFiles = async (): Promise<Files> => {
|
@@ -58,8 +59,8 @@ const parseFiles = (project: Project, files: Files): ImportsList => {
|
|
58
59
|
return Array.from(importsSet) as string[];
|
59
60
|
};
|
60
61
|
|
61
|
-
const
|
62
|
-
const validVariants = new Set<string>(
|
62
|
+
const getTailwindSafelist = (componentList: string[]): SafeList => {
|
63
|
+
const validVariants = new Set<string>(variantsList);
|
63
64
|
const usedProps = new Set<string>();
|
64
65
|
componentList.forEach((component: string) => {
|
65
66
|
if (isUDSComponent(component)) {
|
@@ -73,25 +74,23 @@ const getTailwindWhitelist = (componentList: string[]): Whitelist => {
|
|
73
74
|
}
|
74
75
|
});
|
75
76
|
|
76
|
-
let
|
77
|
+
let safeList = '';
|
77
78
|
for (const prop of usedProps) {
|
78
|
-
|
79
|
+
safeList += `${variantToTailwindClass[prop]} `;
|
79
80
|
}
|
80
|
-
return
|
81
|
+
return safeList;
|
81
82
|
};
|
82
83
|
|
83
84
|
const isUDSComponent = (component: string): boolean => {
|
84
85
|
return !!componentToVariants[component];
|
85
86
|
};
|
86
87
|
|
87
|
-
const saveToFile = async (
|
88
|
-
const workspaceDir = Bun.env.PWD;
|
89
|
-
|
88
|
+
const saveToFile = async (safeList: SafeList) => {
|
90
89
|
const fileContent = `
|
91
90
|
//! This file is generated by purgeCSS.ts from @yahoo/uds
|
92
91
|
//! Do not edit directly
|
93
|
-
//! If there
|
94
|
-
const
|
92
|
+
//! If there is issue with this file please report to #ask-uds
|
93
|
+
const safeList = "${safeList}";
|
95
94
|
`;
|
96
95
|
|
97
96
|
await Bun.write(OUTPUT_FILE_PATH, fileContent);
|
@@ -131,9 +130,9 @@ async function purge() {
|
|
131
130
|
// 3. Now that we have the importer components
|
132
131
|
const udsComponents = getComponentsToConvertToTW(udsImports);
|
133
132
|
// 4. Generate the CSS we need
|
134
|
-
const
|
135
|
-
// 5. Write the
|
136
|
-
await saveToFile(
|
133
|
+
const safeList = getTailwindSafelist(udsComponents);
|
134
|
+
// 5. Write the allowlist to a file
|
135
|
+
await saveToFile(safeList);
|
137
136
|
}
|
138
137
|
|
139
138
|
export { purge };
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import path from 'node:path';
|
2
|
-
|
2
|
+
|
3
3
|
import { sortKeys } from './sortKeys';
|
4
|
+
import { ConfigWorkerMainThreadMessage, SyncOptions } from './types';
|
4
5
|
|
5
6
|
const workerPath = path.resolve(import.meta.dir, './configWorker');
|
6
7
|
const workerURL = new URL(Bun.pathToFileURL(workerPath)).href;
|
@@ -23,10 +24,7 @@ export async function setupConfigWorker({
|
|
23
24
|
const udsConfigFile = Bun.file(`${workspaceDir}/uds.json`);
|
24
25
|
const udsConfigFileExists = await udsConfigFile.exists();
|
25
26
|
if (udsConfigFileExists) {
|
26
|
-
const configJsonFile = await udsConfigFile.json
|
27
|
-
id: string;
|
28
|
-
outFile: string;
|
29
|
-
}>();
|
27
|
+
const configJsonFile = (await udsConfigFile.json()) as { id: string; outFile: string };
|
30
28
|
|
31
29
|
configID = configJsonFile.id;
|
32
30
|
configOutFile = configJsonFile.outFile;
|
package/dist/fixtures/index.cjs
CHANGED
@@ -1 +1 @@
|
|
1
|
-
"use strict";var o=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var _=Object.prototype.hasOwnProperty;var b=(e,l)=>{for(var t in l)o(e,t,{get:l[t],enumerable:!0})},m=(e,l,t,p)=>{if(l&&typeof l=="object"||typeof l=="function")for(let i of g(l))!_.call(e,i)&&i!==t&&o(e,i,{get:()=>l[i],enumerable:!(p=u(l,i))||p.enumerable});return e};var h=e=>m(o({},"__esModule",{value:!0}),e);var V={};b(V,{alwaysPaletteAliases:()=>n,avatarSizes:()=>W,backgroundColors:()=>D,backgroundPaletteColors:()=>r,backgroundWashPaletteColors:()=>s,borderWidths:()=>T,buttonSizes:()=>q,buttonVariants:()=>K,colorModes:()=>y,corePaletteColors:()=>a,elevationPaletteColors:()=>c,elevations:()=>G,fontFamilies:()=>F,fontSizes:()=>U,fontWeights:()=>M,foregroundColors:()=>A,foregroundPaletteColors:()=>f,hueSteps:()=>C,hues:()=>x,iconNames:()=>I,iconSizes:()=>z,lineColors:()=>S,lineHeights:()=>R,linePaletteColors:()=>d,palette:()=>L,regionModes:()=>k,scaleModes:()=>w,shapes:()=>E,spacingAliases:()=>O,spectrumColors:()=>v,textRamp:()=>N,textTransforms:()=>B,textVariants:()=>P});module.exports=h(V);var y=["light","dark"],w=["xSmall","small","medium","large","xLarge","xxLarge","xxxLarge"],k=["\u{1F1FA}\u{1F1F8} US","\u{1F1E9}\u{1F1EA} DE","\u{1F1EB}\u{1F1F7} FR","\u{1F1E8}\u{1F1F3} CN"],x=["gray","purple","indigo","blue","cyan","teal","mint","green","lime","citron","yellow","brown","nude","orange","sunset","red","rose","pink","magenta","carbon"],C=["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],v=["gray-0","gray-1","gray-2","gray-3","gray-4","gray-5","gray-6","gray-7","gray-8","gray-9","gray-10","gray-11","gray-12","gray-13","gray-14","gray-15","purple-0","purple-1","purple-2","purple-3","purple-4","purple-5","purple-6","purple-7","purple-8","purple-9","purple-10","purple-11","purple-12","purple-13","purple-14","purple-15","indigo-0","indigo-1","indigo-2","indigo-3","indigo-4","indigo-5","indigo-6","indigo-7","indigo-8","indigo-9","indigo-10","indigo-11","indigo-12","indigo-13","indigo-14","indigo-15","blue-0","blue-1","blue-2","blue-3","blue-4","blue-5","blue-6","blue-7","blue-8","blue-9","blue-10","blue-11","blue-12","blue-13","blue-14","blue-15","cyan-0","cyan-1","cyan-2","cyan-3","cyan-4","cyan-5","cyan-6","cyan-7","cyan-8","cyan-9","cyan-10","cyan-11","cyan-12","cyan-13","cyan-14","cyan-15","teal-0","teal-1","teal-2","teal-3","teal-4","teal-5","teal-6","teal-7","teal-8","teal-9","teal-10","teal-11","teal-12","teal-13","teal-14","teal-15","mint-0","mint-1","mint-2","mint-3","mint-4","mint-5","mint-6","mint-7","mint-8","mint-9","mint-10","mint-11","mint-12","mint-13","mint-14","mint-15","green-0","green-1","green-2","green-3","green-4","green-5","green-6","green-7","green-8","green-9","green-10","green-11","green-12","green-13","green-14","green-15","lime-0","lime-1","lime-2","lime-3","lime-4","lime-5","lime-6","lime-7","lime-8","lime-9","lime-10","lime-11","lime-12","lime-13","lime-14","lime-15","citron-0","citron-1","citron-2","citron-3","citron-4","citron-5","citron-6","citron-7","citron-8","citron-9","citron-10","citron-11","citron-12","citron-13","citron-14","citron-15","yellow-0","yellow-1","yellow-2","yellow-3","yellow-4","yellow-5","yellow-6","yellow-7","yellow-8","yellow-9","yellow-10","yellow-11","yellow-12","yellow-13","yellow-14","yellow-15","brown-0","brown-1","brown-2","brown-3","brown-4","brown-5","brown-6","brown-7","brown-8","brown-9","brown-10","brown-11","brown-12","brown-13","brown-14","brown-15","nude-0","nude-1","nude-2","nude-3","nude-4","nude-5","nude-6","nude-7","nude-8","nude-9","nude-10","nude-11","nude-12","nude-13","nude-14","nude-15","orange-0","orange-1","orange-2","orange-3","orange-4","orange-5","orange-6","orange-7","orange-8","orange-9","orange-10","orange-11","orange-12","orange-13","orange-14","orange-15","sunset-0","sunset-1","sunset-2","sunset-3","sunset-4","sunset-5","sunset-6","sunset-7","sunset-8","sunset-9","sunset-10","sunset-11","sunset-12","sunset-13","sunset-14","sunset-15","red-0","red-1","red-2","red-3","red-4","red-5","red-6","red-7","red-8","red-9","red-10","red-11","red-12","red-13","red-14","red-15","rose-0","rose-1","rose-2","rose-3","rose-4","rose-5","rose-6","rose-7","rose-8","rose-9","rose-10","rose-11","rose-12","rose-13","rose-14","rose-15","pink-0","pink-1","pink-2","pink-3","pink-4","pink-5","pink-6","pink-7","pink-8","pink-9","pink-10","pink-11","pink-12","pink-13","pink-14","pink-15","magenta-0","magenta-1","magenta-2","magenta-3","magenta-4","magenta-5","magenta-6","magenta-7","magenta-8","magenta-9","magenta-10","magenta-11","magenta-12","magenta-13","magenta-14","magenta-15","carbon-0","carbon-1","carbon-2","carbon-3","carbon-4","carbon-5","carbon-6","carbon-7","carbon-8","carbon-9","carbon-10","carbon-11","carbon-12","carbon-13","carbon-14","carbon-15"],a=["accent","alert","brand","positive","warning"],r=["primary","secondary"],s=["accent-wash","alert-wash","brand-wash","positive-wash","warning-wash"],c=["elevation-1","elevation-2","elevation-3","elevation-3-inverse","overlay"],f=["primary","secondary","tertiary","muted","on-color"],d=["primary","secondary","tertiary","muted"],n=["transparent","white","black"],D=[...a,...r,...s,...c,...n],A=[...a,...f,...n],S=[...a,...d,...n],L={core:a,background:r,backgroundWash:s,elevation:c,foreground:f,line:d},P=["display1","title1","title2","title3","title4","headline1","body1","label1","label2","caption1","caption2","legal1"],F=["icons","sans","sans-beta","sans-condensed","serif-text","serif-display"],M=["light","medium","black","thin","extralight","regular","semibold","bold","extrabold"],B=["none","uppercase","lowercase","capitalize"],U=[10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,36,38,46,47,48,50,52,54],R=[12,16,20,24,28,32,36,48,40,44],N={xSmall:{display1:-2,title1:-3,title2:-3,title3:-3,title4:-3,headline1:-3,body1:-3,label1:-2,label2:-2,caption1:-1,caption2:-1,legal1:-1},small:{display1:-2,title1:-2,title2:-2,title3:-2,title4:-2,headline1:-2,body1:-2,label1:-1,label2:-1,caption1:0,caption2:0,legal1:0},medium:{display1:-1,title1:-1,title2:-1,title3:-1,title4:-1,headline1:-1,body1:-1,label1:-1,label2:-1,caption1:0,caption2:0,legal1:0},large:{display1:0,title1:0,title2:0,title3:0,title4:0,headline1:0,body1:0,label1:0,label2:0,caption1:0,caption2:0,legal1:0},xLarge:{display1:2,title1:2,title2:2,title3:2,title4:2,headline1:2,body1:0,label1:2,label2:2,caption1:2,caption2:2,legal1:2},xxLarge:{display1:4,title1:4,title2:4,title3:4,title4:6,headline1:4,body1:4,label1:4,label2:4,caption1:4,caption2:4,legal1:4},xxxLarge:{display1:6,title1:6,title2:6,title3:6,title4:8,headline1:6,body1:6,label1:6,label2:6,caption1:6,caption2:6,legal1:6}},W=["s","m","l"],T=["0","1","2","4","8"],G=["1","2","3"],z=["s","m","l"],O=["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14"],E=["s","m","l","square","xs","xl","xxl","circle"],K=["accent","alert","brand","positive","warning","secondary","accent-wash","alert-wash","brand-wash","positive-wash","warning-wash","accent-outline","alert-outline","brand-outline","positive-outline","warning-outline","accent-ghost","alert-ghost","brand-ghost","positive-ghost","warning-ghost","primary-ghost","primary-outline"],q=["s","m","l"],I=["sunset","bold","academicCap","academicCap_fill","accept","accept_fill","accessibility","accountKey","accountKey_fill","accountKeyAndroid","accountKeyAndroid_fill","addAttachments","addAttachments_fill","addDocument","addDocument_fill","addFolder","addFolder_fill","addLink","addPerson","addPerson_fill","addToCalendar","addToCalendar_fill","ads","adsEuro","adsPound","alarmClock","alarmClock_fill","analytics","announcement","announcement_fill","appPublishing","appPublishing_fill","apparel","apparel_fill","appleWatch_fill","ar3d","archive","archive_fill","arrowCurveLeft","arrowCurveRight","arrowCurveUp","arrowDown","arrowDownAboveLine","arrowDownAndIn","arrowLeft","arrowRight","arrowUp","arrowUpAndOut","arrowUpUnderLine","ascender","astroAquarius","astroAries","astroCancer","astroCapricorn","astroGemini","astroLeo","astroLibra","astroPisces","astroSagittarius","astroScorpio","astroTaurus","astroVirgo","atSymbol","attachment","badge","badge_fill","barGraph","barGraph_fill","baseball","baseball_fill","baseballBat_fill","basket","basket_fill","basketball","basketball_fill","beachUmbrella","beachUmbrella_fill","bed","bed_fill","beer","beer_fill","bell","bell_fill","bellOff","bellOff_fill","bellPlus","bill","bill_fill","billing","billing_fill","binoculars","binoculars_fill","biometrics","birthdayCake","birthdayCake_fill","blockPerson","blockPerson_fill","bookmark","bookmark_fill","box","box_fill","briefcase","briefcase_fill","bubbleGraph","bubbleGraph_fill","bulletList","bulletListRectangle","bulletListRectangle_fill","bus","bus_fill","cal01","cal01_fill","cal02","cal02_fill","cal03","cal03_fill","cal04","cal04_fill","cal05","cal05_fill","cal06","cal06_fill","cal07","cal07_fill","cal08","cal08_fill","cal09","cal09_fill","cal10","cal10_fill","cal11","cal11_fill","cal12","cal12_fill","cal13","cal13_fill","cal14","cal14_fill","cal15","cal15_fill","cal16","cal16_fill","cal17","cal17_fill","cal18","cal18_fill","cal19","cal19_fill","cal20","cal20_fill","cal21","cal21_fill","cal22","cal22_fill","cal23","cal23_fill","cal24","cal24_fill","cal25","cal25_fill","cal26","cal26_fill","cal27","cal27_fill","cal28","cal28_fill","cal29","cal29_fill","cal30","cal30_fill","cal31","cal31_fill","calendar","calendar_fill","camera","camera_fill","candy","canvas","canvas_fill","capitolBuilding","capitolBuilding_fill","capsule","capsule_fill","car","car_fill","card","card_fill","cart","castAnimationFrame1","castAnimationFrame2","castUnavailable","centerAligned","cfl_fill","changeFont","checkboxMixed","checkboxMixed_fill","checkboxSelected","checkboxSelected_fill","checkboxUnselected","checkmarkSelected","chevronBack","chevronDown","chevronNext","chevronUp","chromeCast","chromeCast_fill","cleats","cleats_fill","clientAssist","clientAssist_fill","clock","clock_fill","close","closedCaptioning","closedCaptioning_fill","cloud","cloud_fill","cloudDay","cloudDrive","cloudDrive_fill","cloudNight","code","coffeeCup","coffeeCup_fill","coffeeMug","coffeeMug_fill","collapseList","collegeFootball","collegeFootball_fill","colorPalette","colorPalette_fill","comedyTragedyMasks","comedyTragedyMasks_fill","comment","comment_fill","compass","compass_fill","compose","compose_fill","contactBook","contactBook_fill","contactCard","contactCard_fill","convenienceStore","convenienceStore_fill","conversations","conversations_fill","copy","copy_fill","copyright","copyright_fill","creativeCommons","creativeCommons_fill","creditCard","creditCard_fill","crescentMoon","crescentMoonAlt","cryptocurrency","cryptocurrency_fill","cursor","cut","dashboard","dashboard_fill","dating","dating_fill","decline","decline_fill","descender","desktop","desktop_fill","diamond","diamond_fill","direction","direction_fill","discoBall","document","document_fill","dollar","doubleLeft","doubleRight","draft","draft_fill","dragBars","dragBarsAlt","dressForm_fill","dressFrom","dusk","dusk_fill","eclipse","eclipse_fill","edit","edit_fill","emoticon","emoticon_fill","euro","exchange","exclamation","exclamation_fill","exclamationAlt","exclamationAlt_fill","exitFullscreen","expand","expandAlt","expandList","eye","eyeSlash","eyelash","fantasyBaseball","fantasyBaseball_fill","fantasyFootball","fantasyFootball_fill","files","files_fill","filter","finance","firstQuarter","flag","flag_fill","flower","fog","fogDay","fogNight","folder","folder_fill","foodAndDrink","foodAndDrink_fill","football","football_fill","forkKnife","forward","forward_fill","fourColumn","fourColumn_fill","fullMoon","fullscreen","fullscreenAudio","gallery","gallery_fill","gasStation","gear","gear_fill","gif","gif_fill","globe","golf","grid","groups","groups_fill","guitar","halfSun","halfSun_fill","hand","hashtag","haze","hazeDay","hazeNight","heart","heart_fill","heavyRain","heavyRainDay","heavyRainLightning","heavyRainLightningDay","heavyRainLightningNight","heavyRainNight","history","hockey","home","home_fill","hurricane","inbox","inbox_fill","indent","information","information_fill","invitation","invitation_fill","italic","key","keyAlt","keypad","lastQuarter","layout","layout_fill","layoutGrid","layoutList","leftAligned","leftToRight","lifePreserver","lightning","lightningBolt","lightningBolt_fill","lightningDay","lightningNight","lineGraph","lineTypeBar","lineTypeCandlestick","link","lipstick","lipstick_fill","list","live","locationArrow","locationArrow_fill","lock","lock_fill","logout","magnifyingGlass","magnifyingGlass_fill","mail","mail_fill","manageAccount","manageAccount_fill","map","mapPin","mapPin_fill","martini","martini_fill","meMail","medal","medal_fill","medicalKit","medicalKit_fill","metrics","mic","mic_fill","micOff","micOff_fill","microscope","microscope_fill","minus","mlb","moveToFolder","moveToFolder_fill","movies","movies_fill","music","music_fill","ncaab","newComment","newComment_fill","newMoon","news","news_fill","nextTrack","nfc","nfl","notes","notes_fill","null","numberedList","oneColumn","oneColumn_fill","outbox","outbox_fill","outdent","overflow","overflowMail","overflowVertical","paperclip","parenting","parenting_fill","parking","parks","parks_fill","pause","paw","pawn","pawn_fill","person","person_fill","personArrowUturnLeft","personArrowUturnLeft_fill","phone","phone_fill","picture","picture_fill","pieChart","pieChart_fill","play","play_fill","playInCircle","playInCircle_fill","playMini","plus","poll","poll_fill","popular","power","print","print_fill","pro","profile","profile_fill","prohibitionSign","pulse","question","question_fill","racingFlag","radioSelected","radioSelected_fill","radioUnselected","rain","rainDay","rainNight","raindrop","raindropDay","raindropNight","reblog","reblogAlt","recreation","refresh","refreshAlt","removePerson","removePerson_fill","replay","reply","reply_fill","replyAll","replyAll_fill","reverse","revisions","revisions_fill","riceBowl","rightAligned","rightToLeft","rugby","scissors","searchMail","searchMail_fill","searchWeb","seekBackward10","seekForward10","segments","segments_fill","selector","sendScheduled","sendScheduled_fill","sent","sent_fill","shield","shieldWithCheckMark","shieldWithCheckMark_fill","shieldWithProhibitionSign","shieldWithProhibitionSign_fill","shieldWithX","shieldWithX_fill","shoppingBag","shoppingBag_fill","shrink","sidebar","sidebarError","skull","skull_fill","slideRule","smartPhone","smartPhone_fill","smiley","smiley_fill","snow","snowDay","snowNight","snowflake","soccer","spellCheck","sprinkle","sprinkleDay","sprinkleNight","squareArrowDiagonalUpRight","stadium","star","star_fill","stardust","stardust_fill","stationery","stationery_fill","stationeryFall","stationeryFall_fill","stationerySpring","stationerySpring_fill","stationeryWinter","stationeryWinter_fill","statistics","stop","stopwatch","stopwatch_fill","stream","sun","sun_fill","sunrise","supply","supply_fill","suspicious","suspicious_fill","swipeleft","swipeleft_fill","swiperight","swiperight_fill","tablet","tablet_fill","tag","tag_fill","target","targetArrow","tech","tech_fill","techAlt","textColor","textHighlight","textHighlight_fill","theme","theme_fill","threeColumn","threeColumn_fill","thumbDown","thumbDown_fill","thumbUp","thumbUp_fill","tornado","train","train_fill","trashCan","trashCan_fill","travel","travel_fill","trending","truck","truck_fill","tsunami","tv","tv_fill","twoColumn","twoColumn_fill","underline","unsub","unsub_fill","videoCamera","videoCamera_fill","videoCameraOff","videoCameraOff_fill","volume","volumeLow","volumeMute","waningCrescent","waningGibbous","waxingCrescent","waxingGibbous","wellness","wifi","wifiOffline","wind","windCloud","windDay","windNight","wine","wine_fill","wrench","wrench_fill","yahooPlus","zoomIn","zoomOut"];0&&(module.exports={alwaysPaletteAliases,avatarSizes,backgroundColors,backgroundPaletteColors,backgroundWashPaletteColors,borderWidths,buttonSizes,buttonVariants,colorModes,corePaletteColors,elevationPaletteColors,elevations,fontFamilies,fontSizes,fontWeights,foregroundColors,foregroundPaletteColors,hueSteps,hues,iconNames,iconSizes,lineColors,lineHeights,linePaletteColors,palette,regionModes,scaleModes,shapes,spacingAliases,spectrumColors,textRamp,textTransforms,textVariants});
|
1
|
+
"use strict";var o=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var _=Object.prototype.hasOwnProperty;var b=(e,l)=>{for(var t in l)o(e,t,{get:l[t],enumerable:!0})},m=(e,l,t,p)=>{if(l&&typeof l=="object"||typeof l=="function")for(let i of g(l))!_.call(e,i)&&i!==t&&o(e,i,{get:()=>l[i],enumerable:!(p=u(l,i))||p.enumerable});return e};var h=e=>m(o({},"__esModule",{value:!0}),e);var q={};b(q,{alwaysPaletteAliases:()=>n,avatarSizes:()=>R,backgroundColors:()=>D,backgroundPaletteColors:()=>r,backgroundWashPaletteColors:()=>s,borderWidths:()=>N,buttonSizes:()=>E,buttonVariants:()=>O,colorModes:()=>y,corePaletteColors:()=>a,elevationPaletteColors:()=>c,elevations:()=>W,fontFamilies:()=>F,fontWeights:()=>M,foregroundColors:()=>A,foregroundPaletteColors:()=>f,hueSteps:()=>C,hues:()=>x,iconNames:()=>K,iconSizes:()=>T,lineColors:()=>L,linePaletteColors:()=>d,palette:()=>P,regionModes:()=>k,scaleModes:()=>w,shapes:()=>z,spacingAliases:()=>G,spectrumColors:()=>v,textRamp:()=>U,textTransforms:()=>B,textVariants:()=>S});module.exports=h(q);var y=["light","dark"],w=["xSmall","small","medium","large","xLarge","xxLarge","xxxLarge"],k=["\u{1F1FA}\u{1F1F8} US","\u{1F1E9}\u{1F1EA} DE","\u{1F1EB}\u{1F1F7} FR","\u{1F1E8}\u{1F1F3} CN"],x=["gray","purple","indigo","blue","cyan","teal","mint","green","lime","citron","yellow","brown","nude","orange","sunset","red","rose","pink","magenta","carbon"],C=["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14","15"],v=["gray-0","gray-1","gray-2","gray-3","gray-4","gray-5","gray-6","gray-7","gray-8","gray-9","gray-10","gray-11","gray-12","gray-13","gray-14","gray-15","purple-0","purple-1","purple-2","purple-3","purple-4","purple-5","purple-6","purple-7","purple-8","purple-9","purple-10","purple-11","purple-12","purple-13","purple-14","purple-15","indigo-0","indigo-1","indigo-2","indigo-3","indigo-4","indigo-5","indigo-6","indigo-7","indigo-8","indigo-9","indigo-10","indigo-11","indigo-12","indigo-13","indigo-14","indigo-15","blue-0","blue-1","blue-2","blue-3","blue-4","blue-5","blue-6","blue-7","blue-8","blue-9","blue-10","blue-11","blue-12","blue-13","blue-14","blue-15","cyan-0","cyan-1","cyan-2","cyan-3","cyan-4","cyan-5","cyan-6","cyan-7","cyan-8","cyan-9","cyan-10","cyan-11","cyan-12","cyan-13","cyan-14","cyan-15","teal-0","teal-1","teal-2","teal-3","teal-4","teal-5","teal-6","teal-7","teal-8","teal-9","teal-10","teal-11","teal-12","teal-13","teal-14","teal-15","mint-0","mint-1","mint-2","mint-3","mint-4","mint-5","mint-6","mint-7","mint-8","mint-9","mint-10","mint-11","mint-12","mint-13","mint-14","mint-15","green-0","green-1","green-2","green-3","green-4","green-5","green-6","green-7","green-8","green-9","green-10","green-11","green-12","green-13","green-14","green-15","lime-0","lime-1","lime-2","lime-3","lime-4","lime-5","lime-6","lime-7","lime-8","lime-9","lime-10","lime-11","lime-12","lime-13","lime-14","lime-15","citron-0","citron-1","citron-2","citron-3","citron-4","citron-5","citron-6","citron-7","citron-8","citron-9","citron-10","citron-11","citron-12","citron-13","citron-14","citron-15","yellow-0","yellow-1","yellow-2","yellow-3","yellow-4","yellow-5","yellow-6","yellow-7","yellow-8","yellow-9","yellow-10","yellow-11","yellow-12","yellow-13","yellow-14","yellow-15","brown-0","brown-1","brown-2","brown-3","brown-4","brown-5","brown-6","brown-7","brown-8","brown-9","brown-10","brown-11","brown-12","brown-13","brown-14","brown-15","nude-0","nude-1","nude-2","nude-3","nude-4","nude-5","nude-6","nude-7","nude-8","nude-9","nude-10","nude-11","nude-12","nude-13","nude-14","nude-15","orange-0","orange-1","orange-2","orange-3","orange-4","orange-5","orange-6","orange-7","orange-8","orange-9","orange-10","orange-11","orange-12","orange-13","orange-14","orange-15","sunset-0","sunset-1","sunset-2","sunset-3","sunset-4","sunset-5","sunset-6","sunset-7","sunset-8","sunset-9","sunset-10","sunset-11","sunset-12","sunset-13","sunset-14","sunset-15","red-0","red-1","red-2","red-3","red-4","red-5","red-6","red-7","red-8","red-9","red-10","red-11","red-12","red-13","red-14","red-15","rose-0","rose-1","rose-2","rose-3","rose-4","rose-5","rose-6","rose-7","rose-8","rose-9","rose-10","rose-11","rose-12","rose-13","rose-14","rose-15","pink-0","pink-1","pink-2","pink-3","pink-4","pink-5","pink-6","pink-7","pink-8","pink-9","pink-10","pink-11","pink-12","pink-13","pink-14","pink-15","magenta-0","magenta-1","magenta-2","magenta-3","magenta-4","magenta-5","magenta-6","magenta-7","magenta-8","magenta-9","magenta-10","magenta-11","magenta-12","magenta-13","magenta-14","magenta-15","carbon-0","carbon-1","carbon-2","carbon-3","carbon-4","carbon-5","carbon-6","carbon-7","carbon-8","carbon-9","carbon-10","carbon-11","carbon-12","carbon-13","carbon-14","carbon-15"],a=["accent","alert","brand","positive","warning"],r=["primary","secondary"],s=["accent-wash","alert-wash","brand-wash","positive-wash","warning-wash"],c=["elevation-1","elevation-2","elevation-3","elevation-3-inverse","overlay"],f=["primary","secondary","tertiary","muted","on-color"],d=["primary","secondary","tertiary","muted"],n=["transparent","white","black"],D=[...a,...r,...s,...c,...n],A=[...a,...f,...n],L=[...a,...d,...n],P={core:a,background:r,backgroundWash:s,elevation:c,foreground:f,line:d},S=["display1","title1","title2","title3","title4","headline1","body1","label1","label2","caption1","caption2","legal1"],F=["icons","sans","sans-beta","sans-condensed","serif-text","serif-display"],M=["light","medium","black","thin","extralight","regular","semibold","bold","extrabold"],B=["none","uppercase","lowercase","capitalize"],U={xSmall:{display1:-2,title1:-3,title2:-3,title3:-3,title4:-3,headline1:-3,body1:-3,label1:-2,label2:-2,caption1:-1,caption2:-1,legal1:-1},small:{display1:-2,title1:-2,title2:-2,title3:-2,title4:-2,headline1:-2,body1:-2,label1:-1,label2:-1,caption1:0,caption2:0,legal1:0},medium:{display1:-1,title1:-1,title2:-1,title3:-1,title4:-1,headline1:-1,body1:-1,label1:-1,label2:-1,caption1:0,caption2:0,legal1:0},large:{display1:0,title1:0,title2:0,title3:0,title4:0,headline1:0,body1:0,label1:0,label2:0,caption1:0,caption2:0,legal1:0},xLarge:{display1:2,title1:2,title2:2,title3:2,title4:2,headline1:2,body1:0,label1:2,label2:2,caption1:2,caption2:2,legal1:2},xxLarge:{display1:4,title1:4,title2:4,title3:4,title4:6,headline1:4,body1:4,label1:4,label2:4,caption1:4,caption2:4,legal1:4},xxxLarge:{display1:6,title1:6,title2:6,title3:6,title4:8,headline1:6,body1:6,label1:6,label2:6,caption1:6,caption2:6,legal1:6}},R=["s","m","l"],N=["0","1","2","4","8"],W=["1","2","3"],T=["s","m","l"],G=["0","1","2","3","4","5","6","7","8","9","10","11","12","13","14"],z=["s","m","l","square","xs","xl","xxl","circle"],O=["accent","alert","brand","positive","warning","secondary","accent-wash","alert-wash","brand-wash","positive-wash","warning-wash","accent-outline","alert-outline","brand-outline","positive-outline","warning-outline","accent-ghost","alert-ghost","brand-ghost","positive-ghost","warning-ghost","primary-ghost","primary-outline"],E=["s","m","l"],K=["sunset","bold","academicCap","academicCap_fill","accept","accept_fill","accessibility","accountKey","accountKey_fill","accountKeyAndroid","accountKeyAndroid_fill","addAttachments","addAttachments_fill","addDocument","addDocument_fill","addFolder","addFolder_fill","addLink","addPerson","addPerson_fill","addToCalendar","addToCalendar_fill","ads","adsEuro","adsPound","alarmClock","alarmClock_fill","analytics","announcement","announcement_fill","appPublishing","appPublishing_fill","apparel","apparel_fill","appleWatch_fill","ar3d","archive","archive_fill","arrowCurveLeft","arrowCurveRight","arrowCurveUp","arrowDown","arrowDownAboveLine","arrowDownAndIn","arrowLeft","arrowRight","arrowUp","arrowUpAndOut","arrowUpUnderLine","ascender","astroAquarius","astroAries","astroCancer","astroCapricorn","astroGemini","astroLeo","astroLibra","astroPisces","astroSagittarius","astroScorpio","astroTaurus","astroVirgo","atSymbol","attachment","badge","badge_fill","barGraph","barGraph_fill","baseball","baseball_fill","baseballBat_fill","basket","basket_fill","basketball","basketball_fill","beachUmbrella","beachUmbrella_fill","bed","bed_fill","beer","beer_fill","bell","bell_fill","bellOff","bellOff_fill","bellPlus","bill","bill_fill","billing","billing_fill","binoculars","binoculars_fill","biometrics","birthdayCake","birthdayCake_fill","blockPerson","blockPerson_fill","bookmark","bookmark_fill","box","box_fill","briefcase","briefcase_fill","bubbleGraph","bubbleGraph_fill","bulletList","bulletListRectangle","bulletListRectangle_fill","bus","bus_fill","cal01","cal01_fill","cal02","cal02_fill","cal03","cal03_fill","cal04","cal04_fill","cal05","cal05_fill","cal06","cal06_fill","cal07","cal07_fill","cal08","cal08_fill","cal09","cal09_fill","cal10","cal10_fill","cal11","cal11_fill","cal12","cal12_fill","cal13","cal13_fill","cal14","cal14_fill","cal15","cal15_fill","cal16","cal16_fill","cal17","cal17_fill","cal18","cal18_fill","cal19","cal19_fill","cal20","cal20_fill","cal21","cal21_fill","cal22","cal22_fill","cal23","cal23_fill","cal24","cal24_fill","cal25","cal25_fill","cal26","cal26_fill","cal27","cal27_fill","cal28","cal28_fill","cal29","cal29_fill","cal30","cal30_fill","cal31","cal31_fill","calendar","calendar_fill","camera","camera_fill","candy","canvas","canvas_fill","capitolBuilding","capitolBuilding_fill","capsule","capsule_fill","car","car_fill","card","card_fill","cart","castAnimationFrame1","castAnimationFrame2","castUnavailable","centerAligned","cfl_fill","changeFont","checkboxMixed","checkboxMixed_fill","checkboxSelected","checkboxSelected_fill","checkboxUnselected","checkmarkSelected","chevronBack","chevronDown","chevronNext","chevronUp","chromeCast","chromeCast_fill","cleats","cleats_fill","clientAssist","clientAssist_fill","clock","clock_fill","close","closedCaptioning","closedCaptioning_fill","cloud","cloud_fill","cloudDay","cloudDrive","cloudDrive_fill","cloudNight","code","coffeeCup","coffeeCup_fill","coffeeMug","coffeeMug_fill","collapseList","collegeFootball","collegeFootball_fill","colorPalette","colorPalette_fill","comedyTragedyMasks","comedyTragedyMasks_fill","comment","comment_fill","compass","compass_fill","compose","compose_fill","contactBook","contactBook_fill","contactCard","contactCard_fill","convenienceStore","convenienceStore_fill","conversations","conversations_fill","copy","copy_fill","copyright","copyright_fill","creativeCommons","creativeCommons_fill","creditCard","creditCard_fill","crescentMoon","crescentMoonAlt","cryptocurrency","cryptocurrency_fill","cursor","cut","dashboard","dashboard_fill","dating","dating_fill","decline","decline_fill","descender","desktop","desktop_fill","diamond","diamond_fill","direction","direction_fill","discoBall","document","document_fill","dollar","doubleLeft","doubleRight","draft","draft_fill","dragBars","dragBarsAlt","dressForm_fill","dressFrom","dusk","dusk_fill","eclipse","eclipse_fill","edit","edit_fill","emoticon","emoticon_fill","euro","exchange","exclamation","exclamation_fill","exclamationAlt","exclamationAlt_fill","exitFullscreen","expand","expandAlt","expandList","eye","eyeSlash","eyelash","fantasyBaseball","fantasyBaseball_fill","fantasyFootball","fantasyFootball_fill","files","files_fill","filter","finance","firstQuarter","flag","flag_fill","flower","fog","fogDay","fogNight","folder","folder_fill","foodAndDrink","foodAndDrink_fill","football","football_fill","forkKnife","forward","forward_fill","fourColumn","fourColumn_fill","fullMoon","fullscreen","fullscreenAudio","gallery","gallery_fill","gasStation","gear","gear_fill","gif","gif_fill","globe","golf","grid","groups","groups_fill","guitar","halfSun","halfSun_fill","hand","hashtag","haze","hazeDay","hazeNight","heart","heart_fill","heavyRain","heavyRainDay","heavyRainLightning","heavyRainLightningDay","heavyRainLightningNight","heavyRainNight","history","hockey","home","home_fill","hurricane","inbox","inbox_fill","indent","information","information_fill","invitation","invitation_fill","italic","key","keyAlt","keypad","lastQuarter","layout","layout_fill","layoutGrid","layoutList","leftAligned","leftToRight","lifePreserver","lightning","lightningBolt","lightningBolt_fill","lightningDay","lightningNight","lineGraph","lineTypeBar","lineTypeCandlestick","link","lipstick","lipstick_fill","list","live","locationArrow","locationArrow_fill","lock","lock_fill","logout","magnifyingGlass","magnifyingGlass_fill","mail","mail_fill","manageAccount","manageAccount_fill","map","mapPin","mapPin_fill","martini","martini_fill","meMail","medal","medal_fill","medicalKit","medicalKit_fill","metrics","mic","mic_fill","micOff","micOff_fill","microscope","microscope_fill","minus","mlb","moveToFolder","moveToFolder_fill","movies","movies_fill","music","music_fill","ncaab","newComment","newComment_fill","newMoon","news","news_fill","nextTrack","nfc","nfl","notes","notes_fill","null","numberedList","oneColumn","oneColumn_fill","outbox","outbox_fill","outdent","overflow","overflowMail","overflowVertical","paperclip","parenting","parenting_fill","parking","parks","parks_fill","pause","paw","pawn","pawn_fill","person","person_fill","personArrowUturnLeft","personArrowUturnLeft_fill","phone","phone_fill","picture","picture_fill","pieChart","pieChart_fill","play","play_fill","playInCircle","playInCircle_fill","playMini","plus","poll","poll_fill","popular","power","print","print_fill","pro","profile","profile_fill","prohibitionSign","pulse","question","question_fill","racingFlag","radioSelected","radioSelected_fill","radioUnselected","rain","rainDay","rainNight","raindrop","raindropDay","raindropNight","reblog","reblogAlt","recreation","refresh","refreshAlt","removePerson","removePerson_fill","replay","reply","reply_fill","replyAll","replyAll_fill","reverse","revisions","revisions_fill","riceBowl","rightAligned","rightToLeft","rugby","scissors","searchMail","searchMail_fill","searchWeb","seekBackward10","seekForward10","segments","segments_fill","selector","sendScheduled","sendScheduled_fill","sent","sent_fill","shield","shieldWithCheckMark","shieldWithCheckMark_fill","shieldWithProhibitionSign","shieldWithProhibitionSign_fill","shieldWithX","shieldWithX_fill","shoppingBag","shoppingBag_fill","shrink","sidebar","sidebarError","skull","skull_fill","slideRule","smartPhone","smartPhone_fill","smiley","smiley_fill","snow","snowDay","snowNight","snowflake","soccer","spellCheck","sprinkle","sprinkleDay","sprinkleNight","squareArrowDiagonalUpRight","stadium","star","star_fill","stardust","stardust_fill","stationery","stationery_fill","stationeryFall","stationeryFall_fill","stationerySpring","stationerySpring_fill","stationeryWinter","stationeryWinter_fill","statistics","stop","stopwatch","stopwatch_fill","stream","sun","sun_fill","sunrise","supply","supply_fill","suspicious","suspicious_fill","swipeleft","swipeleft_fill","swiperight","swiperight_fill","tablet","tablet_fill","tag","tag_fill","target","targetArrow","tech","tech_fill","techAlt","textColor","textHighlight","textHighlight_fill","theme","theme_fill","threeColumn","threeColumn_fill","thumbDown","thumbDown_fill","thumbUp","thumbUp_fill","tornado","train","train_fill","trashCan","trashCan_fill","travel","travel_fill","trending","truck","truck_fill","tsunami","tv","tv_fill","twoColumn","twoColumn_fill","underline","unsub","unsub_fill","videoCamera","videoCamera_fill","videoCameraOff","videoCameraOff_fill","volume","volumeLow","volumeMute","waningCrescent","waningGibbous","waxingCrescent","waxingGibbous","wellness","wifi","wifiOffline","wind","windCloud","windDay","windNight","wine","wine_fill","wrench","wrench_fill","yahooPlus","zoomIn","zoomOut"];0&&(module.exports={alwaysPaletteAliases,avatarSizes,backgroundColors,backgroundPaletteColors,backgroundWashPaletteColors,borderWidths,buttonSizes,buttonVariants,colorModes,corePaletteColors,elevationPaletteColors,elevations,fontFamilies,fontWeights,foregroundColors,foregroundPaletteColors,hueSteps,hues,iconNames,iconSizes,lineColors,linePaletteColors,palette,regionModes,scaleModes,shapes,spacingAliases,spectrumColors,textRamp,textTransforms,textVariants});
|
@@ -26,8 +26,6 @@ declare const textVariants: readonly ["display1", "title1", "title2", "title3",
|
|
26
26
|
declare const fontFamilies: readonly ["icons", "sans", "sans-beta", "sans-condensed", "serif-text", "serif-display"];
|
27
27
|
declare const fontWeights: readonly ["light", "medium", "black", "thin", "extralight", "regular", "semibold", "bold", "extrabold"];
|
28
28
|
declare const textTransforms: readonly ["none", "uppercase", "lowercase", "capitalize"];
|
29
|
-
declare const fontSizes: readonly [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 36, 38, 46, 47, 48, 50, 52, 54];
|
30
|
-
declare const lineHeights: readonly [12, 16, 20, 24, 28, 32, 36, 48, 40, 44];
|
31
29
|
declare const textRamp: {
|
32
30
|
readonly xSmall: {
|
33
31
|
readonly display1: -2;
|
@@ -138,4 +136,4 @@ declare const buttonVariants: readonly ["accent", "alert", "brand", "positive",
|
|
138
136
|
declare const buttonSizes: readonly ["s", "m", "l"];
|
139
137
|
declare const iconNames: readonly ["sunset", "bold", "academicCap", "academicCap_fill", "accept", "accept_fill", "accessibility", "accountKey", "accountKey_fill", "accountKeyAndroid", "accountKeyAndroid_fill", "addAttachments", "addAttachments_fill", "addDocument", "addDocument_fill", "addFolder", "addFolder_fill", "addLink", "addPerson", "addPerson_fill", "addToCalendar", "addToCalendar_fill", "ads", "adsEuro", "adsPound", "alarmClock", "alarmClock_fill", "analytics", "announcement", "announcement_fill", "appPublishing", "appPublishing_fill", "apparel", "apparel_fill", "appleWatch_fill", "ar3d", "archive", "archive_fill", "arrowCurveLeft", "arrowCurveRight", "arrowCurveUp", "arrowDown", "arrowDownAboveLine", "arrowDownAndIn", "arrowLeft", "arrowRight", "arrowUp", "arrowUpAndOut", "arrowUpUnderLine", "ascender", "astroAquarius", "astroAries", "astroCancer", "astroCapricorn", "astroGemini", "astroLeo", "astroLibra", "astroPisces", "astroSagittarius", "astroScorpio", "astroTaurus", "astroVirgo", "atSymbol", "attachment", "badge", "badge_fill", "barGraph", "barGraph_fill", "baseball", "baseball_fill", "baseballBat_fill", "basket", "basket_fill", "basketball", "basketball_fill", "beachUmbrella", "beachUmbrella_fill", "bed", "bed_fill", "beer", "beer_fill", "bell", "bell_fill", "bellOff", "bellOff_fill", "bellPlus", "bill", "bill_fill", "billing", "billing_fill", "binoculars", "binoculars_fill", "biometrics", "birthdayCake", "birthdayCake_fill", "blockPerson", "blockPerson_fill", "bookmark", "bookmark_fill", "box", "box_fill", "briefcase", "briefcase_fill", "bubbleGraph", "bubbleGraph_fill", "bulletList", "bulletListRectangle", "bulletListRectangle_fill", "bus", "bus_fill", "cal01", "cal01_fill", "cal02", "cal02_fill", "cal03", "cal03_fill", "cal04", "cal04_fill", "cal05", "cal05_fill", "cal06", "cal06_fill", "cal07", "cal07_fill", "cal08", "cal08_fill", "cal09", "cal09_fill", "cal10", "cal10_fill", "cal11", "cal11_fill", "cal12", "cal12_fill", "cal13", "cal13_fill", "cal14", "cal14_fill", "cal15", "cal15_fill", "cal16", "cal16_fill", "cal17", "cal17_fill", "cal18", "cal18_fill", "cal19", "cal19_fill", "cal20", "cal20_fill", "cal21", "cal21_fill", "cal22", "cal22_fill", "cal23", "cal23_fill", "cal24", "cal24_fill", "cal25", "cal25_fill", "cal26", "cal26_fill", "cal27", "cal27_fill", "cal28", "cal28_fill", "cal29", "cal29_fill", "cal30", "cal30_fill", "cal31", "cal31_fill", "calendar", "calendar_fill", "camera", "camera_fill", "candy", "canvas", "canvas_fill", "capitolBuilding", "capitolBuilding_fill", "capsule", "capsule_fill", "car", "car_fill", "card", "card_fill", "cart", "castAnimationFrame1", "castAnimationFrame2", "castUnavailable", "centerAligned", "cfl_fill", "changeFont", "checkboxMixed", "checkboxMixed_fill", "checkboxSelected", "checkboxSelected_fill", "checkboxUnselected", "checkmarkSelected", "chevronBack", "chevronDown", "chevronNext", "chevronUp", "chromeCast", "chromeCast_fill", "cleats", "cleats_fill", "clientAssist", "clientAssist_fill", "clock", "clock_fill", "close", "closedCaptioning", "closedCaptioning_fill", "cloud", "cloud_fill", "cloudDay", "cloudDrive", "cloudDrive_fill", "cloudNight", "code", "coffeeCup", "coffeeCup_fill", "coffeeMug", "coffeeMug_fill", "collapseList", "collegeFootball", "collegeFootball_fill", "colorPalette", "colorPalette_fill", "comedyTragedyMasks", "comedyTragedyMasks_fill", "comment", "comment_fill", "compass", "compass_fill", "compose", "compose_fill", "contactBook", "contactBook_fill", "contactCard", "contactCard_fill", "convenienceStore", "convenienceStore_fill", "conversations", "conversations_fill", "copy", "copy_fill", "copyright", "copyright_fill", "creativeCommons", "creativeCommons_fill", "creditCard", "creditCard_fill", "crescentMoon", "crescentMoonAlt", "cryptocurrency", "cryptocurrency_fill", "cursor", "cut", "dashboard", "dashboard_fill", "dating", "dating_fill", "decline", "decline_fill", "descender", "desktop", "desktop_fill", "diamond", "diamond_fill", "direction", "direction_fill", "discoBall", "document", "document_fill", "dollar", "doubleLeft", "doubleRight", "draft", "draft_fill", "dragBars", "dragBarsAlt", "dressForm_fill", "dressFrom", "dusk", "dusk_fill", "eclipse", "eclipse_fill", "edit", "edit_fill", "emoticon", "emoticon_fill", "euro", "exchange", "exclamation", "exclamation_fill", "exclamationAlt", "exclamationAlt_fill", "exitFullscreen", "expand", "expandAlt", "expandList", "eye", "eyeSlash", "eyelash", "fantasyBaseball", "fantasyBaseball_fill", "fantasyFootball", "fantasyFootball_fill", "files", "files_fill", "filter", "finance", "firstQuarter", "flag", "flag_fill", "flower", "fog", "fogDay", "fogNight", "folder", "folder_fill", "foodAndDrink", "foodAndDrink_fill", "football", "football_fill", "forkKnife", "forward", "forward_fill", "fourColumn", "fourColumn_fill", "fullMoon", "fullscreen", "fullscreenAudio", "gallery", "gallery_fill", "gasStation", "gear", "gear_fill", "gif", "gif_fill", "globe", "golf", "grid", "groups", "groups_fill", "guitar", "halfSun", "halfSun_fill", "hand", "hashtag", "haze", "hazeDay", "hazeNight", "heart", "heart_fill", "heavyRain", "heavyRainDay", "heavyRainLightning", "heavyRainLightningDay", "heavyRainLightningNight", "heavyRainNight", "history", "hockey", "home", "home_fill", "hurricane", "inbox", "inbox_fill", "indent", "information", "information_fill", "invitation", "invitation_fill", "italic", "key", "keyAlt", "keypad", "lastQuarter", "layout", "layout_fill", "layoutGrid", "layoutList", "leftAligned", "leftToRight", "lifePreserver", "lightning", "lightningBolt", "lightningBolt_fill", "lightningDay", "lightningNight", "lineGraph", "lineTypeBar", "lineTypeCandlestick", "link", "lipstick", "lipstick_fill", "list", "live", "locationArrow", "locationArrow_fill", "lock", "lock_fill", "logout", "magnifyingGlass", "magnifyingGlass_fill", "mail", "mail_fill", "manageAccount", "manageAccount_fill", "map", "mapPin", "mapPin_fill", "martini", "martini_fill", "meMail", "medal", "medal_fill", "medicalKit", "medicalKit_fill", "metrics", "mic", "mic_fill", "micOff", "micOff_fill", "microscope", "microscope_fill", "minus", "mlb", "moveToFolder", "moveToFolder_fill", "movies", "movies_fill", "music", "music_fill", "ncaab", "newComment", "newComment_fill", "newMoon", "news", "news_fill", "nextTrack", "nfc", "nfl", "notes", "notes_fill", "null", "numberedList", "oneColumn", "oneColumn_fill", "outbox", "outbox_fill", "outdent", "overflow", "overflowMail", "overflowVertical", "paperclip", "parenting", "parenting_fill", "parking", "parks", "parks_fill", "pause", "paw", "pawn", "pawn_fill", "person", "person_fill", "personArrowUturnLeft", "personArrowUturnLeft_fill", "phone", "phone_fill", "picture", "picture_fill", "pieChart", "pieChart_fill", "play", "play_fill", "playInCircle", "playInCircle_fill", "playMini", "plus", "poll", "poll_fill", "popular", "power", "print", "print_fill", "pro", "profile", "profile_fill", "prohibitionSign", "pulse", "question", "question_fill", "racingFlag", "radioSelected", "radioSelected_fill", "radioUnselected", "rain", "rainDay", "rainNight", "raindrop", "raindropDay", "raindropNight", "reblog", "reblogAlt", "recreation", "refresh", "refreshAlt", "removePerson", "removePerson_fill", "replay", "reply", "reply_fill", "replyAll", "replyAll_fill", "reverse", "revisions", "revisions_fill", "riceBowl", "rightAligned", "rightToLeft", "rugby", "scissors", "searchMail", "searchMail_fill", "searchWeb", "seekBackward10", "seekForward10", "segments", "segments_fill", "selector", "sendScheduled", "sendScheduled_fill", "sent", "sent_fill", "shield", "shieldWithCheckMark", "shieldWithCheckMark_fill", "shieldWithProhibitionSign", "shieldWithProhibitionSign_fill", "shieldWithX", "shieldWithX_fill", "shoppingBag", "shoppingBag_fill", "shrink", "sidebar", "sidebarError", "skull", "skull_fill", "slideRule", "smartPhone", "smartPhone_fill", "smiley", "smiley_fill", "snow", "snowDay", "snowNight", "snowflake", "soccer", "spellCheck", "sprinkle", "sprinkleDay", "sprinkleNight", "squareArrowDiagonalUpRight", "stadium", "star", "star_fill", "stardust", "stardust_fill", "stationery", "stationery_fill", "stationeryFall", "stationeryFall_fill", "stationerySpring", "stationerySpring_fill", "stationeryWinter", "stationeryWinter_fill", "statistics", "stop", "stopwatch", "stopwatch_fill", "stream", "sun", "sun_fill", "sunrise", "supply", "supply_fill", "suspicious", "suspicious_fill", "swipeleft", "swipeleft_fill", "swiperight", "swiperight_fill", "tablet", "tablet_fill", "tag", "tag_fill", "target", "targetArrow", "tech", "tech_fill", "techAlt", "textColor", "textHighlight", "textHighlight_fill", "theme", "theme_fill", "threeColumn", "threeColumn_fill", "thumbDown", "thumbDown_fill", "thumbUp", "thumbUp_fill", "tornado", "train", "train_fill", "trashCan", "trashCan_fill", "travel", "travel_fill", "trending", "truck", "truck_fill", "tsunami", "tv", "tv_fill", "twoColumn", "twoColumn_fill", "underline", "unsub", "unsub_fill", "videoCamera", "videoCamera_fill", "videoCameraOff", "videoCameraOff_fill", "volume", "volumeLow", "volumeMute", "waningCrescent", "waningGibbous", "waxingCrescent", "waxingGibbous", "wellness", "wifi", "wifiOffline", "wind", "windCloud", "windDay", "windNight", "wine", "wine_fill", "wrench", "wrench_fill", "yahooPlus", "zoomIn", "zoomOut"];
|
140
138
|
|
141
|
-
export { alwaysPaletteAliases, avatarSizes, backgroundColors, backgroundPaletteColors, backgroundWashPaletteColors, borderWidths, buttonSizes, buttonVariants, colorModes, corePaletteColors, elevationPaletteColors, elevations, fontFamilies,
|
139
|
+
export { alwaysPaletteAliases, avatarSizes, backgroundColors, backgroundPaletteColors, backgroundWashPaletteColors, borderWidths, buttonSizes, buttonVariants, colorModes, corePaletteColors, elevationPaletteColors, elevations, fontFamilies, fontWeights, foregroundColors, foregroundPaletteColors, hueSteps, hues, iconNames, iconSizes, lineColors, linePaletteColors, palette, regionModes, scaleModes, shapes, spacingAliases, spectrumColors, textRamp, textTransforms, textVariants };
|
package/dist/fixtures/index.d.ts
CHANGED
@@ -26,8 +26,6 @@ declare const textVariants: readonly ["display1", "title1", "title2", "title3",
|
|
26
26
|
declare const fontFamilies: readonly ["icons", "sans", "sans-beta", "sans-condensed", "serif-text", "serif-display"];
|
27
27
|
declare const fontWeights: readonly ["light", "medium", "black", "thin", "extralight", "regular", "semibold", "bold", "extrabold"];
|
28
28
|
declare const textTransforms: readonly ["none", "uppercase", "lowercase", "capitalize"];
|
29
|
-
declare const fontSizes: readonly [10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 36, 38, 46, 47, 48, 50, 52, 54];
|
30
|
-
declare const lineHeights: readonly [12, 16, 20, 24, 28, 32, 36, 48, 40, 44];
|
31
29
|
declare const textRamp: {
|
32
30
|
readonly xSmall: {
|
33
31
|
readonly display1: -2;
|
@@ -138,4 +136,4 @@ declare const buttonVariants: readonly ["accent", "alert", "brand", "positive",
|
|
138
136
|
declare const buttonSizes: readonly ["s", "m", "l"];
|
139
137
|
declare const iconNames: readonly ["sunset", "bold", "academicCap", "academicCap_fill", "accept", "accept_fill", "accessibility", "accountKey", "accountKey_fill", "accountKeyAndroid", "accountKeyAndroid_fill", "addAttachments", "addAttachments_fill", "addDocument", "addDocument_fill", "addFolder", "addFolder_fill", "addLink", "addPerson", "addPerson_fill", "addToCalendar", "addToCalendar_fill", "ads", "adsEuro", "adsPound", "alarmClock", "alarmClock_fill", "analytics", "announcement", "announcement_fill", "appPublishing", "appPublishing_fill", "apparel", "apparel_fill", "appleWatch_fill", "ar3d", "archive", "archive_fill", "arrowCurveLeft", "arrowCurveRight", "arrowCurveUp", "arrowDown", "arrowDownAboveLine", "arrowDownAndIn", "arrowLeft", "arrowRight", "arrowUp", "arrowUpAndOut", "arrowUpUnderLine", "ascender", "astroAquarius", "astroAries", "astroCancer", "astroCapricorn", "astroGemini", "astroLeo", "astroLibra", "astroPisces", "astroSagittarius", "astroScorpio", "astroTaurus", "astroVirgo", "atSymbol", "attachment", "badge", "badge_fill", "barGraph", "barGraph_fill", "baseball", "baseball_fill", "baseballBat_fill", "basket", "basket_fill", "basketball", "basketball_fill", "beachUmbrella", "beachUmbrella_fill", "bed", "bed_fill", "beer", "beer_fill", "bell", "bell_fill", "bellOff", "bellOff_fill", "bellPlus", "bill", "bill_fill", "billing", "billing_fill", "binoculars", "binoculars_fill", "biometrics", "birthdayCake", "birthdayCake_fill", "blockPerson", "blockPerson_fill", "bookmark", "bookmark_fill", "box", "box_fill", "briefcase", "briefcase_fill", "bubbleGraph", "bubbleGraph_fill", "bulletList", "bulletListRectangle", "bulletListRectangle_fill", "bus", "bus_fill", "cal01", "cal01_fill", "cal02", "cal02_fill", "cal03", "cal03_fill", "cal04", "cal04_fill", "cal05", "cal05_fill", "cal06", "cal06_fill", "cal07", "cal07_fill", "cal08", "cal08_fill", "cal09", "cal09_fill", "cal10", "cal10_fill", "cal11", "cal11_fill", "cal12", "cal12_fill", "cal13", "cal13_fill", "cal14", "cal14_fill", "cal15", "cal15_fill", "cal16", "cal16_fill", "cal17", "cal17_fill", "cal18", "cal18_fill", "cal19", "cal19_fill", "cal20", "cal20_fill", "cal21", "cal21_fill", "cal22", "cal22_fill", "cal23", "cal23_fill", "cal24", "cal24_fill", "cal25", "cal25_fill", "cal26", "cal26_fill", "cal27", "cal27_fill", "cal28", "cal28_fill", "cal29", "cal29_fill", "cal30", "cal30_fill", "cal31", "cal31_fill", "calendar", "calendar_fill", "camera", "camera_fill", "candy", "canvas", "canvas_fill", "capitolBuilding", "capitolBuilding_fill", "capsule", "capsule_fill", "car", "car_fill", "card", "card_fill", "cart", "castAnimationFrame1", "castAnimationFrame2", "castUnavailable", "centerAligned", "cfl_fill", "changeFont", "checkboxMixed", "checkboxMixed_fill", "checkboxSelected", "checkboxSelected_fill", "checkboxUnselected", "checkmarkSelected", "chevronBack", "chevronDown", "chevronNext", "chevronUp", "chromeCast", "chromeCast_fill", "cleats", "cleats_fill", "clientAssist", "clientAssist_fill", "clock", "clock_fill", "close", "closedCaptioning", "closedCaptioning_fill", "cloud", "cloud_fill", "cloudDay", "cloudDrive", "cloudDrive_fill", "cloudNight", "code", "coffeeCup", "coffeeCup_fill", "coffeeMug", "coffeeMug_fill", "collapseList", "collegeFootball", "collegeFootball_fill", "colorPalette", "colorPalette_fill", "comedyTragedyMasks", "comedyTragedyMasks_fill", "comment", "comment_fill", "compass", "compass_fill", "compose", "compose_fill", "contactBook", "contactBook_fill", "contactCard", "contactCard_fill", "convenienceStore", "convenienceStore_fill", "conversations", "conversations_fill", "copy", "copy_fill", "copyright", "copyright_fill", "creativeCommons", "creativeCommons_fill", "creditCard", "creditCard_fill", "crescentMoon", "crescentMoonAlt", "cryptocurrency", "cryptocurrency_fill", "cursor", "cut", "dashboard", "dashboard_fill", "dating", "dating_fill", "decline", "decline_fill", "descender", "desktop", "desktop_fill", "diamond", "diamond_fill", "direction", "direction_fill", "discoBall", "document", "document_fill", "dollar", "doubleLeft", "doubleRight", "draft", "draft_fill", "dragBars", "dragBarsAlt", "dressForm_fill", "dressFrom", "dusk", "dusk_fill", "eclipse", "eclipse_fill", "edit", "edit_fill", "emoticon", "emoticon_fill", "euro", "exchange", "exclamation", "exclamation_fill", "exclamationAlt", "exclamationAlt_fill", "exitFullscreen", "expand", "expandAlt", "expandList", "eye", "eyeSlash", "eyelash", "fantasyBaseball", "fantasyBaseball_fill", "fantasyFootball", "fantasyFootball_fill", "files", "files_fill", "filter", "finance", "firstQuarter", "flag", "flag_fill", "flower", "fog", "fogDay", "fogNight", "folder", "folder_fill", "foodAndDrink", "foodAndDrink_fill", "football", "football_fill", "forkKnife", "forward", "forward_fill", "fourColumn", "fourColumn_fill", "fullMoon", "fullscreen", "fullscreenAudio", "gallery", "gallery_fill", "gasStation", "gear", "gear_fill", "gif", "gif_fill", "globe", "golf", "grid", "groups", "groups_fill", "guitar", "halfSun", "halfSun_fill", "hand", "hashtag", "haze", "hazeDay", "hazeNight", "heart", "heart_fill", "heavyRain", "heavyRainDay", "heavyRainLightning", "heavyRainLightningDay", "heavyRainLightningNight", "heavyRainNight", "history", "hockey", "home", "home_fill", "hurricane", "inbox", "inbox_fill", "indent", "information", "information_fill", "invitation", "invitation_fill", "italic", "key", "keyAlt", "keypad", "lastQuarter", "layout", "layout_fill", "layoutGrid", "layoutList", "leftAligned", "leftToRight", "lifePreserver", "lightning", "lightningBolt", "lightningBolt_fill", "lightningDay", "lightningNight", "lineGraph", "lineTypeBar", "lineTypeCandlestick", "link", "lipstick", "lipstick_fill", "list", "live", "locationArrow", "locationArrow_fill", "lock", "lock_fill", "logout", "magnifyingGlass", "magnifyingGlass_fill", "mail", "mail_fill", "manageAccount", "manageAccount_fill", "map", "mapPin", "mapPin_fill", "martini", "martini_fill", "meMail", "medal", "medal_fill", "medicalKit", "medicalKit_fill", "metrics", "mic", "mic_fill", "micOff", "micOff_fill", "microscope", "microscope_fill", "minus", "mlb", "moveToFolder", "moveToFolder_fill", "movies", "movies_fill", "music", "music_fill", "ncaab", "newComment", "newComment_fill", "newMoon", "news", "news_fill", "nextTrack", "nfc", "nfl", "notes", "notes_fill", "null", "numberedList", "oneColumn", "oneColumn_fill", "outbox", "outbox_fill", "outdent", "overflow", "overflowMail", "overflowVertical", "paperclip", "parenting", "parenting_fill", "parking", "parks", "parks_fill", "pause", "paw", "pawn", "pawn_fill", "person", "person_fill", "personArrowUturnLeft", "personArrowUturnLeft_fill", "phone", "phone_fill", "picture", "picture_fill", "pieChart", "pieChart_fill", "play", "play_fill", "playInCircle", "playInCircle_fill", "playMini", "plus", "poll", "poll_fill", "popular", "power", "print", "print_fill", "pro", "profile", "profile_fill", "prohibitionSign", "pulse", "question", "question_fill", "racingFlag", "radioSelected", "radioSelected_fill", "radioUnselected", "rain", "rainDay", "rainNight", "raindrop", "raindropDay", "raindropNight", "reblog", "reblogAlt", "recreation", "refresh", "refreshAlt", "removePerson", "removePerson_fill", "replay", "reply", "reply_fill", "replyAll", "replyAll_fill", "reverse", "revisions", "revisions_fill", "riceBowl", "rightAligned", "rightToLeft", "rugby", "scissors", "searchMail", "searchMail_fill", "searchWeb", "seekBackward10", "seekForward10", "segments", "segments_fill", "selector", "sendScheduled", "sendScheduled_fill", "sent", "sent_fill", "shield", "shieldWithCheckMark", "shieldWithCheckMark_fill", "shieldWithProhibitionSign", "shieldWithProhibitionSign_fill", "shieldWithX", "shieldWithX_fill", "shoppingBag", "shoppingBag_fill", "shrink", "sidebar", "sidebarError", "skull", "skull_fill", "slideRule", "smartPhone", "smartPhone_fill", "smiley", "smiley_fill", "snow", "snowDay", "snowNight", "snowflake", "soccer", "spellCheck", "sprinkle", "sprinkleDay", "sprinkleNight", "squareArrowDiagonalUpRight", "stadium", "star", "star_fill", "stardust", "stardust_fill", "stationery", "stationery_fill", "stationeryFall", "stationeryFall_fill", "stationerySpring", "stationerySpring_fill", "stationeryWinter", "stationeryWinter_fill", "statistics", "stop", "stopwatch", "stopwatch_fill", "stream", "sun", "sun_fill", "sunrise", "supply", "supply_fill", "suspicious", "suspicious_fill", "swipeleft", "swipeleft_fill", "swiperight", "swiperight_fill", "tablet", "tablet_fill", "tag", "tag_fill", "target", "targetArrow", "tech", "tech_fill", "techAlt", "textColor", "textHighlight", "textHighlight_fill", "theme", "theme_fill", "threeColumn", "threeColumn_fill", "thumbDown", "thumbDown_fill", "thumbUp", "thumbUp_fill", "tornado", "train", "train_fill", "trashCan", "trashCan_fill", "travel", "travel_fill", "trending", "truck", "truck_fill", "tsunami", "tv", "tv_fill", "twoColumn", "twoColumn_fill", "underline", "unsub", "unsub_fill", "videoCamera", "videoCamera_fill", "videoCameraOff", "videoCameraOff_fill", "volume", "volumeLow", "volumeMute", "waningCrescent", "waningGibbous", "waxingCrescent", "waxingGibbous", "wellness", "wifi", "wifiOffline", "wind", "windCloud", "windDay", "windNight", "wine", "wine_fill", "wrench", "wrench_fill", "yahooPlus", "zoomIn", "zoomOut"];
|
140
138
|
|
141
|
-
export { alwaysPaletteAliases, avatarSizes, backgroundColors, backgroundPaletteColors, backgroundWashPaletteColors, borderWidths, buttonSizes, buttonVariants, colorModes, corePaletteColors, elevationPaletteColors, elevations, fontFamilies,
|
139
|
+
export { alwaysPaletteAliases, avatarSizes, backgroundColors, backgroundPaletteColors, backgroundWashPaletteColors, borderWidths, buttonSizes, buttonVariants, colorModes, corePaletteColors, elevationPaletteColors, elevations, fontFamilies, fontWeights, foregroundColors, foregroundPaletteColors, hueSteps, hues, iconNames, iconSizes, lineColors, linePaletteColors, palette, regionModes, scaleModes, shapes, spacingAliases, spectrumColors, textRamp, textTransforms, textVariants };
|