boreal-ui 0.0.14 → 0.0.15
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/types/public.types.d.ts +45 -0
- package/package.json +11 -2
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
export * from "./components/Accordion/Accordion.types";
|
|
2
|
+
export * from "./components/Avatar/Avatar.types";
|
|
3
|
+
export * from "./components/Badge/Badge.types";
|
|
4
|
+
export * from "./components/Breadcrumbs/Breadcrumbs.types";
|
|
5
|
+
export * from "./components/Button/Button.types";
|
|
6
|
+
export * from "./components/Card/Card.types";
|
|
7
|
+
export * from "./components/Checkbox/Checkbox.types";
|
|
8
|
+
export * from "./components/Chip/Chip.types";
|
|
9
|
+
export * from "./components/CircularProgress/CircularProgress.types";
|
|
10
|
+
export * from "./components/ColorPicker/ColorPicker.types";
|
|
11
|
+
export * from "./components/CommandPalette/CommandPalette.types";
|
|
12
|
+
export * from "./components/DataTable/DataTable.types";
|
|
13
|
+
export * from "./components/DateTimePicker/DateTimePicker.types";
|
|
14
|
+
export * from "./components/Divider/Divider.types";
|
|
15
|
+
export * from "./components/Dropdown/Dropdown.types";
|
|
16
|
+
export * from "./components/EmptyState/EmptyState.types";
|
|
17
|
+
export * from "./components/FileUpload/FileUpload.types";
|
|
18
|
+
export * from "./components/Footer/Footer.types";
|
|
19
|
+
export * from "./components/FormGroup/FormGroup.types";
|
|
20
|
+
export * from "./components/IconButton/IconButton.types";
|
|
21
|
+
export * from "./components/MarkdownRenderer/MarkdownRenderer.types";
|
|
22
|
+
export * from "./components/MessagePopUp/MessagePopup.types";
|
|
23
|
+
export * from "./components/MetricBox/MetricBox.types";
|
|
24
|
+
export * from "./components/Modal/Modal.types";
|
|
25
|
+
export * from "./components/NavBar/NavBar.types";
|
|
26
|
+
export * from "./components/NotificationCenter/NotificationCenter.types";
|
|
27
|
+
export * from "./components/Pager/Pager.types";
|
|
28
|
+
export * from "./components/PopOver/PopOver.types";
|
|
29
|
+
export * from "./components/ProgressBar/ProgressBar.types";
|
|
30
|
+
export * from "./components/RadioButton/RadioButton.types";
|
|
31
|
+
export * from "./components/Rating/Rating.types";
|
|
32
|
+
export * from "./components/Select/Select.types";
|
|
33
|
+
export * from "./components/Sidebar/Sidebar.types";
|
|
34
|
+
export * from "./components/Skeleton/Skeleton.types";
|
|
35
|
+
export * from "./components/Slider/Slider.types";
|
|
36
|
+
export * from "./components/Spinner/Spinner.types";
|
|
37
|
+
export * from "./components/Stepper/Stepper.types";
|
|
38
|
+
export * from "./components/Tabs/Tabs.types";
|
|
39
|
+
export * from "./components/TagInput/Taginput.types";
|
|
40
|
+
export * from "./components/TextArea/TextArea.types";
|
|
41
|
+
export * from "./components/TextInput/TextInput.types";
|
|
42
|
+
export * from "./components/Timeline/Timeline.types";
|
|
43
|
+
export * from "./components/Toggle/Toggle.types";
|
|
44
|
+
export * from "./components/Toolbar/Toolbar.types";
|
|
45
|
+
export * from "./components/Tooltip/Tooltip.types";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "boreal-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "A modern, customizable React/Next.js component library",
|
|
5
5
|
"author": "Davin Chiupka",
|
|
6
6
|
"license": "ISC",
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"build:core": "vite build --config vite.config.core.ts",
|
|
22
22
|
"build:next": "vite build --config vite.config.next.ts",
|
|
23
23
|
"build:types": "tsc -p tsconfig.build.json",
|
|
24
|
-
"build": "
|
|
24
|
+
"build:types:public": "tsc -p tsconfig.build.json && node scripts/generateTypesBarrel.cjs",
|
|
25
|
+
"build": "npm run clean && npm run build:core && npm run build:next && npm run build:types && npm run build:types:public",
|
|
25
26
|
"lint": "eslint ./src --ext .ts,.tsx",
|
|
26
27
|
"lint:styles": "stylelint '**/*.{css,scss}'",
|
|
27
28
|
"lint:styles:fix": "stylelint '**/*.{css,scss}' --fix",
|
|
@@ -120,6 +121,10 @@
|
|
|
120
121
|
"require": "./dist/core/index.cjs.js",
|
|
121
122
|
"types": "./dist/types/index.core.d.ts"
|
|
122
123
|
},
|
|
124
|
+
"./core/types": {
|
|
125
|
+
"types": "./dist/types/public.types.d.ts",
|
|
126
|
+
"default": "./dist/types/public.types.d.ts"
|
|
127
|
+
},
|
|
123
128
|
"./core/style.css": {
|
|
124
129
|
"default": "./dist/core/style.css"
|
|
125
130
|
},
|
|
@@ -128,6 +133,10 @@
|
|
|
128
133
|
"require": "./dist/next/index.cjs.js",
|
|
129
134
|
"types": "./dist/types/index.next.d.ts"
|
|
130
135
|
},
|
|
136
|
+
"./next/types": {
|
|
137
|
+
"types": "./dist/types/public.types.d.ts",
|
|
138
|
+
"default": "./dist/types/public.types.d.ts"
|
|
139
|
+
},
|
|
131
140
|
"./next/style.css": {
|
|
132
141
|
"default": "./dist/next/style.css"
|
|
133
142
|
},
|