@instructure/ui-text 11.6.0 → 11.6.1-pr-snapshot-1779894247159

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [11.6.1-pr-snapshot-1779894247159](https://github.com/instructure/instructure-ui/compare/v11.6.0...v11.6.1-pr-snapshot-1779894247159) (2026-05-27)
7
+
8
+ **Note:** Version bump only for package @instructure/ui-text
9
+
10
+
11
+
12
+
13
+
6
14
  # [11.6.0](https://github.com/instructure/instructure-ui/compare/v11.5.0...v11.6.0) (2026-02-18)
7
15
 
8
16
  **Note:** Version bump only for package @instructure/ui-text
@@ -1,9 +1,3 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.allowedProps = void 0;
7
1
  /*
8
2
  * The MIT License (MIT)
9
3
  *
@@ -28,4 +22,16 @@ exports.allowedProps = void 0;
28
22
  * SOFTWARE.
29
23
  */
30
24
 
31
- const allowedProps = exports.allowedProps = ['as', 'children', 'color', 'elementRef', 'fontStyle', 'letterSpacing', 'lineHeight', 'size', 'transform', 'variant', 'weight', 'wrap'];
25
+ module.exports = {
26
+ presets: [
27
+ [
28
+ require('@instructure/ui-babel-preset'),
29
+ {
30
+ coverage: Boolean(process.env.COVERAGE),
31
+ esModules: Boolean(process.env.ES_MODULES),
32
+ removeConsole: process.env.NODE_ENV === 'production',
33
+ transformImports: Boolean(process.env.TRANSFORM_IMPORTS)
34
+ }
35
+ ]
36
+ ]
37
+ }
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@instructure/ui-text",
3
- "version": "11.6.0",
3
+ "version": "11.6.1-pr-snapshot-1779894247159",
4
+ "type": "module",
4
5
  "description": "A component for styling textual content",
5
6
  "author": "Instructure, Inc. Engineering and Product Design",
6
7
  "module": "./es/index.js",
7
- "main": "./lib/index.js",
8
8
  "types": "./types/index.d.ts",
9
9
  "repository": {
10
10
  "type": "git",
@@ -15,18 +15,18 @@
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
17
  "@babel/runtime": "^7.27.6",
18
- "@instructure/console": "11.6.0",
19
- "@instructure/emotion": "11.6.0",
20
- "@instructure/shared-types": "11.6.0",
21
- "@instructure/ui-color-utils": "11.6.0",
22
- "@instructure/ui-react-utils": "11.6.0"
18
+ "@instructure/console": "11.6.1-pr-snapshot-1779894247159",
19
+ "@instructure/shared-types": "11.6.1-pr-snapshot-1779894247159",
20
+ "@instructure/emotion": "11.6.1-pr-snapshot-1779894247159",
21
+ "@instructure/ui-color-utils": "11.6.1-pr-snapshot-1779894247159",
22
+ "@instructure/ui-react-utils": "11.6.1-pr-snapshot-1779894247159"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@testing-library/jest-dom": "^6.6.3",
26
26
  "@testing-library/react": "15.0.7",
27
- "@instructure/ui-axe-check": "11.6.0",
28
- "@instructure/ui-babel-preset": "11.6.0",
29
- "@instructure/ui-themes": "11.6.0"
27
+ "@instructure/ui-axe-check": "11.6.1-pr-snapshot-1779894247159",
28
+ "@instructure/ui-babel-preset": "11.6.1-pr-snapshot-1779894247159",
29
+ "@instructure/ui-themes": "11.6.1-pr-snapshot-1779894247159"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "react": ">=18 <=19"
@@ -39,10 +39,8 @@
39
39
  ".": {
40
40
  "types": "./types/index.d.ts",
41
41
  "import": "./es/index.js",
42
- "require": "./lib/index.js",
43
42
  "default": "./es/index.js"
44
43
  },
45
- "./lib/*": "./lib/*",
46
44
  "./es/*": "./es/*",
47
45
  "./types/*": "./types/*",
48
46
  "./package.json": "./package.json",
@@ -52,7 +50,7 @@
52
50
  "lint": "ui-scripts lint",
53
51
  "lint:fix": "ui-scripts lint --fix",
54
52
  "clean": "ui-scripts clean",
55
- "build": "ui-scripts build --modules es,cjs",
53
+ "build": "ui-scripts build",
56
54
  "build:watch": "pnpm run ts:check -- --watch & ui-scripts build --watch",
57
55
  "build:types": "tsc -p tsconfig.build.json",
58
56
  "ts:check": "tsc -p tsconfig.build.json --noEmit --emitDeclarationOnly false"
package/lib/Text/index.js DELETED
@@ -1,97 +0,0 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
6
- });
7
- exports.default = exports.Text = void 0;
8
- var _react = require("react");
9
- var _passthroughProps = require("@instructure/ui-react-utils/lib/passthroughProps.js");
10
- var _getElementType = require("@instructure/ui-react-utils/lib/getElementType.js");
11
- var _emotion = require("@instructure/emotion");
12
- var _styles = _interopRequireDefault(require("./styles"));
13
- var _theme = _interopRequireDefault(require("./theme"));
14
- var _props = require("./props");
15
- var _jsxRuntime = require("@emotion/react/jsx-runtime");
16
- var _dec, _class, _Text;
17
- /*
18
- * The MIT License (MIT)
19
- *
20
- * Copyright (c) 2015 - present Instructure, Inc.
21
- *
22
- * Permission is hereby granted, free of charge, to any person obtaining a copy
23
- * of this software and associated documentation files (the "Software"), to deal
24
- * in the Software without restriction, including without limitation the rights
25
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
26
- * copies of the Software, and to permit persons to whom the Software is
27
- * furnished to do so, subject to the following conditions:
28
- *
29
- * The above copyright notice and this permission notice shall be included in all
30
- * copies or substantial portions of the Software.
31
- *
32
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
33
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
35
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
36
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
37
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
38
- * SOFTWARE.
39
- */
40
- /**
41
- ---
42
- category: components
43
- ---
44
- **/
45
- let Text = exports.Text = (_dec = (0, _emotion.withStyle)(_styles.default, _theme.default), _dec(_class = (_Text = class Text extends _react.Component {
46
- constructor(...args) {
47
- super(...args);
48
- this.ref = null;
49
- this.handleRef = el => {
50
- this.ref = el;
51
- const elementRef = this.props.elementRef;
52
- if (typeof elementRef === 'function') {
53
- elementRef(el);
54
- }
55
- };
56
- }
57
- checkProps() {
58
- const _this$props = this.props,
59
- variant = _this$props.variant,
60
- lineHeight = _this$props.lineHeight,
61
- weight = _this$props.weight,
62
- fontStyle = _this$props.fontStyle;
63
- if (variant) {
64
- if (lineHeight) {}
65
- if (weight) {}
66
- if (fontStyle) {}
67
- }
68
- }
69
- componentDidMount() {
70
- var _this$props$makeStyle, _this$props2;
71
- (_this$props$makeStyle = (_this$props2 = this.props).makeStyles) === null || _this$props$makeStyle === void 0 ? void 0 : _this$props$makeStyle.call(_this$props2);
72
- this.checkProps();
73
- }
74
- componentDidUpdate() {
75
- var _this$props$makeStyle2, _this$props3;
76
- (_this$props$makeStyle2 = (_this$props3 = this.props).makeStyles) === null || _this$props$makeStyle2 === void 0 ? void 0 : _this$props$makeStyle2.call(_this$props3);
77
- this.checkProps();
78
- }
79
- render() {
80
- var _this$props$styles;
81
- const children = this.props.children;
82
- const ElementType = (0, _getElementType.getElementType)(Text, this.props);
83
- return (0, _jsxRuntime.jsx)(ElementType, {
84
- ...(0, _passthroughProps.passthroughProps)(this.props),
85
- css: (_this$props$styles = this.props.styles) === null || _this$props$styles === void 0 ? void 0 : _this$props$styles.text,
86
- ref: this.handleRef,
87
- children: children
88
- });
89
- }
90
- }, _Text.displayName = "Text", _Text.componentId = 'Text', _Text.allowedProps = _props.allowedProps, _Text.defaultProps = {
91
- as: 'span',
92
- wrap: 'normal',
93
- size: 'medium',
94
- letterSpacing: 'normal',
95
- children: null
96
- }, _Text)) || _class);
97
- var _default = exports.default = Text;
@@ -1,272 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- /*
8
- * The MIT License (MIT)
9
- *
10
- * Copyright (c) 2015 - present Instructure, Inc.
11
- *
12
- * Permission is hereby granted, free of charge, to any person obtaining a copy
13
- * of this software and associated documentation files (the "Software"), to deal
14
- * in the Software without restriction, including without limitation the rights
15
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
- * copies of the Software, and to permit persons to whom the Software is
17
- * furnished to do so, subject to the following conditions:
18
- *
19
- * The above copyright notice and this permission notice shall be included in all
20
- * copies or substantial portions of the Software.
21
- *
22
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
- * SOFTWARE.
29
- */
30
-
31
- /**
32
- * ---
33
- * private: true
34
- * ---
35
- * Generates the style object from the theme and provided additional information
36
- * @param {Object} componentTheme The theme variable object.
37
- * @param {Object} props the props of the component, the style is applied to
38
- * @param {Object} state the state of the component, the style is applied to
39
- * @return {Object} The final style object, which will be used in the component
40
- */
41
- const generateStyle = (componentTheme, props) => {
42
- const size = props.size,
43
- wrap = props.wrap,
44
- weight = props.weight,
45
- fontStyle = props.fontStyle,
46
- transform = props.transform,
47
- lineHeight = props.lineHeight,
48
- letterSpacing = props.letterSpacing,
49
- color = props.color,
50
- variant = props.variant;
51
- const variants = {
52
- descriptionPage: {
53
- fontStyle: 'normal',
54
- fontWeight: componentTheme.weightRegular,
55
- fontSize: componentTheme.descriptionPage,
56
- lineHeight: componentTheme.lineHeight150
57
- },
58
- descriptionSection: {
59
- fontStyle: 'normal',
60
- fontWeight: componentTheme.weightRegular,
61
- fontSize: componentTheme.descriptionSection,
62
- lineHeight: componentTheme.lineHeight150
63
- },
64
- content: {
65
- fontStyle: 'normal',
66
- fontWeight: componentTheme.weightRegular,
67
- fontSize: componentTheme.content,
68
- lineHeight: componentTheme.lineHeight150
69
- },
70
- contentImportant: {
71
- fontStyle: 'normal',
72
- fontWeight: componentTheme.weightImportant,
73
- fontSize: componentTheme.content,
74
- lineHeight: componentTheme.lineHeight150
75
- },
76
- contentQuote: {
77
- fontStyle: 'italic',
78
- fontWeight: componentTheme.weightRegular,
79
- fontSize: componentTheme.content,
80
- lineHeight: componentTheme.lineHeight150
81
- },
82
- contentSmall: {
83
- fontStyle: 'normal',
84
- fontWeight: componentTheme.weightRegular,
85
- fontSize: componentTheme.contentSmall,
86
- lineHeight: componentTheme.lineHeight150
87
- },
88
- legend: {
89
- fontStyle: 'normal',
90
- fontWeight: componentTheme.weightRegular,
91
- fontSize: componentTheme.legend,
92
- lineHeight: componentTheme.lineHeight150
93
- }
94
- };
95
- const colorVariants = {
96
- primary: {
97
- color: componentTheme.primaryColor
98
- },
99
- secondary: {
100
- color: componentTheme.secondaryColor
101
- },
102
- 'primary-inverse': {
103
- color: componentTheme.primaryInverseColor
104
- },
105
- 'secondary-inverse': {
106
- color: componentTheme.secondaryInverseColor
107
- },
108
- success: {
109
- color: componentTheme.successColor
110
- },
111
- brand: {
112
- color: componentTheme.brandColor
113
- },
114
- danger: {
115
- color: componentTheme.dangerColor
116
- },
117
- alert: {
118
- color: componentTheme.alertColor
119
- },
120
- warning: {
121
- color: componentTheme.warningColor
122
- },
123
- 'ai-highlight': {
124
- color: componentTheme.aiColor,
125
- background: componentTheme.aiBackgroundColor
126
- }
127
- };
128
- const wrapStyle = {
129
- overflowWrap: 'break-word',
130
- wordBreak: 'break-word',
131
- hyphens: 'auto'
132
- };
133
- const weightStyle = {
134
- normal: {
135
- fontWeight: componentTheme.fontWeightNormal
136
- },
137
- light: {
138
- fontWeight: componentTheme.fontWeightLight
139
- },
140
- bold: {
141
- fontWeight: componentTheme.fontWeightBold
142
- },
143
- weightRegular: {
144
- fontWeight: componentTheme.weightRegular
145
- },
146
- weightImportant: {
147
- fontWeight: componentTheme.weightImportant
148
- }
149
- };
150
- const fontSizeVariants = {
151
- 'x-small': componentTheme.fontSizeXSmall,
152
- small: componentTheme.fontSizeSmall,
153
- medium: componentTheme.fontSizeMedium,
154
- large: componentTheme.fontSizeLarge,
155
- 'x-large': componentTheme.fontSizeXLarge,
156
- 'xx-large': componentTheme.fontSizeXXLarge,
157
- descriptionPage: componentTheme.descriptionPage,
158
- descriptionSection: componentTheme.descriptionSection,
159
- content: componentTheme.content,
160
- contentSmall: componentTheme.contentSmall,
161
- legend: componentTheme.legend
162
- };
163
- const lineHeightVariants = {
164
- default: {
165
- lineHeight: componentTheme.lineHeight
166
- },
167
- fit: {
168
- lineHeight: componentTheme.lineHeightFit
169
- },
170
- condensed: {
171
- lineHeight: componentTheme.lineHeightCondensed
172
- },
173
- double: {
174
- lineHeight: componentTheme.lineHeightDouble
175
- },
176
- lineHeight100: {
177
- lineHeight: componentTheme.lineHeight100
178
- },
179
- lineHeight125: {
180
- lineHeight: componentTheme.lineHeight125
181
- },
182
- lineHeight150: {
183
- lineHeight: componentTheme.lineHeight150
184
- }
185
- };
186
- const letterSpacingVariants = {
187
- normal: componentTheme.letterSpacingNormal,
188
- condensed: componentTheme.letterSpacingCondensed,
189
- expanded: componentTheme.letterSpacingExpanded
190
- };
191
- const calcTextStyles = () => {
192
- if (variant) {
193
- return variants[variant];
194
- }
195
- return {
196
- ...(weight ? weightStyle[weight] : {}),
197
- ...(fontStyle ? {
198
- fontStyle: fontStyle
199
- } : {}),
200
- fontSize: fontSizeVariants[size],
201
- ...(lineHeight ? lineHeightVariants[lineHeight] : {})
202
- };
203
- };
204
- const baseStyles = {
205
- '&:focus': {
206
- outline: 'none'
207
- },
208
- ...(color ? colorVariants[color] : {}),
209
- ...(wrap === 'break-word' ? wrapStyle : {}),
210
- letterSpacing: letterSpacingVariants[letterSpacing],
211
- ...(transform ? {
212
- textTransform: transform
213
- } : {}),
214
- ...calcTextStyles()
215
- };
216
- const inputStyles = {
217
- ...baseStyles,
218
- outline: 0,
219
- appearance: 'none',
220
- boxSizing: 'border-box',
221
- background: 'none',
222
- border: 'none',
223
- borderRadius: 0,
224
- padding: 0,
225
- margin: 0,
226
- color: 'inherit',
227
- height: 'auto',
228
- width: '100%',
229
- lineHeight: 'inherit',
230
- textAlign: 'start',
231
- boxShadow: 'none',
232
- display: 'block'
233
- };
234
- return {
235
- text: {
236
- label: 'text',
237
- fontFamily: componentTheme.fontFamily,
238
- ...baseStyles,
239
- // NOTE: needs separate groups for `:is()` and `:-webkit-any()` because of css selector group validation (see https://www.w3.org/TR/selectors-3/#grouping)
240
- '&:is(input)[type]': inputStyles,
241
- '&:-webkit-any(input)[type]': inputStyles,
242
- 'sub, sup': {
243
- fontSize: '75%',
244
- lineHeight: 0,
245
- position: 'relative',
246
- verticalAlign: 'baseline'
247
- },
248
- sup: {
249
- top: '-0.4em'
250
- },
251
- sub: {
252
- bottom: '-0.4em'
253
- },
254
- 'pre, code': {
255
- all: 'initial',
256
- fontFamily: componentTheme.fontFamilyMonospace
257
- },
258
- 'i, em': {
259
- fontStyle: 'italic'
260
- },
261
- 'b, strong': {
262
- fontWeight: componentTheme.fontWeightBold
263
- },
264
- p: {
265
- display: 'block',
266
- padding: 0,
267
- margin: componentTheme.paragraphMargin
268
- }
269
- }
270
- };
271
- };
272
- var _default = exports.default = generateStyle;
package/lib/Text/theme.js DELETED
@@ -1,68 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.default = void 0;
7
- /*
8
- * The MIT License (MIT)
9
- *
10
- * Copyright (c) 2015 - present Instructure, Inc.
11
- *
12
- * Permission is hereby granted, free of charge, to any person obtaining a copy
13
- * of this software and associated documentation files (the "Software"), to deal
14
- * in the Software without restriction, including without limitation the rights
15
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
- * copies of the Software, and to permit persons to whom the Software is
17
- * furnished to do so, subject to the following conditions:
18
- *
19
- * The above copyright notice and this permission notice shall be included in all
20
- * copies or substantial portions of the Software.
21
- *
22
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
- * SOFTWARE.
29
- */
30
-
31
- /**
32
- * Generates the theme object for the component from the theme and provided additional information
33
- * @param {Object} theme The actual theme object.
34
- * @return {Object} The final theme object with the overrides and component variables
35
- */
36
- const generateComponentTheme = theme => {
37
- var _colors$contrasts, _colors$contrasts2, _colors$contrasts3, _colors$contrasts4, _colors$contrasts5, _colors$contrasts6, _colors$contrasts7, _colors$contrasts8, _colors$contrasts9, _colors$contrasts0, _colors$contrasts1;
38
- const colors = theme.colors,
39
- typography = theme.typography,
40
- spacing = theme.spacing,
41
- themeName = theme.key;
42
- const themeSpecificStyle = {
43
- canvas: {
44
- primaryColor: theme['ic-brand-font-color-dark'],
45
- brandColor: theme['ic-brand-primary']
46
- }
47
- };
48
- const componentVariables = {
49
- ...typography,
50
- primaryInverseColor: colors === null || colors === void 0 ? void 0 : (_colors$contrasts = colors.contrasts) === null || _colors$contrasts === void 0 ? void 0 : _colors$contrasts.white1010,
51
- primaryColor: colors === null || colors === void 0 ? void 0 : (_colors$contrasts2 = colors.contrasts) === null || _colors$contrasts2 === void 0 ? void 0 : _colors$contrasts2.grey125125,
52
- secondaryColor: colors === null || colors === void 0 ? void 0 : (_colors$contrasts3 = colors.contrasts) === null || _colors$contrasts3 === void 0 ? void 0 : _colors$contrasts3.grey5782,
53
- secondaryInverseColor: colors === null || colors === void 0 ? void 0 : (_colors$contrasts4 = colors.contrasts) === null || _colors$contrasts4 === void 0 ? void 0 : _colors$contrasts4.grey1111,
54
- brandColor: colors === null || colors === void 0 ? void 0 : (_colors$contrasts5 = colors.contrasts) === null || _colors$contrasts5 === void 0 ? void 0 : _colors$contrasts5.blue5782,
55
- dangerColor: colors === null || colors === void 0 ? void 0 : (_colors$contrasts6 = colors.contrasts) === null || _colors$contrasts6 === void 0 ? void 0 : _colors$contrasts6.red5782,
56
- successColor: colors === null || colors === void 0 ? void 0 : (_colors$contrasts7 = colors.contrasts) === null || _colors$contrasts7 === void 0 ? void 0 : _colors$contrasts7.green5782,
57
- alertColor: colors === null || colors === void 0 ? void 0 : (_colors$contrasts8 = colors.contrasts) === null || _colors$contrasts8 === void 0 ? void 0 : _colors$contrasts8.blue5782,
58
- warningColor: colors === null || colors === void 0 ? void 0 : (_colors$contrasts9 = colors.contrasts) === null || _colors$contrasts9 === void 0 ? void 0 : _colors$contrasts9.orange5782,
59
- aiColor: colors === null || colors === void 0 ? void 0 : (_colors$contrasts0 = colors.contrasts) === null || _colors$contrasts0 === void 0 ? void 0 : _colors$contrasts0.violet5790,
60
- aiBackgroundColor: colors === null || colors === void 0 ? void 0 : (_colors$contrasts1 = colors.contrasts) === null || _colors$contrasts1 === void 0 ? void 0 : _colors$contrasts1.violet1212,
61
- paragraphMargin: `${spacing.medium} 0`
62
- };
63
- return {
64
- ...componentVariables,
65
- ...themeSpecificStyle[themeName]
66
- };
67
- };
68
- var _default = exports.default = generateComponentTheme;
package/lib/index.js DELETED
@@ -1,12 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- Object.defineProperty(exports, "Text", {
7
- enumerable: true,
8
- get: function () {
9
- return _Text.Text;
10
- }
11
- });
12
- var _Text = require("./Text");
package/lib/package.json DELETED
@@ -1 +0,0 @@
1
- {"type":"commonjs"}