File tree Expand file tree Collapse file tree 6 files changed +18
-16
lines changed Expand file tree Collapse file tree 6 files changed +18
-16
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @sjsf/shadcn4-theme " : patch
3
+ ---
4
+
5
+ Fix missing extra widgets
Original file line number Diff line number Diff line change @@ -199,6 +199,8 @@ shad/:
199
199
pnpm run check
200
200
b :
201
201
pnpm run build
202
+ p :
203
+ pnpm run preview
202
204
d :
203
205
pnpm run dev
204
206
popd
Original file line number Diff line number Diff line change 14
14
" !dist/**/*.test.*" ,
15
15
" !dist/**/*.spec.*"
16
16
],
17
- "sideEffects" : [
18
- " **/*.css"
19
- ],
20
17
"publishConfig" : {
21
18
"provenance" : true
22
19
},
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
import { s } from 'testing/demo' ;
2
2
3
- import './theme/extra-widgets/checkboxes-include' ;
3
+ import './theme/extra-widgets/checkboxes-include.js ' ;
4
4
5
5
import Combobox from './theme/extra-widgets/combobox.svelte' ;
6
6
import './theme/extra-widgets/combobox.svelte' ;
7
7
8
- import './theme/extra-widgets/date-picker-include' ;
9
- import './theme/extra-widgets/file-include' ;
10
- import './theme/extra-widgets/multi-select-include' ;
11
- import './theme/extra-widgets/radio-buttons-include' ;
12
- import './theme/extra-widgets/radio-include' ;
13
- import './theme/extra-widgets/range-include' ;
14
- import './theme/extra-widgets/switch-include' ;
15
- import './theme/extra-widgets/textarea-include' ;
8
+ import './theme/extra-widgets/date-picker-include.js ' ;
9
+ import './theme/extra-widgets/file-include.js ' ;
10
+ import './theme/extra-widgets/multi-select-include.js ' ;
11
+ import './theme/extra-widgets/radio-buttons-include.js ' ;
12
+ import './theme/extra-widgets/radio-include.js ' ;
13
+ import './theme/extra-widgets/range-include.js ' ;
14
+ import './theme/extra-widgets/switch-include.js ' ;
15
+ import './theme/extra-widgets/textarea-include.js ' ;
16
16
17
17
export const specs : s . Specs = {
18
18
combobox : [
Original file line number Diff line number Diff line change 1
1
<script lang =" ts" >
2
2
import { ComponentsAndWidgets } from ' testing/demo' ;
3
3
4
-
5
4
import ' ../app.css' ;
6
5
import { setThemeContext , theme } from ' ../lib/theme/index.js' ;
7
6
import { specs } from ' ../lib/specs.js' ;
8
- import * as components from ' ../lib/components/ui/index.js'
7
+ import * as components from ' ../lib/components/ui/index.js' ;
9
8
10
- setThemeContext ({ components })
9
+ setThemeContext ({ components });
11
10
</script >
12
11
13
12
<ComponentsAndWidgets {theme } additionalSpecs ={specs } />
You can’t perform that action at this time.
0 commit comments