@@ -9,6 +9,56 @@ exports[`utils / cssSnapshots with a custom renderer should process a file and l
9
9
}
10
10
` ;
11
11
12
+ exports [` utils / cssSnapshots with allowAdditionalClasses enabled should return a dts file that allows any string value 1` ] = `
13
+ "declare let classes: {
14
+ ' localClassInsideGlobal' : string ;
15
+ ' localClass' : string ;
16
+ ' localClass2' : string ;
17
+ ' localClassInsideLocal' : string ;
18
+ ' reservedWords' : string ;
19
+ ' default' : string ;
20
+ ' const' : string ;
21
+ ' nestedClassParent' : string ;
22
+ ' childClass' : string ;
23
+ ' nestedClassParentExtended' : string ;
24
+ ' section1' : string ;
25
+ ' section2' : string ;
26
+ ' section3' : string ;
27
+ ' section4' : string ;
28
+ ' section5' : string ;
29
+ ' section6' : string ;
30
+ ' section7' : string ;
31
+ ' section8' : string ;
32
+ ' section9' : string ;
33
+ ' classWithMixin' : string ;
34
+ ' appLogo' : string ;
35
+ ' appLogo' : string ;
36
+ [key : string ]: string ;
37
+ } ;
38
+ export default classes;
39
+ export let localClassInsideGlobal: string;
40
+ export let localClass: string;
41
+ export let localClass2: string;
42
+ export let localClassInsideLocal: string;
43
+ export let reservedWords: string;
44
+ export let nestedClassParent: string;
45
+ export let childClass: string;
46
+ export let nestedClassParentExtended: string;
47
+ export let section1: string;
48
+ export let section2: string;
49
+ export let section3: string;
50
+ export let section4: string;
51
+ export let section5: string;
52
+ export let section6: string;
53
+ export let section7: string;
54
+ export let section8: string;
55
+ export let section9: string;
56
+ export let classWithMixin: string;
57
+ export let appLogo: string;
58
+ export let appLogo: string;
59
+ "
60
+ ` ;
61
+
12
62
exports [` utils / cssSnapshots with baseUrl and paths in compilerOptions sass should find the files 1` ] = `
13
63
{
14
64
" big-font" : " tsconfig-paths-module__big-font---3FOK9" ,
@@ -19,7 +69,7 @@ exports[`utils / cssSnapshots with baseUrl and paths in compilerOptions sass sho
19
69
20
70
exports [` utils / cssSnapshots with file 'empty.module.less' createExports should create an exports file 1` ] = `
21
71
"declare let classes: {
22
-
72
+
23
73
} ;
24
74
export default classes;
25
75
"
@@ -30,7 +80,7 @@ exports[`utils / cssSnapshots with file 'empty.module.less' getCssExports should
30
80
exports [` utils / cssSnapshots with file 'empty.module.less' with a custom template should transform the generated dts 1` ] = `
31
81
"/* eslint-disable */
32
82
declare let classes: {
33
-
83
+
34
84
} ;
35
85
export default classes;
36
86
@@ -40,7 +90,7 @@ export type AllClassNames = '';"
40
90
41
91
exports [` utils / cssSnapshots with file 'empty.module.sass' createExports should create an exports file 1` ] = `
42
92
"declare let classes: {
43
-
93
+
44
94
} ;
45
95
export default classes;
46
96
"
@@ -51,7 +101,7 @@ exports[`utils / cssSnapshots with file 'empty.module.sass' getCssExports should
51
101
exports [` utils / cssSnapshots with file 'empty.module.sass' with a custom template should transform the generated dts 1` ] = `
52
102
"/* eslint-disable */
53
103
declare let classes: {
54
-
104
+
55
105
} ;
56
106
export default classes;
57
107
@@ -61,7 +111,7 @@ export type AllClassNames = '';"
61
111
62
112
exports [` utils / cssSnapshots with file 'empty.module.scss' createExports should create an exports file 1` ] = `
63
113
"declare let classes: {
64
-
114
+
65
115
} ;
66
116
export default classes;
67
117
"
@@ -72,7 +122,7 @@ exports[`utils / cssSnapshots with file 'empty.module.scss' getCssExports should
72
122
exports [` utils / cssSnapshots with file 'empty.module.scss' with a custom template should transform the generated dts 1` ] = `
73
123
"/* eslint-disable */
74
124
declare let classes: {
75
-
125
+
76
126
} ;
77
127
export default classes;
78
128
@@ -82,7 +132,7 @@ export type AllClassNames = '';"
82
132
83
133
exports [` utils / cssSnapshots with file 'empty.module.styl' createExports should create an exports file 1` ] = `
84
134
"declare let classes: {
85
-
135
+
86
136
} ;
87
137
export default classes;
88
138
"
@@ -93,7 +143,7 @@ exports[`utils / cssSnapshots with file 'empty.module.styl' getCssExports should
93
143
exports [` utils / cssSnapshots with file 'empty.module.styl' with a custom template should transform the generated dts 1` ] = `
94
144
"/* eslint-disable */
95
145
declare let classes: {
96
-
146
+
97
147
} ;
98
148
export default classes;
99
149
0 commit comments