@jjlmoya/utils-textiles 1.3.0 → 1.4.0
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/package.json +1 -1
- package/src/index.ts +12 -12
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
export { textilesCategory } from './category';
|
|
2
2
|
export { default as textilesCategorySEO } from './category/seo.astro';
|
|
3
3
|
|
|
4
|
-
export { FabricTruthComponent, FabricTruthSEO, FabricTruthBibliography } from './tool/fabricTruth';
|
|
5
|
-
export { LaundryGuideComponent, LaundryGuideSEO, LaundryGuideBibliography } from './tool/laundryGuide';
|
|
6
|
-
export { StainChemistryComponent, StainChemistrySEO, StainChemistryBibliography } from './tool/stainChemistry';
|
|
7
|
-
export { BurnTestComponent, BurnTestSEO, BurnTestBibliography } from './tool/burnTest';
|
|
8
|
-
export { FiberPrepComponent, FiberPrepSEO, FiberPrepBibliography } from './tool/fiberPrep';
|
|
9
|
-
export { ShoeSizeConverterComponent, ShoeSizeConverterSEO, ShoeSizeConverterBibliography } from './tool/shoeSizeConverter';
|
|
10
|
-
export { ClothingSizeConverterComponent, ClothingSizeConverterSEO, ClothingSizeConverterBibliography } from './tool/clothingSizeConverter';
|
|
11
|
-
export { KnittingGaugeComponent, KnittingGaugeSEO, KnittingGaugeBibliography } from './tool/knittingGauge';
|
|
12
|
-
export { FabricProjectCalculatorComponent, FabricProjectCalculatorSEO, FabricProjectCalculatorBibliography } from './tool/fabricProjectCalculator';
|
|
13
|
-
export { SewingPatternScalerComponent, SewingPatternScalerSEO, SewingPatternScalerBibliography } from './tool/sewingPatternScaler';
|
|
14
|
-
export { NeedleConverterComponent, NeedleConverterSEO, NeedleConverterBibliography } from './tool/needleConverter';
|
|
15
|
-
export { YarnCalculatorComponent, YarnCalculatorSEO, YarnCalculatorBibliography } from './tool/yarnCalculator';
|
|
4
|
+
export { FabricTruthComponent, FabricTruthSEO, FabricTruthBibliography, FABRIC_TRUTH_TOOL } from './tool/fabricTruth';
|
|
5
|
+
export { LaundryGuideComponent, LaundryGuideSEO, LaundryGuideBibliography, LAUNDRY_GUIDE_TOOL } from './tool/laundryGuide';
|
|
6
|
+
export { StainChemistryComponent, StainChemistrySEO, StainChemistryBibliography, STAIN_CHEMISTRY_TOOL } from './tool/stainChemistry';
|
|
7
|
+
export { BurnTestComponent, BurnTestSEO, BurnTestBibliography, BURN_TEST_TOOL } from './tool/burnTest';
|
|
8
|
+
export { FiberPrepComponent, FiberPrepSEO, FiberPrepBibliography, FIBER_PREP_TOOL } from './tool/fiberPrep';
|
|
9
|
+
export { ShoeSizeConverterComponent, ShoeSizeConverterSEO, ShoeSizeConverterBibliography, SHOE_SIZE_CONVERTER_TOOL } from './tool/shoeSizeConverter';
|
|
10
|
+
export { ClothingSizeConverterComponent, ClothingSizeConverterSEO, ClothingSizeConverterBibliography, CLOTHING_SIZE_CONVERTER_TOOL } from './tool/clothingSizeConverter';
|
|
11
|
+
export { KnittingGaugeComponent, KnittingGaugeSEO, KnittingGaugeBibliography, KNITTING_GAUGE_TOOL } from './tool/knittingGauge';
|
|
12
|
+
export { FabricProjectCalculatorComponent, FabricProjectCalculatorSEO, FabricProjectCalculatorBibliography, FABRIC_PROJECT_CALCULATOR_TOOL } from './tool/fabricProjectCalculator';
|
|
13
|
+
export { SewingPatternScalerComponent, SewingPatternScalerSEO, SewingPatternScalerBibliography, SEWING_PATTERN_SCALER_TOOL } from './tool/sewingPatternScaler';
|
|
14
|
+
export { NeedleConverterComponent, NeedleConverterSEO, NeedleConverterBibliography, NEEDLE_CONVERTER_TOOL } from './tool/needleConverter';
|
|
15
|
+
export { YarnCalculatorComponent, YarnCalculatorSEO, YarnCalculatorBibliography, YARN_CALCULATOR_TOOL } from './tool/yarnCalculator';
|
|
16
16
|
|
|
17
17
|
export type {
|
|
18
18
|
KnownLocale,
|