@max-ts/svelte 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { Accordion, Alert, Button, Calendar, Card, Checkbox, CircularProgress, DataGrid, DataGridSortHeader, DropdownMenu, Field, Input, Label, Placeholder, Select, Separator, Spinner, Tooltip, Typography, } from './components/index.js';
|
|
2
|
+
export type { AlertVariant, CardVariant, CircularProgressProps, DataGridColumn, DataGridColumns, DataGridProps, DataGridSortHeaderProps, DataGridSorting, DataGridState, FieldOrientation, FieldVariants, InputProps, InputType, PlaceholderProps, PlaceholderSize, SeparatorProps, SpinnerSize, TooltipProps, TypographyAlign, TypographyColor, TypographyVariant, } from './components/index.js';
|
|
2
3
|
export * from './styles/index.js';
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { Accordion } from "./components/Accordion/index.js";
|
|
2
|
-
import { alertVariants } from "./components/Alert/styles.css.js";
|
|
3
2
|
import { Alert } from "./components/Alert/index.js";
|
|
4
|
-
import { buttonVariants } from "./components/Button/styles.css.js";
|
|
5
3
|
import Button from "./components/Button/Button.js";
|
|
6
4
|
import Calendar from "./components/Calendar/Calendar.js";
|
|
7
5
|
import { Card } from "./components/Card/index.js";
|
|
@@ -10,7 +8,6 @@ import CircularProgress from "./components/CircularProgress/CircularProgress.js"
|
|
|
10
8
|
import { createTheme, globalKeyframes, globalStyle, keyframes, style, styleVariants } from "./node_modules/.pnpm/@vanilla-extract_css@1.18.0/node_modules/@vanilla-extract/css/dist/vanilla-extract-css.browser.esm.js";
|
|
11
9
|
import { theme } from "./styles/theme.css.js";
|
|
12
10
|
import { calculateSize, negativeSpacing, spacing } from "./styles/utils.js";
|
|
13
|
-
import "./styles/index.js";
|
|
14
11
|
import Typography from "./components/Typography/Typography.js";
|
|
15
12
|
import Placeholder from "./components/Placeholder/Placeholder.js";
|
|
16
13
|
import DataGrid from "./components/DataGrid/DataGrid.js";
|
|
@@ -21,8 +18,7 @@ import Input from "./components/Input/Input.js";
|
|
|
21
18
|
import Label_1 from "./components/Label/Label.js";
|
|
22
19
|
import { Select } from "./components/Select/index.js";
|
|
23
20
|
import Separator from "./components/Separator/Separator.js";
|
|
24
|
-
import { spinnerSizes } from "./components/Spinner/styles.css.js";
|
|
25
21
|
import Spinner from "./components/Spinner/Spinner.js";
|
|
26
22
|
import Tooltip from "./components/Tooltip/Tooltip.js";
|
|
27
23
|
|
|
28
|
-
export { Accordion, Alert, Button, Calendar, Card, Checkbox,
|
|
24
|
+
export { Accordion, Alert, Button, Calendar, Card, Checkbox, CircularProgress, DataGrid, DataGridSortHeader, DropdownMenu, Field, Input, Label_1 as Label, Placeholder, Select, Separator, Spinner, Tooltip, Typography, calculateSize, createTheme, globalKeyframes, globalStyle, keyframes, negativeSpacing, spacing, style, styleVariants, theme };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@max-ts/svelte",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Svelte component library.",
|
|
6
6
|
"author": "Tsepelev Maksim",
|
|
@@ -9,10 +9,6 @@
|
|
|
9
9
|
".": {
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
11
11
|
"svelte": "./dist/index.js"
|
|
12
|
-
},
|
|
13
|
-
"./components/*": {
|
|
14
|
-
"types": "./dist/components/*/index.d.ts",
|
|
15
|
-
"svelte": "./dist/components/*/index.js"
|
|
16
12
|
}
|
|
17
13
|
},
|
|
18
14
|
"main": "./dist/index.js",
|
package/dist/styles/index.js
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import { createTheme, globalKeyframes, globalStyle, keyframes, style, styleVariants } from "../node_modules/.pnpm/@vanilla-extract_css@1.18.0/node_modules/@vanilla-extract/css/dist/vanilla-extract-css.browser.esm.js";
|
|
2
|
-
import { theme } from "./theme.css.js";
|
|
3
|
-
import { calculateSize, negativeSpacing, spacing } from "./utils.js";
|