aboutsummaryrefslogtreecommitdiffstats
path: root/client/src/main/resources/com/vaadin/DefaultWidgetSet.gwt.xml
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/main/resources/com/vaadin/DefaultWidgetSet.gwt.xml')
-rwxr-xr-xclient/src/main/resources/com/vaadin/DefaultWidgetSet.gwt.xml42
1 files changed, 42 insertions, 0 deletions
diff --git a/client/src/main/resources/com/vaadin/DefaultWidgetSet.gwt.xml b/client/src/main/resources/com/vaadin/DefaultWidgetSet.gwt.xml
new file mode 100755
index 0000000000..ad345e44e2
--- /dev/null
+++ b/client/src/main/resources/com/vaadin/DefaultWidgetSet.gwt.xml
@@ -0,0 +1,42 @@
+<module>
+ <!-- This GWT module defines the Vaadin DefaultWidgetSet. This is the module
+ you want to extend when creating an extended widget set, or when creating
+ a specialized widget set with a subset of the components. -->
+
+ <!-- Hint for WidgetSetBuilder not to automatically update the file -->
+ <!-- WS Compiler: manually edited -->
+
+ <inherits name="com.vaadin.Vaadin" />
+
+ <!-- Elemental is used for handling Json only -->
+ <inherits name="elemental.Json" />
+
+ <inherits name="com.google.gwt.precompress.Precompress" />
+
+ <entry-point class="com.vaadin.client.ApplicationConfiguration" />
+
+ <generate-with
+ class="com.vaadin.server.widgetsetutils.AcceptCriteriaFactoryGenerator">
+ <when-type-is class="com.vaadin.client.ui.dd.VAcceptCriterionFactory" />
+ </generate-with>
+
+ <generate-with
+ class="com.vaadin.server.widgetsetutils.ConnectorBundleLoaderFactory">
+ <when-type-assignable
+ class="com.vaadin.client.metadata.ConnectorBundleLoader" />
+ </generate-with>
+
+ <replace-with class="com.vaadin.client.communication.DefaultReconnectDialog">
+ <when-type-is class="com.vaadin.client.communication.ReconnectDialog" />
+ </replace-with>
+
+ <replace-with class="com.vaadin.client.ui.VOverlay">
+ <when-type-is class="com.vaadin.client.widgets.Overlay" />
+ </replace-with>
+
+ <!-- Since 7.2. Compile all permutations (browser support) into one Javascript
+ file. Speeds up compilation and does not make the Javascript significantly
+ larger. -->
+ <collapse-all-properties />
+
+</module>