mtrl-addons 0.3.4 → 0.3.5
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/dist/components/form/constants.d.ts +2 -0
- package/dist/components/form/features/layout.d.ts +1 -0
- package/dist/index.js +46 -4
- package/dist/index.mjs +46 -4
- package/dist/styles.css +38 -0
- package/dist/styles.css.map +1 -1
- package/package.json +1 -1
- package/src/styles/components/_form.scss +77 -0
- package/src/styles/index.scss +1 -0
|
@@ -43,6 +43,8 @@ export declare const FORM_CLASSES: {
|
|
|
43
43
|
readonly SUBMITTING: "submitting";
|
|
44
44
|
/** Applied when form is disabled */
|
|
45
45
|
readonly DISABLED: "disabled";
|
|
46
|
+
/** Applied when form body is scrolled away from top */
|
|
47
|
+
readonly SCROLLED: "mtrl-form--scrolled";
|
|
46
48
|
};
|
|
47
49
|
/**
|
|
48
50
|
* Default form configuration
|