@omnia/fx 8.0.94-vnext → 8.0.96-vnext
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/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +80 -32
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +36 -47
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyMenu.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/journey/v2/models/BladeInstance.d.ts +2 -7
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +14 -11
- package/internal-do-not-import-from-here/ux/languagepicker/LanguagePicker.d.ts +18 -1
- package/internal-do-not-import-from-here/ux/oxide/badge/Badge.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +16 -5
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/hostprovider/HostProvider.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.css.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +22 -0
- package/internal-do-not-import-from-here/ux/oxide/panel/docs/ShowHide.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/properties/block/components/PropertySettings.css.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/properties/block/components/PropertySettings.d.ts +426 -0
- package/internal-do-not-import-from-here/ux/properties/block/shared/PropertyBlockModels.d.ts +2 -5
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyValueRenderer.d.ts +45 -1
- package/internal-do-not-import-from-here/ux/typographypicker/TypographyPicker.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/velcron/components/propertieseditor/VelcronPropertiesEditor.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +10 -1
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronEditorBuilder.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronPropertyMappingEditorBuilder.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronPropertyMappingStateBuilder.d.ts +11 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronStateBuilder.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/ImageEditor.d.ts +450 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/TypographyEditor.d.ts +455 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +511 -504
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.96-vnext",
|
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
],
|
|
21
21
|
"author": "Precio Fishbone",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@omnia/fx-models": "8.0.
|
|
23
|
+
"@omnia/fx-models": "8.0.96-vnext",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.10.7",
|