@taiga-ui/addon-doc 3.36.1 → 3.36.2-dev.main-2debc55
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/bundles/taiga-ui-addon-doc-components.umd.js +2 -7
- package/bundles/taiga-ui-addon-doc-components.umd.js.map +1 -1
- package/components/example/example.component.d.ts +1 -1
- package/components/example/{example-options.d.ts → example.options.d.ts} +3 -3
- package/components/index.d.ts +1 -1
- package/esm2015/components/example/example.component.js +2 -2
- package/esm2015/components/example/example.options.js +15 -0
- package/esm2015/components/index.js +2 -2
- package/fesm2015/taiga-ui-addon-doc-components.js +4 -9
- package/fesm2015/taiga-ui-addon-doc-components.js.map +1 -1
- package/package.json +5 -5
- package/esm2015/components/example/example-options.js +0 -20
|
@@ -1290,14 +1290,9 @@
|
|
|
1290
1290
|
/**
|
|
1291
1291
|
* Default parameters for DocExample component
|
|
1292
1292
|
*/
|
|
1293
|
-
var TUI_DOC_EXAMPLE_OPTIONS =
|
|
1294
|
-
factory: function () { return TUI_DOC_EXAMPLE_DEFAULT_OPTIONS; },
|
|
1295
|
-
});
|
|
1293
|
+
var TUI_DOC_EXAMPLE_OPTIONS = i6.tuiCreateOptions(TUI_DOC_EXAMPLE_DEFAULT_OPTIONS);
|
|
1296
1294
|
function tuiDocExampleOptionsProvider(options) {
|
|
1297
|
-
return
|
|
1298
|
-
provide: TUI_DOC_EXAMPLE_OPTIONS,
|
|
1299
|
-
useValue: Object.assign(Object.assign({}, TUI_DOC_EXAMPLE_DEFAULT_OPTIONS), options),
|
|
1300
|
-
};
|
|
1295
|
+
return i6.tuiProvideOptions(TUI_DOC_EXAMPLE_OPTIONS, options, TUI_DOC_EXAMPLE_DEFAULT_OPTIONS);
|
|
1301
1296
|
}
|
|
1302
1297
|
|
|
1303
1298
|
var TuiDocExampleCapitalizePipe = /** @class */ (function () {
|